]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/tthreads.tex
wx.SL_INVERSE works for the big 3 now.
[wxWidgets.git] / docs / latex / wx / tthreads.tex
CommitLineData
6e6110ee
VZ
1\section{Multithreading overview}\label{wxthreadoverview}
2
b82827dd
JS
3Classes: \helpref{wxThread}{wxthread}, \helpref{wxMutex}{wxmutex},
4\helpref{wxCriticalSection}{wxcriticalsection},
6e6110ee
VZ
5\helpref{wxCondition}{wxcondition}
6
fc2171bd 7wxWidgets provides a complete set of classes encapsulating objects necessary in
99f09bc1
VZ
8multithreaded (MT) programs: the \helpref{thread}{wxthread} class itself and different
9synchronization objects: \helpref{mutexes}{wxmutex} and
10\helpref{critical sections}{wxcriticalsection} with
fc2171bd 11\helpref{conditions}{wxcondition}. The thread API in wxWidgets resembles to
9fc3ad34
VZ
12POSIX1.c threads API (a.k.a. pthreads), although several functions have
13different names and some features inspired by Win32 thread API are there as
14well.
b82827dd 15
99f09bc1
VZ
16These classes will hopefully make writing MT programs easier and they also
17provide some extra error checking (compared to the native (be it Win32 or Posix)
f6bcfd97 18thread API), however it is still an non-trivial undertaking especially for large
99f09bc1
VZ
19projects. Before starting an MT application (or starting to add MT features to
20an existing one) it is worth asking oneself if there is no easier and safer way
21to implement the same functionality. Of course, in some situations threads
22really make sense (classical example is a server application which launches a
23new thread for each new client), but in others it might be a very poor choice
24(example: launching a separate thread when doing a long computation to show a
25progress dialog). Other implementation choices are available: for the progress
26dialog example it is far better to do the calculations in the
17b7cac5
VZ
27\helpref{idle handler}{wxidleevent} or even simply do everything at once
28but call \helpref{wxWindow::Update()}{wxwindowupdate} periodically to update
29the screen.
99f09bc1
VZ
30
31If you do decide to use threads in your application, it is strongly recommended
32that no more than one thread calls GUI functions. The thread sample shows that
33it {\it is} possible for many different threads to call GUI functions at once
34(all the threads created in the sample access GUI), but it is a very poor design
35choice for anything except an example. The design which uses one GUI thread and
36several worker threads which communicate with the main one using events is much
37more robust and will undoubtedly save you countless problems (example: under
38Win32 a thread can only access GDI objects such as pens, brushes, \&c created by
39itself and not by the other threads).
40
dbd94b75 41For communication between secondary threads and the main thread, you may use
e12be2f7 42\helpref{wxEvtHandler::AddPendingEvent}{wxevthandleraddpendingevent}
20e05ffb
RR
43or its short version \helpref{wxPostEvent}{wxpostevent}. These functions
44have thread safe implementation so that they can be used as they are for
dbd94b75 45sending events from one thread to another. However there is no built in method
17b7cac5
VZ
46to send messages to the worker threads and you will need to use the available
47synchronization classes to implement the solution which suits your needs
dbd94b75 48yourself. In particular, please note that it is \emph{not} enough to derive
17b7cac5
VZ
49your class from \helpref{wxThread}{wxthread} and
50\helpref{wxEvtHandler}{wxevthandler} to send messages to it: in fact, this does
51\emph{not} work at all.
20e05ffb 52
20e85460 53