]> git.saurik.com Git - wxWidgets.git/blame_incremental - samples/checklst/checklst.cpp
Fix for VA 4.0
[wxWidgets.git] / samples / checklst / checklst.cpp
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: checklst.cpp
3// Purpose: wxCheckListBox sample
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 13.11.97
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13 //#pragma implementation
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20 #pragma hdrstop
21#endif
22
23#ifndef WX_PRECOMP
24#include "wx/wx.h"
25#endif
26
27#ifdef __WXMSW__
28 #include "wx/ownerdrw.h"
29#endif
30
31#include "wx/log.h"
32
33#include "wx/sizer.h"
34#include "wx/menuitem.h"
35#include "wx/checklst.h"
36
37// Define a new application type
38class CheckListBoxApp: public wxApp
39{
40public:
41 bool OnInit();
42};
43
44// Define a new frame type
45class CheckListBoxFrame : public wxFrame
46{
47public:
48 // ctor & dtor
49 CheckListBoxFrame(wxFrame *frame, const char *title,
50 int x, int y, int w, int h);
51 ~CheckListBoxFrame();
52
53 // notifications
54 void OnQuit (wxCommandEvent& event);
55 void OnAbout (wxCommandEvent& event);
56 void OnListboxSelect (wxCommandEvent& event);
57 void OnCheckboxToggle (wxCommandEvent& event);
58 void OnListboxDblClick(wxCommandEvent& event);
59 void OnButtonUp (wxCommandEvent& event);
60 void OnButtonDown (wxCommandEvent& event);
61
62private:
63 void OnButtonMove(bool up);
64
65 void AdjustColour(size_t index);
66
67 wxCheckListBox *m_pListBox;
68
69 DECLARE_EVENT_TABLE()
70};
71
72enum
73{
74 Menu_Quit = 1,
75 Control_First = 1000,
76 Control_Listbox,
77 Btn_Up,
78 Btn_Down
79};
80
81BEGIN_EVENT_TABLE(CheckListBoxFrame, wxFrame)
82 EVT_MENU(Menu_Quit, CheckListBoxFrame::OnQuit)
83
84 EVT_LISTBOX(Control_Listbox, CheckListBoxFrame::OnListboxSelect)
85 EVT_CHECKLISTBOX(Control_Listbox, CheckListBoxFrame::OnCheckboxToggle)
86 EVT_LISTBOX_DCLICK(Control_Listbox, CheckListBoxFrame::OnListboxDblClick)
87
88 EVT_BUTTON(Btn_Up, CheckListBoxFrame::OnButtonUp)
89 EVT_BUTTON(Btn_Down, CheckListBoxFrame::OnButtonDown)
90END_EVENT_TABLE()
91
92IMPLEMENT_APP(CheckListBoxApp);
93
94// init our app: create windows
95bool CheckListBoxApp::OnInit(void)
96{
97 CheckListBoxFrame *pFrame = new CheckListBoxFrame
98 (
99 NULL,
100 "wxWindows Checklistbox Sample",
101 50, 50, 480, 320
102 );
103 SetTopWindow(pFrame);
104
105 return TRUE;
106}
107
108// main frame constructor
109CheckListBoxFrame::CheckListBoxFrame(wxFrame *frame,
110 const char *title,
111 int x, int y, int w, int h)
112: wxFrame(frame, -1, title, wxPoint(x, y), wxSize(w, h))
113{
114 // create the status line
115 const int widths[] = { -1, 60 };
116 CreateStatusBar(2);
117 SetStatusWidths(2, widths);
118 wxLogStatus(this, _T("no selection"));
119
120 // Make a menubar
121 wxMenu *file_menu = new wxMenu;
122
123 // construct submenu
124 file_menu->Append(Menu_Quit, "E&xit");
125
126 wxMenuBar *menu_bar = new wxMenuBar;
127 menu_bar->Append(file_menu, "&File");
128 SetMenuBar(menu_bar);
129
130 // make a panel with some controls
131 wxPanel *panel = new wxPanel(this, -1, wxPoint(0, 0),
132 wxSize(400, 200), wxTAB_TRAVERSAL);
133
134 // check list box
135 static const char* aszChoices[] =
136 {
137 "Zeroth",
138 "First", "Second", "Third",
139 "Fourth", "Fifth", "Sixth",
140 "Seventh", "Eighth", "Nineth"
141 };
142
143 wxString *astrChoices = new wxString[WXSIZEOF(aszChoices)];
144 unsigned int ui;
145 for ( ui = 0; ui < WXSIZEOF(aszChoices); ui++ )
146 astrChoices[ui] = aszChoices[ui];
147
148 m_pListBox = new wxCheckListBox
149 (
150 panel, // parent
151 Control_Listbox, // control id
152 wxPoint(10, 10), // listbox poistion
153 wxSize(400, 100), // listbox size
154 WXSIZEOF(aszChoices), // number of strings
155 astrChoices // array of strings
156 );
157
158 //m_pListBox->SetBackgroundColour(*wxGREEN);
159
160 delete [] astrChoices;
161
162 // set grey background for every second entry
163 for ( ui = 0; ui < WXSIZEOF(aszChoices); ui += 2 ) {
164 AdjustColour(ui);
165 }
166
167 m_pListBox->Check(2);
168
169 // create buttons for moving the items around
170 wxButton *button1 = new wxButton(panel, Btn_Up, " &Up ", wxPoint(420, 90));
171 wxButton *button2 = new wxButton(panel, Btn_Down, "&Down", wxPoint(420, 120));
172
173
174 wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
175
176 mainsizer->Add( m_pListBox, 1, wxGROW|wxALL, 10 );
177
178 wxBoxSizer *bottomsizer = new wxBoxSizer( wxHORIZONTAL );
179
180 bottomsizer->Add( button1, 0, wxALL, 10 );
181 bottomsizer->Add( button2, 0, wxALL, 10 );
182
183 mainsizer->Add( bottomsizer, 0, wxCENTER );
184
185 // tell frame to make use of sizer (or constraints, if any)
186 panel->SetAutoLayout( TRUE );
187 panel->SetSizer( mainsizer );
188
189 // don't allow frame to get smaller than what the sizers tell ye
190 mainsizer->SetSizeHints( this );
191
192
193 Show(TRUE);
194}
195
196CheckListBoxFrame::~CheckListBoxFrame()
197{
198}
199
200void CheckListBoxFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
201{
202 Close(TRUE);
203}
204
205void CheckListBoxFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
206{
207 wxMessageBox(wxT("Demo of wxCheckListBox control\n"
208