1998-05-22 19:57:05 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: checklst.cpp
|
|
|
|
// Purpose: wxCheckListBox sample
|
|
|
|
// Author: Vadim Zeitlin
|
1998-12-15 22:59:11 +00:00
|
|
|
// Modified by:
|
1998-05-22 19:57:05 +00:00
|
|
|
// Created: 13.11.97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
|
|
|
// Licence: wxWindows license
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-10-21 08:34:32 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
//#pragma implementation
|
|
|
|
#endif
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif
|
|
|
|
|
1998-12-17 08:40:34 +00:00
|
|
|
#ifdef __WXMSW__
|
1998-05-22 19:57:05 +00:00
|
|
|
#include "wx/ownerdrw.h"
|
1998-12-17 08:40:34 +00:00
|
|
|
#endif
|
1998-05-22 19:57:05 +00:00
|
|
|
#include "wx/menuitem.h"
|
1998-12-17 08:40:34 +00:00
|
|
|
#include "wx/checklst.h"
|
|
|
|
|
|
|
|
#ifdef __WXGTK__
|
|
|
|
#include "mondrian.xpm"
|
|
|
|
#endif
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// Define a new application type
|
|
|
|
class CheckListBoxApp: public wxApp
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool OnInit();
|
|
|
|
};
|
|
|
|
|
|
|
|
// Define a new frame type
|
|
|
|
class CheckListBoxFrame : public wxFrame
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctor & dtor
|
|
|
|
CheckListBoxFrame(wxFrame *frame, char *title, int x, int y, int w, int h);
|
|
|
|
~CheckListBoxFrame();
|
|
|
|
|
|
|
|
// notifications
|
|
|
|
void OnQuit (wxCommandEvent& event);
|
|
|
|
void OnAbout (wxCommandEvent& event);
|
|
|
|
void OnListboxSelect (wxCommandEvent& event);
|
|
|
|
void OnCheckboxToggle (wxCommandEvent& event);
|
|
|
|
void OnListboxDblClick (wxCommandEvent& event);
|
|
|
|
bool OnClose () { return TRUE; }
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxCheckListBox *m_pListBox;
|
|
|
|
};
|
|
|
|
|
1998-12-15 22:59:11 +00:00
|
|
|
enum
|
|
|
|
{
|
1998-05-22 19:57:05 +00:00
|
|
|
Menu_Quit = 1,
|
|
|
|
Control_First = 1000,
|
|
|
|
Control_Listbox, Control_Listbox2,
|
|
|
|
};
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(CheckListBoxFrame, wxFrame)
|
|
|
|
EVT_MENU(Menu_Quit, CheckListBoxFrame::OnQuit)
|
|
|
|
EVT_LISTBOX(Control_Listbox, CheckListBoxFrame::OnListboxSelect)
|
|
|
|
EVT_CHECKLISTBOX(Control_Listbox, CheckListBoxFrame::OnCheckboxToggle)
|
|
|
|
EVT_COMMAND(Control_Listbox, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED,
|
|
|
|
CheckListBoxFrame::OnListboxDblClick)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
IMPLEMENT_APP(CheckListBoxApp);
|
|
|
|
|
|
|
|
// init our app: create windows
|
|
|
|
bool CheckListBoxApp::OnInit(void)
|
|
|
|
{
|
|
|
|
CheckListBoxFrame *pFrame = new CheckListBoxFrame(NULL, "wxWindows Ownerdraw Sample",
|
|
|
|
50, 50, 450, 320);
|
|
|
|
SetTopWindow(pFrame);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// main frame constructor
|
|
|
|
CheckListBoxFrame::CheckListBoxFrame(wxFrame *frame, char *title, int x, int y, int w, int h)
|
|
|
|
: wxFrame(frame, -1, title, wxPoint(x, y), wxSize(w, h))
|
|
|
|
{
|
|
|
|
// set the icon
|
1998-12-17 08:40:34 +00:00
|
|
|
SetIcon(wxICON(mondrian));
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
// Make a menubar
|
|
|
|
wxMenu *file_menu = new wxMenu;
|
|
|
|
|
|
|
|
// construct submenu
|
|
|
|
file_menu->Append(Menu_Quit, "E&xit");
|
|
|
|
|
|
|
|
wxMenuBar *menu_bar = new wxMenuBar;
|
|
|
|
menu_bar->Append(file_menu, "&File");
|
|
|
|
SetMenuBar(menu_bar);
|
|
|
|
|
|
|
|
// make a panel with some controls
|
1998-12-15 22:59:11 +00:00
|
|
|
wxPanel *pPanel = new wxPanel(this, -1, wxPoint(0, 0),
|
1998-05-22 19:57:05 +00:00
|
|
|
wxSize(400, 200), wxTAB_TRAVERSAL);
|
|
|
|
|
|
|
|
// check list box
|
1998-12-15 22:59:11 +00:00
|
|
|
static const char* aszChoices[] = { "Hello", "world", "and",
|
1998-05-22 19:57:05 +00:00
|
|
|
"goodbye", "cruel", "world",
|
|
|
|
"-------", "owner-drawn", "listbox" };
|
|
|
|
|
|
|
|
wxString *astrChoices = new wxString[WXSIZEOF(aszChoices)];
|
1998-10-17 07:31:39 +00:00
|
|
|
unsigned int ui;
|
1998-05-22 19:57:05 +00:00
|
|
|
for ( ui = 0; ui < WXSIZEOF(aszChoices); ui++ )
|
|
|
|
astrChoices[ui] = aszChoices[ui];
|
|
|
|
|
|
|
|
m_pListBox = new wxCheckListBox
|
1998-12-15 22:59:11 +00:00
|
|
|
(
|
|
|
|
pPanel, // parent
|
|
|
|
Control_Listbox, // control id
|
|
|
|
wxPoint(10, 10), // listbox poistion
|
1998-05-22 19:57:05 +00:00
|
|
|
wxSize(400, 200), // listbox size
|
1998-12-15 22:59:11 +00:00
|
|
|
WXSIZEOF(aszChoices), // number of strings
|
1998-05-22 19:57:05 +00:00
|
|
|
astrChoices // array of strings
|
1998-12-15 22:59:11 +00:00
|
|
|
);
|
|
|
|
|
1998-05-22 19:57:05 +00:00
|
|
|
delete [] astrChoices;
|
|
|
|
|
1998-12-17 08:40:34 +00:00
|
|
|
#ifdef __WXMSW__
|
1998-05-22 19:57:05 +00:00
|
|
|
for ( ui = 0; ui < WXSIZEOF(aszChoices); ui += 2 ) {
|
1998-10-17 07:31:39 +00:00
|
|
|
m_pListBox->GetItem(ui)->SetBackgroundColour(wxColor(200, 200, 200));
|
1998-05-22 19:57:05 +00:00
|
|
|
}
|
1998-12-17 08:40:34 +00:00
|
|
|
#endif
|
1998-05-22 19:57:05 +00:00
|
|
|
|
|
|
|
m_pListBox->Check(2);
|
|
|
|
|
|
|
|
// create the status line
|
|
|
|
const int widths[] = { -1, 60 };
|
|
|
|
CreateStatusBar(2);
|
|
|
|
SetStatusWidths(2, widths);
|
|
|
|
SetStatusText("no selection", 0);
|
|
|
|
|
|
|
|
Show(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckListBoxFrame::~CheckListBoxFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckListBoxFrame::OnQuit(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
Close(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckListBoxFrame::OnAbout(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
wxMessageDialog dialog(this, "Demo of wxCheckListBox control\n"
|
|
|
|
"About wxCheckListBox", wxYES_NO | wxCANCEL);
|
|
|
|
dialog.ShowModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckListBoxFrame::OnListboxSelect(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
wxString strSelection;
|
1998-10-17 07:31:39 +00:00
|
|
|
unsigned int nSel = event.GetSelection();
|
1998-05-22 19:57:05 +00:00
|
|
|
strSelection.sprintf("item %d selected (%schecked)", nSel,
|
1998-12-17 08:40:34 +00:00
|
|
|
m_pListBox->IsChecked((int)nSel) ? "" : "not ");
|
1998-05-22 19:57:05 +00:00
|
|
|
SetStatusText(strSelection);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckListBoxFrame::OnListboxDblClick(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
wxString strSelection;
|
|
|
|
strSelection.sprintf("item %d double clicked", m_pListBox->GetSelection());
|
|
|
|
wxMessageDialog dialog(this, strSelection);
|
|
|
|
dialog.ShowModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckListBoxFrame::OnCheckboxToggle(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
wxString strSelection;
|
1998-10-17 07:31:39 +00:00
|
|
|
unsigned int nItem = event.GetInt();
|
1998-12-15 22:59:11 +00:00
|
|
|
|
1998-05-22 19:57:05 +00:00
|
|
|
strSelection.sprintf("item %d was %schecked", nItem,
|
|
|
|
m_pListBox->IsChecked(nItem) ? "" : "un");
|
|
|
|
SetStatusText(strSelection);
|
1998-12-15 22:59:11 +00:00
|
|
|
}
|