Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Test wxListBox gestion del evento en wxWidgets Antonio Villanueva
- //g++ -Wall -static-libstdc++ -std=c++11 -Wunused-but-set-variable `wx-config --cxxflags` -o hola *.cpp `wx-config --libs`
- #include <iostream>
- #include "wx/wx.h"
- #include <wx/stattext.h>
- #include <wx/sizer.h> //Layouts
- #include <wx/listbox.h>//wxListBox
- //using namespace std;
- //Declaraciones
- //----------------------------------------------------------------------
- //Cada aplicacion wxWidget define una clase derivada de wxApp
- class MiApp:public wxApp
- {
- public:
- //Llamado al inicio startup, es como el main en c
- virtual bool OnInit();//main wxWidgets , mas abajo se implementa
- };
- //Declaracion de la clase frame principal
- //----------------------------------------------------------------------
- class MiFrame:public wxFrame
- {
- public:
- //Constructor de la clase
- MiFrame(const wxString& titulo);
- // "event handlers" , gestion de eventos
- void OnListBox(wxCommandEvent& event);//Manipula Simple click
- void OnListBoxDC(wxCommandEvent& event);//Manipula Doble click
- private:
- /*Macro para informar a wxWidgets de la gestion de eventos
- *Declara la tabla de eventos en esta clase ,mas abajo
- * la implemento entre BEGIN_ y END_EVENT_TABLE
- */
- //Declaracion dinamica eventos no utilizo el macro
- //Trabajaremos desde OnInit para eventos dinamicos
- DECLARE_EVENT_TABLE()
- };
- //----------------------------------------------------------------------
- //----------------------------------------------------------------------
- /*Implementacion , MiApp
- *Cuando se crea el objeto MiApp se asigna a la variable global wxTheApp
- * pero mejor que hacer un CAST emplear el MACRO DECLARE_APP despues de
- * la declaracion de la clase , wxGetApp retorna una ref. al objeto MiApp
- */
- DECLARE_APP(MiApp)
- //Macro que Proporciona a wxWidgets los medios de crear el objeto MiApp
- IMPLEMENT_APP(MiApp)
- //----------------------------------------------------------------------
- //----------------------------------------------------------------------
- //----------------------------------------------------------------------
- //Implementacion OnInit,Inicializa la aplicacion
- bool MiApp::OnInit()
- {
- //Crea la ventana principal , una instancia de nuestra clase MiFrame
- //El titulo lo pasamos al constructor envuelto en el macro wxT
- //macro de conversion de strings y char al tipo apropiado
- MiFrame *frame=new MiFrame(wxT("Titulo Test wxWidgets"));
- //Mostrar la ventana
- frame->Show(true);
- //Arranca el bucle de eventos
- return true ;//Si false limpia sus estructuras y sale
- }
- //----------------------------------------------------------------------
- const wxWindowIDRef ID_LISTBOX = wxWindow::NewControlId();
- //Tabla de eventos para MiFrame DECLARE_EVENT_TABLE() en MiFrame
- BEGIN_EVENT_TABLE ( MiFrame,wxFrame)
- //EVT_LISTBOX(ID_LISTBOX,MiFrame::OnListBox)//Simple Click
- EVT_LISTBOX_DCLICK(ID_LISTBOX,MiFrame::OnListBoxDC)//Double Click
- END_EVENT_TABLE()
- void MiFrame::OnListBox(wxCommandEvent& event)//simple click
- {
- wxString check;
- //check= wxString::Format(wxT("%i"),event.GetSelection ());
- check=event.GetString();
- wxMessageBox( wxT("Sel. simple click = ")+ check );
- }
- void MiFrame::OnListBoxDC(wxCommandEvent& event)//doble click
- {
- wxString check;
- check=event.GetString();
- wxMessageBox( wxT("Sel. Doble click = ")+ check );
- }
- //Constructor de MiFrame implementa un icono una barra status y menu
- //wxID_ANY le dice a Widgets de generar un identificador por su cuenta
- MiFrame::MiFrame(const wxString& titulo):wxFrame(NULL,wxID_ANY,wxT("Barra Sup"))
- {
- //Crea wxPanel
- wxPanel* ventana=new wxPanel(this,wxID_ANY);
- //Crea Botones en el wxPanel
- wxButton* boton1=new wxButton(ventana,wxID_OK,wxT("OK 1"));
- wxButton* boton2=new wxButton(ventana,wxID_OK,wxT("OK 2"));
- wxButton* boton3=new wxButton(ventana,wxID_OK,wxT("OK 3"));
- //Crea Sizers wxBoxSizer VERTICAL HORIZONTAL
- wxBoxSizer* vbox = new wxBoxSizer(wxVERTICAL);
- wxBoxSizer* hbox1 = new wxBoxSizer(wxHORIZONTAL);
- //Anade la wxBoxSizer hbox1 & los botones
- vbox->Add(hbox1);//Anade wxBoxSizer HORIZONTAL1 al VERTICAL
- hbox1->Add(boton1);//Anade al wxBoxSizer HORIZONTAL1 botones..
- hbox1->Add(boton2);
- hbox1->Add(boton3);
- //wxBoxSizer (vbox) empleado en el wxPanel (ventana) ,con (hbox1)
- ventana->SetSizer(vbox);
- //Creamos una lista de strings para anadir al wxListBox
- wxArrayString cadenas;
- cadenas.Add(wxT("UFO"));
- cadenas.Add(wxT("O.V.N.I"));
- cadenas.Add(wxT("Platillo volante"));
- cadenas.Add(wxT("Gris"));
- cadenas.Add(wxT("Hombre de negro"));
- //wxListBox
- wxListBox* listbox=new wxListBox(ventana,ID_LISTBOX,wxDefaultPosition,
- wxDefaultSize,cadenas,wxLB_SINGLE | wxLB_ALWAYS_SB);
- hbox1->Add(listbox);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement