]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/tsamples.tex
Manual fixes
[wxWidgets.git] / docs / latex / wx / tsamples.tex
1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 %% Name: tsamples.tex
3 %% Purpose: Samples description
4 %% Author: Vadim Zeitlin
5 %% Modified by:
6 %% Created: 02.11.99
7 %% RCS-ID: $Id$
8 %% Copyright: (c) wxWindows team
9 %% Licence: wxWindows licence
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11 % NB: please keep the subsections in alphabetic order!
12
13 \section{wxWindows samples}\label{samples}
14
15 Probably the best way to learn wxWindows is by reading the source of some 50+
16 samples provided with it. Many aspects of wxWindows programming can be learnt
17 from them, but sometimes it is not simple to just choose the right sample to
18 look at. This overview aims at describing what each sample does/demonstrates to
19 make it easier to find the relevant one if a simple grep through all sources
20 didn't help. They also provide some notes about using the samples and what
21 features of wxWindows are they supposed to test.
22
23 There are currently more than 50 different samples as part of wxWindows and
24 this list is not complete. You should start your tour of wxWindows with the
25 \helpref{minimal sample}{sampleminimal} which is the wxWindows version of
26 "Hello, world!". It shows the basic structure of wxWindows program and is the
27 most commented sample of all - looking at its source code is recommended.
28
29 The next most useful sample is probably the \helpref{controls}{samplecontrols}
30 one which shows many of wxWindows standard controls, such as buttons,
31 listboxes, checkboxes, comboboxes etc.
32
33 Other, more complicated controls, have their own samples. In this category you
34 may find the following samples showing the corresponding controls:
35
36 \begin{twocollist}\itemsep=0pt
37 \twocolitem{\helpref{wxCalendarCtrl}{samplecalendar}}{Calendar a.k.a. date picker control}
38 \twocolitem{\helpref{wxListCtrl}{samplelistctrl}}{List view control}
39 \twocolitem{\helpref{wxTreeCtrl}{sampletreectrl}}{Tree view control}
40 \twocolitem{\helpref{wxGrid}{samplegrid}}{Grid control}
41 \end{twocollist}
42
43 Finally, it might be helpful to do a search in the entire sample directory if
44 you can't find the sample you showing the control you are interested in by
45 name. Most of wxWindows classes, occur in at least one of the samples.
46
47 \subsection{Minimal sample}\label{sampleminimal}
48
49 The minimal sample is what most people will know under the term Hello World,
50 i.e. a minimal program that doesn't demonstrate anything apart from what is
51 needed to write a program that will display a "hello" dialog. This is usually
52 a good starting point for learning how to use wxWindows.
53
54 \subsection{Calendar sample}\label{samplecalendar}
55
56 This font shows the \helpref{calendar control}{wxcalendarctrl} in action. It
57 shows how to configure the control (see the different options in the calendar
58 menu) and also how to process the notifications from it.
59
60 \subsection{Checklist sample}\label{samplechecklist}
61
62 This sample demonstrates the use of the \helpref{wxCheckListBox}{wxchecklistbox}
63 class intercepting check, select and double click events. It also tests the
64 use of various methods modifiying the control, such as by deleting items
65 from it or inserting new once (these fucntions are actually implememted in
66 the parent class \helpref{wxListBox}{wxlistbox} so the sample tests that class
67 as well). The layout of the dialog is created using a \helpref{wxBoxSizer}{wxboxsizer}
68 demonstrating a simple dynamic layout.
69
70 \subsection{Config sample}\label{sampleconfig}
71
72 This sample demonstrates the \helpref{wxConfig}{wxconfigbase} classes in a platform
73 indepedent way, i.e. it uses text based files to store a given configuration under
74 Unix and uses the Registry under Windows.
75
76 See \helpref{wxConfig overview}{wxconfigoverview} for the descriptions of all
77 features of this class.
78
79 \subsection{Controls sample}\label{samplecontrols}
80
81 The controls sample is the main test program for most simple controls used in
82 wxWindows. The sample tests their basic functionality, events, placement,
83 modification in terms of colour and font as well as the possibility to change
84 the controls programmatically, such as adding item to a list box etc. Apart
85 from that, the sample uses a \helpref{wxNotebook}{wxnotebook} and tests most
86 fetaures of this special control (using bitmap in the tabs, using
87 \helpref{wxSizers}{wxsizer} and \helpref{constraints}{wxlayoutconstraints} within
88 notebook pages, advanving pages programmatically and vetoing a page change
89 by intercepting the \helpref{wxNotebookEvent}{wxnotebookevent}.
90
91 The various controls tested are listed here:
92
93 \begin{twocollist}\itemsep=0pt
94 \twocolitem{\helpref{wxButton}{wxbutton}}{Push button control, displaying text}
95 \twocolitem{\helpref{wxBitmapButton}{wxbitmapbutton}}{Push button control, displaying a bitmap}
96 \twocolitem{\helpref{wxCheckBox}{wxcheckbox}}{Checkbox control}
97 \twocolitem{\helpref{wxChoice}{wxchoice}}{Choice control (a combobox without the editable area)}
98 \twocolitem{\helpref{wxComboBox}{wxcombobox}}{A choice with an editable area}
99 \twocolitem{\helpref{wxGauge}{wxgauge}}{A control to represent a varying quantity, such as time remaining}
100 \twocolitem{\helpref{wxStaticBox}{wxstaticbox}}{A static, or group box for visually grouping related controls}
101 \twocolitem{\helpref{wxListBox}{wxlistbox}}{A list of strings for single or multiple selection}
102 \twocolitem{wxSpinCtrl}{A spin ctrl with a text field and a `up-down' control}
103 \twocolitem{\helpref{wxSpinButton}{wxspinbutton}}{A spin or `up-down' control}
104 \twocolitem{\helpref{wxStaticText}{wxstatictext}}{One or more lines of non-editable text}
105 \twocolitem{\helpref{wxStaticBitmap}{wxstaticbitmap}}{A control to display a bitmap}
106 \twocolitem{\helpref{wxRadioBox}{wxradiobox}}{A group of radio buttons}
107 \twocolitem{\helpref{wxRadioButton}{wxradiobutton}}{A round button to be used with others in a mutually exclusive way}
108 \twocolitem{\helpref{wxSlider}{wxslider}}{A slider that can be dragged by the user}
109 \end{twocollist}
110
111 \subsection{Database sample}\label{sampledb}
112
113 The database sample is a small test program showing how to use the ODBC
114 classes written by Remstar Intl. These classes are documented in a separate
115 manual available from the wxWindows homepage. Obviously, this sample
116 requires a database with ODBC support to be correctly installed on your
117 system.
118
119 \subsection{Dialogs sample}\label{sampledialogs}
120
121 This sample shows how to use the common dialogs available from wxWindows. These
122 dialogs are desrcibed in details in the \helpref{Common dialogs overview}{commondialogsoverview}.
123
124 \subsection{Dynamic sample}\label{sampledynamic}
125
126 This sample is a very small sample that demonstrates the use of the
127 \helpref{wxEvtHandler::Connect}{wxevthandlerconnect} method. This method
128 should be used whenever it is not known at compile time, which control
129 will receive which event or which controls are actually going to be in
130 a dialog or frame. This is most typically the case for any scripting
131 languge that would work as a wrapper for wxWindows or programs where
132 forms or similar datagrams can be created by the uses.
133
134 \subsection{Exec sample}\label{sampleexec}
135
136 The exec sample demonstrates the \helpref{wxExecute}{wxexecute} and
137 \helpref{wxShell}{wxshell} functions. Both of them are used to execute the
138 external programs and the sample shows how to do this synchronously (waiting
139 until the program terminates) or asynchronously (notification will come later).
140
141 \subsection{Scroll subwindow sample}\label{samplescrollsub}
142
143 This sample demonstrates the use of the \helpref{wxScrolledWindow}{wxscrolledwindow}
144 class including placing subwindows into it and drawing simple graphics. It uses the
145 \helpref{SetTargetWindow}{wxscrolledwindowsettargetwindow} method and thus the effect
146 of scrolling does not show in the scrolled window itself, but in one of its subwindows.
147
148 Additionally, this samples demonstrates how to optimize drawing operations in wxWindows,
149 in particular using the \helpref{wxWindow::IsExposed}{wxwindowisexposed} method with
150 the aim to prevent unnecessary drawing in the window and thus reducing or removing
151 flicker on screen.
152
153 \subsection{Font sample}\label{samplefont}
154
155 The font sample demonstrates \helpref{wxFont}{wxfont},
156 \helpref{wxFontEnumerator}{wxfontenumerator} and
157 \helpref{wxFontMapper}{wxfontmapper} classes. It allows you to see the fonts
158 available (to wxWindows) on the computer and shows all characters of the
159 chosen font as well.
160
161 \subsection{DnD sample}\label{samplednd}
162
163 This sample shows both clipboard and drag and drop in action. It is quite non
164 trivial and may be safely used as a basis for implementing the clipboard and
165 drag and drop operations in a real-life program.
166
167 When you run the sample, its screen is split in several parts. On the top,
168 there are two listboxes which show the standard derivations of
169 \helpref{wxDropTarget}{wxdroptarget}:
170 \helpref{wxTextDropTarget}{wxtextdroptarget} and
171 \helpref{wxFileDropTarget}{wxfiledroptarget}.
172
173 The middle of the sample window is taken by the log window which shows what is
174 going on (of course, this only works in debug builds) and may be helpful to see
175 the sequence of steps of data transfer.
176
177 Finally, the last part is used for dragging text from it to either one of the
178 listboxes (only one will accept it) or another application. The last
179 functionality available from the main frame is to paste a bitmap from the
180 clipboard (or, in the case of Windows version, also a metafile) - it will be
181 shown in a new frame.
182
183 So far, everything we mentioned was implemented with minimal amount of code
184 using standard wxWindows classes. The more advanced features are demonstrated
185 if you create a shape frame from the main frame menu. A shape is a geometric
186 object which has a position, size and color. It models some
187 application-specific data in this sample. A shape object supports its own
188 private \helpref{wxDataFormat}{wxdataformat} which means that you may cut and
189 paste it or drag and drop (between one and the same or different shapes) from
190 one sample instance to another (or the same). However, chances are that no
191 other program supports this format and so shapes can also be rendered as
192 bitmaps which allows them to be pasted/dropped in many other applications
193 (and, under Windows, also as metafiles which are supported by most of Windows
194 programs as well - try Write/Wordpad, for example).
195
196 Take a look at DnDShapeDataObject class to see how you may use
197 \helpref{wxDataObject}{wxdataobject} to achieve this.
198
199 \subsection{Grid sample}\label{samplegrid}
200
201 TODO.
202
203 \subsection{HTML samples}\label{samplehtml}
204
205 Eight HTML samples (you can find them in directory {\tt samples/html})
206 cover all features of HTML sub-library.
207
208 {\bf Test} demonstrates how to create \helpref{wxHtmlWindow}{wxhtmlwindow}
209 and also shows most of supported HTML tags.
210
211 {\bf Widget} shows how you can embed ordinary controls or windows within
212 HTML page. It also nicely explains how to write new tag handlers and extend
213 the library to work with unsupported tags.
214
215 {\bf About} may give you an idea how to write good-looking about boxes.
216
217 {\bf Zip} demonstrates use of virtual file systems in wxHTML. The zip archives
218 handler (ships with wxWindows) allows you to access HTML pages stored
219 in compressed archive as if they were ordinary files.
220
221 {\bf Virtual} is yet another VFS demo. This one generates pages at run-time.
222 You may find it useful if you need to display some reports in your application.
223
224 {\bf Printing} explains use of \helpref{wxHtmlEasyPrinting}{wxhtmleasyprinting}
225 class which serves as as-simple-as-possible interface for printing HTML
226 documents without much work. In fact, only few function calls are sufficient.
227
228 {\bf Help} and {\bf Helpview} are variations on displaying HTML help
229 (compatible with MS HTML Help Workshop). {\it Help} shows how to embed
230 \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller} in your application
231 while {\it Helpview} is simple tool that only pops up help window and
232 displays help books given at command line.
233
234 \subsection{Image sample}\label{sampleimage}
235
236 The image sample demonstrates the use of the \helpref{wxImage}{wximage} class
237 and shows how to download images in a variety of formats, currently PNG, GIF,
238 TIFF, JPEG, BMP, PNM and PCX. The top of the sample shows to rectangles, one
239 of which is drawn directly in the window, the other one is drawn into a
240 \helpref{wxBitmap}{wxbitmap}, converted to a wxImage, saved as a PNG image
241 and then reloaded from the PNG file again so that conversions between wxImage
242 and wxBitmap as well as loading and save PNG files are tested.
243
244 At the bottom of the main frame is a test for using a monochrome bitmap by
245 drawing into a \helpref{wxMemoryDC}{wxmemorydc}. The bitmap is then drawn
246 specifying the foreground and background colours with
247 \helpref{wxDC::SetTextForeground}{wxdcsettextforeground} and
248 \helpref{wxDC::SetTextBackground}{wxdcsettextbackground} (on the left). The
249 bitmap is then converted to a wxImage and the foreground colour (black) is
250 replaced with red using \helpref{wxImage::Replace}{wximagereplace}.
251
252 \subsection{Layout sample}\label{samplelayout}
253
254 The layout sample demonstrates the two different layout systems offered
255 by wxWindows. When starting the program, you will see a frame with some
256 controls and some graphics. The controls will change their size whenever
257 you resize the entire frame and the exact behaviour of the size changes
258 is determined using the \helpref{wxLayoutConstraints}{wxlayoutconstraints}
259 class. See also the \helpref{overview}{constraintsoverview} and the
260 \helpref{wxIndividualLayoutConstraint}{wxindividuallayoutconstraint}
261 class for further information.
262
263 The menu in this sample offers two more tests, one showing how to use
264 a \helpref{wxBoxSizer}{wxboxsizer} in a simple dialog and the other one
265 showing how to use sizers in connection with a \helpref{wxNotebook}{wxnotebook}
266 class. See also \helpref{wxNotebookSizer}{wxnotebooksizer} and
267 \helpref{wxSizer}{wxsizer}.
268
269 \subsection{Listctrl sample}\label{samplelistctrl}
270
271 This sample shows \helpref{wxListCtrl}{wxlistctrl} control. Different modes
272 supported by the control (list, icons, small icons, report) may be chosen from
273 the menu.
274
275 The sample also provides some timings for adding/deleting/sorting a lot of
276 (several thousands) controls into the control.
277
278 \subsection{Sockets sample}\label{samplesockets}
279
280 The sockets sample demonstrates how to use the communication facilities
281 provided by \helpref{wxSocket}{wxsocketbase}. There are two different
282 applications in this sample: a server, which is implemented as a
283 \helpref{wxSocketServer}{wxsocketserver} object, and a client, which is
284 implemented with \helpref{wxSocketClient}{wxsocketclient}.
285
286 The server binds to the local address, using TCP port number 3000, sets
287 up an event handler to be notified of incoming connection requests
288 ({\bf wxSOCKET\_CONNECTION} event), and stands there, waiting (listening
289 in the socket parlance) for clients. For each incoming client, a new
290 \helpref{wxSocketBase}{wxsocketbase} object is created, which represents
291 the connection. Connections are independent from the server that created
292 them, so they set up their own event handler, and stay awaiting for
293 {\bf wxSOCKET\_INPUT} (incoming data) or {\bf wxSOCKET\_LOST} (connection
294 closed at the remote end) events. This event handler is the same for all
295 connections, and demonstrates how to determine which socket the event
296 is addressed to by using the \helpref{Socket}{wxsocketeventsocket} function
297 in the \helpref{wxSocketEvent}{wxsocketevent} class.
298
299 Although it might take some time to get used to the event-oriented
300 system upon which wxSocket is built, the benefits are many. See, for
301 example, that the server application, while being single-threaded
302 (and of course without using fork() or ugly select() loops) can handle
303 an arbitrary number of connections.
304
305 The client starts up unconnected, so you can use the Connect... option
306 to specify the address of the server you are going to connect to (the
307 TCP port number is hard-coded as 3000). Once connected, a number of
308 tests are possible. Currently, three tests are implemented. They show
309 how to use the basic IO calls in \helpref{wxSocketBase}{wxsocketbase},
310 such as \helpref{Read}{wxsocketbaseread}, \helpref{Write}{wxsocketbasewrite},
311 \helpref{ReadMsg}{wxsocketbasereadmsg} and \helpref{WriteMsg}{wxsocketbasewritemsg},
312 and how to set up the correct IO flags depending on what you are going to
313 do. See the comments in the code for more information (a lengthy explanation
314 on socket flags is available in \helpref{SetFlags}{wxsocketbasesetflags}).
315 Note that because both clients and connection objects in the server set
316 up an event handler to catch {\bf wxSOCKET\_LOST} events, each one is
317 immediately notified if the other end closes the connection.
318
319 The sockets sample is work in progress. Coming soon:
320
321 \begin{itemize}\itemsep=0pt
322 \item More tests for basic socket functionality.
323 \item Tests for the recently added datagram socket classes.
324 \item Tests for protocol classes (wxProtocol and its descendants).
325 \item New samples which actually do something useful (suggestions accepted).
326 \end{itemize}
327
328 \subsection{Statbar sample}\label{samplestatbar}
329
330 This sample shows how to create and use wxStatusBar. Although most of the
331 samples have a statusbar, they usually only create a default one and only
332 do it once.
333
334 Here you can see how to recreate the statusbar (with possibly different number
335 of fields) and how to use it to show icons/bitmaps and/or put arbitrary
336 controls into it.
337
338 \subsection{Text sample}\label{sampletext}
339
340 This sample demonstrates four features: firstly the use and many variants of
341 the \helpref{wxTextCtrl}{wxtextctrl} class (single line, multi line, read only,
342 password, ignoring TAB, ignoring ENTER).
343
344 Secondly it shows how to intercept a \helpref{wxKeyEvent}{wxkeyevent} in both
345 the raw form using the {\tt EVT\_KEY\_UP} and {\tt EVT\_KEY\_DOWN} macros and the
346 higherlevel from using the {\tt EVT\_CHAR} macro. All characters will be logged
347 in a log window at the bottom of the main window. By pressing some of the function
348 keys, you can test some actions in the text ctrl as well as get statitics on the
349 text ctrls, which is useful for testing if these statitics actually are correct.
350
351 Thirdly, on platforms which support it, the sample will offer to copy text to the
352 \helpref{wxClipboard}{wxclipboard} and to paste text from it. The GTK version will
353 use the so called PRIMARY SELECTION, which is the pseudo clipboard under X and
354 best known from pasting text to the XTerm program.
355
356 Last not least: some of the text controls have tooltips and the sample also shows
357 how tooltips can be centrally disabled and their latency controlled.
358
359 \subsection{Thread sample}\label{samplethread}
360
361 This sample demonstrates the use of threads in connection with GUI programs.
362 There are two fundamentally different ways to use threads in GUI programs and
363 either way has to take care of the fact that the GUI library itself usually
364 is not multi-threading safe, i.e. that it might crash if two threads try to
365 access the GUI class simultaneously. One way to prevent that is have a normal
366 GUI program in the main thread and some worker threads which work in the
367 background. In order to make communication between the main thread and the
368 worker threads possible, wxWindows offers the \helpref{wxPostEvent}{wxpostevent}
369 function and this sample makes use of this function.
370
371 The other way to use a so called Mutex (such as those offered in the \helpref{wxMutex}{wxmutex}
372 class) that prevent threads from accessing the GUI classes as long as any other
373 thread accesses them. For this, wxWindows has the \helpref{wxMutexGuiEnter}{wxmutexguienter}
374 and \helpref{wxMutexGuiLeave}{wxmutexguileave} functions, both of which are
375 used and tested in the sample as well.
376
377 See also \helpref{Multithreading overview}{wxthreadoverview} and \helpref{wxThread}{wxthread}.
378
379 \subsection{Toolbar sample}\label{sampletoolbar}
380
381 The toolbar sample shows the \helpref{wxToolBar}{wxtoolbar} class in action.
382
383 The following things are demonstrated:
384
385 \begin{itemize}\itemsep=0pt
386 \item Creating the toolbar using \helpref{wxToolBar::AddTool}{wxtoolbaraddtool}
387 and \helpref{wxToolBar::AddControl}{wxtoolbaraddcontrol}: see
388 MyApp::InitToolbar in the sample.
389 \item Using {\tt EVT\_UPDATE\_UI} handler for automatically enabling/disabling
390 toolbar buttons without having to explicitly call EnableTool. This is is done
391 in MyFrame::OnUpdateCopyAndCut.
392 \item Using \helpref{wxToolBar::DeleteTool}{wxtoolbardeletetool} and
393 \helpref{wxToolBar::InsertTool}{wxtoolbarinserttool} to dynamically update the
394 toolbar.
395 \end{itemize}
396
397 \subsection{Treectrl sample}\label{sampletreectrl}
398
399 This sample demonstrates using \helpref{wxTreeCtrl}{wxtreectrl} class. Here
400 you may see how to process various notification messages sent by this control
401 and also when they occur (by looking at the messages in the text control in
402 the bottom part of the frame).
403
404 Adding, inserting and deleting items and branches from the tree as well as
405 sorting (in default alphabetical order as well as in custom one) is
406 demonstrated here as well - try the corresponding menu entries.
407