Git Product home page Git Product logo

components_choice_wxwidgets's Introduction

components_choice_wxwidgets

Компоненты выбора в wxWidgets на С++ в Code::Blocks

Screenshot

TextCtrl:

Screenshot

/***************************************************************
 * Name:      components_choice_wxwidgetsMain.cpp
 * Purpose:   Code for Application Frame
 * Author:    Talipov S.N. ([email protected])
 * Created:   2020-03-02
 * Copyright: Talipov S.N. (https://github.com/tsnsoft)
 * License:
 **************************************************************/

#include "components_choice_wxwidgetsMain.h"
#include <wx/msgdlg.h>

//(*InternalHeaders(components_choice_wxwidgetsFrame)
#include <wx/artprov.h>
#include <wx/bitmap.h>
#include <wx/icon.h>
#include <wx/image.h>
#include <wx/intl.h>
#include <wx/string.h>
//*)

//helper functions
enum wxbuildinfoformat
{
    short_f, long_f
};

wxString wxbuildinfo(wxbuildinfoformat format)
{
    wxString wxbuild(wxVERSION_STRING);

    if (format == long_f )
    {
#if defined(__WXMSW__)
        wxbuild << _T("-Windows");
#elif defined(__UNIX__)
        wxbuild << _T("-Linux");
#endif

#if wxUSE_UNICODE
        wxbuild << _T("-Unicode build");
#else
        wxbuild << _T("-ANSI build");
#endif // wxUSE_UNICODE
    }

    return wxbuild;
}

//(*IdInit(components_choice_wxwidgetsFrame)
const long components_choice_wxwidgetsFrame::ID_LISTBOX1 = wxNewId();
const long components_choice_wxwidgetsFrame::ID_STATICTEXT1 = wxNewId();
const long components_choice_wxwidgetsFrame::ID_CHOICE1 = wxNewId();
const long components_choice_wxwidgetsFrame::ID_CHECKBOX1 = wxNewId();
const long components_choice_wxwidgetsFrame::ID_RADIOBOX1 = wxNewId();
const long components_choice_wxwidgetsFrame::ID_BUTTON1 = wxNewId();
const long components_choice_wxwidgetsFrame::ID_TEXTCTRL1 = wxNewId();
//*)

BEGIN_EVENT_TABLE(components_choice_wxwidgetsFrame,wxFrame)
    //(*EventTable(components_choice_wxwidgetsFrame)
    //*)
END_EVENT_TABLE()

components_choice_wxwidgetsFrame::components_choice_wxwidgetsFrame(wxWindow* parent,wxWindowID id)
{
    //(*Initialize(components_choice_wxwidgetsFrame)
    Create(parent, id, _("Компоненты выбора"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE, _T("id"));
    SetClientSize(wxSize(384,323));
    {
    	wxIcon FrameIcon;
    	FrameIcon.CopyFromBitmap(wxArtProvider::GetBitmap(wxART_MAKE_ART_ID_FROM_STR(_T("wxART_TICK_MARK")),wxART_FRAME_ICON));
    	SetIcon(FrameIcon);
    }
    ListBox1 = new wxListBox(this, ID_LISTBOX1, wxPoint(40,40), wxSize(136,152), 0, 0, 0, wxDefaultValidator, _T("ID_LISTBOX1"));
    ListBox1->SetSelection( ListBox1->Append(_("C")) );
    ListBox1->Append(_("C++"));
    ListBox1->Append(_("Java"));
    ListBox1->Append(_("C#"));
    ListBox1->Append(_("Python"));
    ListBox1->Append(_("Delphi"));
    StaticText1 = new wxStaticText(this, ID_STATICTEXT1, _("\?\?\?"), wxPoint(48,200), wxSize(120,16), 0, _T("ID_STATICTEXT1"));
    Choice1 = new wxChoice(this, ID_CHOICE1, wxPoint(40,16), wxSize(136,23), 0, 0, 0, wxDefaultValidator, _T("ID_CHOICE1"));
    Choice1->SetSelection( Choice1->Append(_("C")) );
    Choice1->Append(_("C++"));
    Choice1->Append(_("Java"));
    Choice1->Append(_("C#"));
    Choice1->Append(_("Python"));
    Choice1->Append(_("Delphi"));
    CheckBox1 = new wxCheckBox(this, ID_CHECKBOX1, _("C++"), wxPoint(240,200), wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX1"));
    CheckBox1->SetValue(false);
    wxString __wxRadioBoxChoices_1[6] =
    {
    	_("C"),
    	_("C++"),
    	_("Java"),
    	_("C#"),
    	_("Python"),
    	_("Delphi")
    };
    RadioBox1 = new wxRadioBox(this, ID_RADIOBOX1, _("Выбери"), wxPoint(224,16), wxSize(136,168), 6, __wxRadioBoxChoices_1, 1, 0, wxDefaultValidator, _T("ID_RADIOBOX1"));
    Button1 = new wxButton(this, ID_BUTTON1, _("Выход"), wxPoint(280,280), wxDefaultSize, 0, wxDefaultValidator, _T("ID_BUTTON1"));
    TextCtrl1 = new wxTextCtrl(this, ID_TEXTCTRL1, wxEmptyString, wxPoint(40,224), wxSize(136,80), wxTE_MULTILINE|wxTE_READONLY|wxTE_RICH2|wxTE_NOHIDESEL, wxDefaultValidator, _T("ID_TEXTCTRL1"));
    Center();

    Connect(ID_LISTBOX1,wxEVT_COMMAND_LISTBOX_SELECTED,(wxObjectEventFunction)&components_choice_wxwidgetsFrame::OnListBox1Select);
    Connect(ID_CHOICE1,wxEVT_COMMAND_CHOICE_SELECTED,(wxObjectEventFunction)&components_choice_wxwidgetsFrame::OnChoice1Select);
    Connect(ID_CHECKBOX1,wxEVT_COMMAND_CHECKBOX_CLICKED,(wxObjectEventFunction)&components_choice_wxwidgetsFrame::OnCheckBox1Click);
    Connect(ID_RADIOBOX1,wxEVT_COMMAND_RADIOBOX_SELECTED,(wxObjectEventFunction)&components_choice_wxwidgetsFrame::OnRadioBox1Select);
    Connect(ID_BUTTON1,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&components_choice_wxwidgetsFrame::OnQuit);
    //*)
    wxCommandEvent e;
    OnListBox1Select(e);
}

components_choice_wxwidgetsFrame::~components_choice_wxwidgetsFrame()
{
    //(*Destroy(components_choice_wxwidgetsFrame)
    //*)
}

void components_choice_wxwidgetsFrame::OnQuit(wxCommandEvent& event) {
    Close();
}


void components_choice_wxwidgetsFrame::OnListBox1Select(wxCommandEvent& event) {
    int i = ListBox1 -> GetSelection();
    wxString s = ListBox1 -> GetString(i);
    StaticText1 -> SetLabel(s);
    TextCtrl1 -> AppendText(s+"\n");
}


void components_choice_wxwidgetsFrame::OnChoice1Select(wxCommandEvent& event) {
    int i = Choice1 -> GetSelection();
    wxString s = Choice1 -> GetString(i);
    StaticText1 -> SetLabel(s);
}

void components_choice_wxwidgetsFrame::OnRadioBox1Select(wxCommandEvent& event) {
    int k = RadioBox1 -> GetSelection();
    wxString s = RadioBox1 -> GetString(k);
    StaticText1 -> SetLabel(s);
}

void components_choice_wxwidgetsFrame::OnCheckBox1Click(wxCommandEvent& event) {
    boolean b = CheckBox1 -> GetValue();
    if (b == true) {
        StaticText1 -> SetLabel("Да!");
    } else {
        StaticText1 -> SetLabel("Нет!");
    }
    TextCtrl1 -> Clear();
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.