]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/tsamples.tex
several mingw32 compilation fixes
[wxWidgets.git] / docs / latex / wx / tsamples.tex
CommitLineData
eb91c0be
VZ
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
12\section{wxWindows samples}\label{samples}
13
14Probably the best way to learn wxWindows is by reading the source of some 50+
15samples provided with it. Many aspects of wxWindows programming can be learnt
16from them, but sometimes it is not simple to just choose the right sample to
17look at. This overview aims at describing what each sample does/demonstrates to
18make it easier to find the relevant one if a simple grep through all sources
19didn't help. They also provide some notes about using the samples and what
20features of wxWindows are they supposed to test.
21
238ddd26
RR
22There are currently more than 50 different samples as part of wxWindows and
23this list is not complete.
24
25\subsection{Minimal sample}\label{sampleminimal}
26
27The minimal sample is what most people will know under the term Hello World,
28i.e. a minimal program that doesn't demonstrate anything apart from what is
29needed to write a program that will display a "hello" dialog. This is usually
30a good starting point for learning how to use wxWindows.
31
4f6aed9c
VZ
32\subsection{Calendar sample}\label{samplecalendar}
33
34This font shows the \helpref{calendar control}{wxcalendarctrl} in action. It
35shows how to configure the control (see the different options in the calendar
36menu) and also how to process the notifications from it.
37
cddfbd9f
RR
38\subsection{Checklist sample}\label{samplechecklist}
39
40This sample demonstrates the use of the \helpref{wxCheckListBox}{wxchecklistbox}
41class intercepting check, select and double click events. It also tests the
42use of various methods modifiying the control, such as by deleting items
43from it or inserting new once (these fucntions are actually implememted in
44the parent class \helpref{wxListBox}{wxlistbox} so the sample tests that class
45as well). The layout of the dialog is created using a \helpref{wxBoxSizer}{wxboxsizer}
46demonstrating a simple dynamic layout.
47
48\subsection{Config sample}\label{sampleconfig}
49
50This sample demonstrates the \helpref{wxConfig}{wxconfigbase} classes in a platform
51indepedent way, i.e. it uses text based files to store a given configuration under
52Unix and uses the Registry under Windows.
53
54See \helpref{wxConfig overview}{wxconfigoverview} for the descriptions of all
55features of this class.
56
32ab332f
RR
57\subsection{Controls sample}\label{samplecontrols}
58
59The controls sample is the main test program for most simple controls used in
60wxWindows. The sample tests their basic functionality, events, placement,
61modification in terms of colour and font as well as the possibility to change
62the controls programmatically, such as adding item to a list box etc. Apart
63from that, the sample uses a \helpref{wxNotebook}{wxnotebook} and tests most
64fetaures of this special control (using bitmap in the tabs, using
65\helpref{wxSizers}{wxsizer} and \helpref{constraints}{wxlayoutconstraints} within
66notebook pages, advanving pages programmatically and vetoing a page change
67by intercepting the \helpref{wxNotebookEvent}{wxnotebookevent}.
68
69The various controls tested are listed here:
70\begin{twocollist}\itemsep=0pt
71\twocolitem{\helpref{wxButton}{wxbutton}}{Push button control, displaying text}
72\twocolitem{\helpref{wxBitmapButton}{wxbitmapbutton}}{Push button control, displaying a bitmap}
73\twocolitem{\helpref{wxCheckBox}{wxcheckbox}}{Checkbox control}
74\twocolitem{\helpref{wxChoice}{wxchoice}}{Choice control (a combobox without the editable area)}
75\twocolitem{\helpref{wxComboBox}{wxcombobox}}{A choice with an editable area}
76\twocolitem{\helpref{wxGauge}{wxgauge}}{A control to represent a varying quantity, such as time remaining}
77\twocolitem{\helpref{wxStaticBox}{wxstaticbox}}{A static, or group box for visually grouping related controls}
78\twocolitem{\helpref{wxListBox}{wxlistbox}}{A list of strings for single or multiple selection}
79\twocolitem{wxSpinCtrl}{A spin ctrl with a text field and a `up-down' control}
80\twocolitem{\helpref{wxSpinButton}{wxspinbutton}}{A spin or `up-down' control}
81\twocolitem{\helpref{wxStaticText}{wxstatictext}}{One or more lines of non-editable text}
82\twocolitem{\helpref{wxStaticBitmap}{wxstaticbitmap}}{A control to display a bitmap}
83\twocolitem{\helpref{wxRadioBox}{wxradiobox}}{A group of radio buttons}
84\twocolitem{\helpref{wxRadioButton}{wxradiobutton}}{A round button to be used with others in a mutually exclusive way}
85\twocolitem{\helpref{wxSlider}{wxslider}}{A slider that can be dragged by the user}
86\end{twocollist}
87
88\subsection{Database sample}\label{sampledb}
89
90The database sample is a small test program showing how to use the ODBC
91classes written by Remstar Intl. These classes are documented in a separate
92manual available from the wxWindows homepage. Obviously, this sample
93requires a database with ODBC support to be correctly installed on your
94system.
95
cddfbd9f
RR
96\subsection{Dialogs sample}\label{sampledialogs}
97
98This sample shows how to use the common dialogs available from wxWindows. These
99dialogs are desrcibed in details in the \helpref{Common dialogs overview}{commondialogsoverview}.
100
238ddd26
RR
101\subsection{Dynamic sample}\label{sampledynamic}
102
103This sample is a very small sample that demonstrates the use of the
104\helpref{wxEvtHandler::Connect}{wxevthandlerconnect} method. This method
105should be used whenever it is not known at compile time, which control
106will receive which event or which controls are actually going to be in
107a dialog or frame. This is most typically the case for any scripting
108languge that would work as a wrapper for wxWindows or programs where
109forms or similar datagrams can be created by the uses.
110
0d7ea902
VZ
111\subsection{Exec sample}\label{sampleexec}
112
113The exec sample demonstrates the \helpref{wxExecute}{wxexecute} and
114\helpref{wxShell}{wxshell} functions. Both of them are used to execute the
115external programs and the sample shows how to do this synchronously (waiting
116until the program terminates) or asynchronously (notification will come later).
117
cddfbd9f
RR
118\subsection{Scroll subwindow sample}\label{samplescrollsub}
119
120This sample demonstrates the use of the \helpref{wxScrolledWindow}{wxscrolledwindow}
121class including placing subwindows into it and drawing simple graphics. It uses the
122\helpref{SetTargetWindow}{wxscrolledwindowsettargetwindow} method and thus the effect
123of scrolling does not show in the scrolled window itself, but in one of its subwindows.
124
125Additionally, this samples demonstrates how to optimize drawing operations in wxWindows,
126in particular using the \helpref{wxWindow::IsExposed}{wxwindowisexposed} method with
127the aim to prevent unnecessary drawing in the window and thus reducing or removing
128flicker on screen.
129
775a998e
VZ
130\subsection{Font sample}\label{samplefont}
131
132The font sample demonstrates \helpref{wxFont}{wxfont},
133\helpref{wxFontEnumerator}{wxfontenumerator} and
134\helpref{wxFontMapper}{wxfontmapper} classes. It allows you to see the fonts
135available (to wxWindows) on the computer and shows all characters of the
136chosen font as well.
137
c03648c2 138\subsection{DnD sample}\label{samplednd}
eb91c0be
VZ
139
140This sample shows both clipboard and drag and drop in action. It is quite non
141trivial and may be safely used as a basis for implementing the clipboard and
142drag and drop operations in a real-life program.
143
144When you run the sample, its screen is split in several parts. On the top,
145there are two listboxes which show the standard derivations of
146\helpref{wxDropTarget}{wxdroptarget}:
147\helpref{wxTextDropTarget}{wxtextdroptarget} and
148\helpref{wxFileDropTarget}{wxfiledroptarget}.
149
150The middle of the sample window is taken by the log window which shows what is
151going on (of course, this only works in debug builds) and may be helpful to see
152the sequence of steps of data transfer.
153
0d7ea902
VZ
154Finally, the last part is used for dragging text from it to either one of the
155listboxes (only one will accept it) or another application. The last
156functionality available from the main frame is to paste a bitmap from the
157clipboard (or, in the case of Windows version, also a metafile) - it will be
158shown in a new frame.
eb91c0be
VZ
159
160So far, everything we mentioned was implemented with minimal amount of code
161using standard wxWindows classes. The more advanced features are demonstrated
162if you create a shape frame from the main frame menu. A shape is a geometric
163object which has a position, size and color. It models some
164application-specific data in this sample. A shape object supports its own
165private \helpref{wxDataFormat}{wxdataformat} which means that you may cut and
166paste it or drag and drop (between one and the same or different shapes) from
167one sample instance to another (or the same). However, chances are that no
168other program supports this format and so shapes can also be rendered as
0d7ea902
VZ
169bitmaps which allows them to be pasted/dropped in many other applications
170(and, under Windows, also as metafiles which are supported by most of Windows
171programs as well - try Write/Wordpad, for example).
eb91c0be
VZ
172
173Take a look at DnDShapeDataObject class to see how you may use
174\helpref{wxDataObject}{wxdataobject} to achieve this.
cd77c085 175
61eff74f
VS
176\subsection{HTML samples}\label{samplehtml}
177
178Eight HTML samples (you can find them in directory {\tt samples/html})
179cover all features of HTML sub-library.
180
181{\bf Test} demonstrates how to create \helpref{wxHtmlWindow}{wxhtmlwindow}
182and also shows most of supported HTML tags.
183
184{\bf Widget} shows how you can embed ordinary controls or windows within
185HTML page. It also nicely explains how to write new tag handlers and extend
186the library to work with unsupported tags.
187
188{\bf About} may give you an idea how to write good-looking about boxes.
189
190{\bf Zip} demonstrates use of virtual file systems in wxHTML. The zip archives
191handler (ships with wxWindows) allows you to access HTML pages stored
192in compressed archive as if they were ordinary files.
193
194{\bf Virtual} is yet another VFS demo. This one generates pages at run-time.
195You may find it useful if you need to display some reports in your application.
196
197{\bf Printing} explains use of \helpref{wxHtmlEasyPrinting}{wxhtmleasyprinting}
198class which serves as as-simple-as-possible interface for printing HTML
199documents without much work. In fact, only few function calls are sufficient.
200
201{\bf Help} and {\bf Helpview} are variations on displaying HTML help
202(compatible with MS HTML Help Workshop). {\it Help} shows how to embed
203\helpref{wxHtmlHelpController}{wxhtmlhelpcontroller} in your application
204while {\it Helpview} is simple tool that only pops up help window and
205displays help books given at command line.
206
238ddd26
RR
207\subsection{Layout sample}\label{samplelayout}
208
209The layout sample demonstrates the two different layout systems offered
210by wxWindows. When starting the program, you will see a frame with some
211controls and some graphics. The controls will change their size whenever
212you resize the entire frame and the exact behaviour of the size changes
213is determined using the \helpref{wxLayoutConstraints}{wxlayoutconstraints}
214class. See also the \helpref{overview}{constraintsoverview} and the
215\helpref{wxIndividualLayoutConstraint}{wxindividuallayoutconstraint}
216class for further information.
217
218The menu in this sample offers two more tests, one showing how to use
219a \helpref{wxBoxSizer}{wxboxsizer} in a simple dialog and the other one
220showing how to use sizers in connection with a \helpref{wxNotebook}{wxnotebook}
221class. See also \helpref{wxNotebookSizer}{wxnotebooksizer} and
222\helpref{wxSizer}{wxsizer}.
223
32ab332f
RR
224\subsection{Image sample}\label{sampleimage}
225
226The image sample demonstrates the use of the \helpref{wxImage}{wximage} class
227and shows how to download images in a variety of formats, currently PNG, GIF,
228TIFF, JPEG, BMP, PNM and PCX. The top of the sample shows to rectangles, one
229of which is drawn directly in the window, the other one is drawn into a
230\helpref{wxBitmap}{wxbitmap}, converted to a wxImage, saved as a PNG image
231and then reloaded from the PNG file again so that conversions between wxImage
232and wxBitmap as well as loading and save PNG files are tested.
233
234At the bottom of the main frame is a test for using a mono-chrome bitmap by
235drawing into a \helpref{wxMemoryDC}{wxmemorydc}. The bitmap is then drawn
236specifying the foreground and background colours with
237\helpref{wxDC::SetTextForeground}{wxdcsettextforeground} and
238\helpref{wxDC::SetTextBackground}{wxdcsettextbackground} (on the left). The
239bitmap is then converted to a wxImage and the foreground colour (black) is
240replaced with red using \helpref{wxImage::Replace}{wximagereplace}.
241
238ddd26
RR
242\subsection{Text sample}\label{sampletext}
243
244This sample demonstrates four features: firstly the use and many variants of
245the \helpref{wxTextCtrl}{wxtextctrl} class (single line, multi line, read only,
246password, ignoring TAB, ignoring ENTER).
247
248Secondly it shows how to intercept a \helpref{wxKeyEvent}{wxkeyevent} in both
249the raw form using the {\tt EVT_KEY_UP} and {\tt EVT_KEY_DOWN} macros and the
250higherlevel from using the {\tt EVT_CHAR} macro. All characters will be logged
251in a log window at the bottom of the main window. By pressing some of the function
252keys, you can test some actions in the text ctrl as well as get statitics on the
253text ctrls, which is useful for testing if these statitics actually are correct.
254
255Thirdly, on platforms which support it, the sample will offer to copy text to the
256\helpref{wxClipboard}{wxclipboard} and to paste text from it. The GTK version will
257use the so called PRIMARY SELECTION, which is the pseudo clipboard under X and
258best known from pasting text to the XTerm program.
259
260Last not least: some of the text controls have tooltips and the sample also shows
261how tooltips can be centrally disabled and their latency controlled.
262
c88275cb
RR
263\subsection{Thread sample}\label{samplethread}
264
265This sample demonstrates the use of threads in connection with GUI programs.
266There are two fundamentally different ways to use threads in GUI programs and
267either way has to take care of the fact that the GUI library itself usually
268is not multi-threading safe, i.e. that it might crash if two threads try to
269access the GUI class simultaneously. One way to prevent that is have a normal
270GUI program in the main thread and some worker threads which work in the
271background. In order to make communication between the main thread and the
272worker threads possible, wxWindows offers the \helpref{wxPostEvent}{wxpostevent}
273function and this sample makes use of this function.
274
275The other way to use a so called Mutex (such as those offered in the \helpref{wxMutex}{wxmutex}
276class) that prevent threads from accessing the GUI classes as long as any other
277thread accesses them. For this, wxWindows has the \helpref{wxMutexGuiEnter}{wxmutexguienter}
278and \helpref{wxMutexGuiLeave}{wxmutexguileave} functions, both of which are
279used and tested in the sample as well.
280
281See also \helpref{Multithreading overview}{wxthreadoverview} and \helpref{wxThread}{wxthread}.
282
5ef2e633
VZ
283\subsection{Toolbar sample}\label{sampletoolbar}
284
285The toolbar sample shows the \helpref{wxToolBar}{wxtoolbar} class in action.
286
287The following things are demonstrated:
288
289\begin{itemize}
290
291\item Creating the toolbar using \helpref{wxToolBar::AddTool}{wxtoolbaraddtool}
292and \helpref{wxToolBar::AddControl}{wxtoolbaraddcontrol}: see
293MyApp::InitToolbar in the sample.
294
295\item Using {\tt EVT\_UPDATE\_UI} handler for automatically enabling/disabling
296toolbar buttons without having to explicitly call EnableTool. This is is done
297in MyFrame::OnUpdateCopyAndCut.
298
299\item Using \helpref{wxToolBar::DeleteTool}{wxtoolbardeletetool} and
300\helpref{wxToolBar::InsertTool}{wxtoolbarinserttool} to dynamically update the
301toolbar.
302
303\end{itemize}