2000-08-14 03:05:37 -04:00
\documentstyle [a4,11pt,makeidx,verbatim,texhelp,fancyheadings,palatino] { report}
2000-08-14 12:19:20 -04:00
%
2000-08-14 03:05:37 -04:00
\newcommand { \indexit } [1]{ #1\index { #1} } %
\newcommand { \pipe } [0]{ $ \| $ \ } %
\definecolour { black} { 0} { 0} { 0} %
\definecolour { cyan} { 0} { 255} { 255} %
\definecolour { green} { 0} { 255} { 0} %
\definecolour { magenta} { 255} { 0} { 255} %
\definecolour { red} { 255} { 0} { 0} %
\definecolour { blue} { 0} { 0} { 200} %
\definecolour { yellow} { 255} { 255} { 0} %
\definecolour { white} { 255} { 255} { 255} %
%
\input psbox.tex
% Remove this for processing with dvi2ps instead of dvips
%\special{!/@scaleunit 1 def}
\parskip =10pt
\parindent =0pt
2000-08-14 12:19:20 -04:00
%
2000-08-14 03:05:37 -04:00
\title { Multiplatform application development with wxWindows}
2000-08-14 12:19:20 -04:00
\author { Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al}
2000-08-14 03:05:37 -04:00
\date { August 13th 2000}
2000-08-14 12:19:20 -04:00
%
2000-08-14 03:05:37 -04:00
\makeindex
\begin { document}
\maketitle
\pagestyle { fancyplain}
\bibliographystyle { plain}
\setheader { { \it CONTENTS} } { } { } { } { } { { \it CONTENTS} }
\setfooter { \thepage } { } { } { } { } { \thepage } %
\pagenumbering { roman}
\tableofcontents
2000-08-14 12:19:20 -04:00
% Acknowledgements
\input chap\_ acknowledge.tex
%
2000-08-14 06:18:04 -04:00
% Chapter 01: Introduction, advocacy, etc.
2000-08-14 08:02:31 -04:00
\input chap\_ intro.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 02: Installing wxWindows (and what tools to use)
2000-08-14 08:02:31 -04:00
\input chap\_ install.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 03: C++ and wxWindows. Summarises the sorts of constructs used/not used, plus wxString class, some conventions. Vadim suggests putting it in 1st chapter but I think it deserves a chapter of its own.
2000-08-14 08:02:31 -04:00
\input chap\_ cpp.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 04: Getting started: Hello World. Introduces app class, frames, menus, status bar, message box
2000-08-14 08:02:31 -04:00
\input chap\_ getstart.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 05: Basic event handling
2000-08-14 08:02:31 -04:00
\input chap\_ basic\_ events.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 06: Frames and menubars. The components of a frame, menubars.
2000-08-14 08:02:31 -04:00
\input chap\_ frames.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 07: Toolbars and status bars
2000-08-14 08:02:31 -04:00
\input chap\_ toolbars.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 08: Basic controls
2000-08-14 08:02:31 -04:00
\input chap\_ basic\_ controls.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 09: Common dialogs
2000-08-14 08:02:31 -04:00
\input chap\_ common\_ dialogs.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 10: Custom dialogs and resources (XML)
2000-08-14 08:02:31 -04:00
\input chap\_ custom\_ dialogs.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 11: Drawing on device contexts
2000-08-14 08:02:31 -04:00
\input chap\_ drawing.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 12: Handling input (mouse, keyboard, joystick)
2000-08-14 08:02:31 -04:00
\input chap\_ input.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 14: Sizers
%
2000-08-14 08:02:31 -04:00
\input chap\_ sizers.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 15: Images and bitmaps
2000-08-14 08:02:31 -04:00
\input chap\_ images.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 16: Clipboard and drag and drop
2000-08-14 08:02:31 -04:00
\input chap\_ clipboard\_ dnd.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 17: Advanced controls (list,tree,notebook,splitter,wxWizard,wxCalCtrl...)
2000-08-14 08:02:31 -04:00
\input chap\_ advanced\_ controls.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 18: Document/view classes
2000-08-14 08:02:31 -04:00
\input chap\_ docview.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 19: Scrolling
2000-08-14 08:02:31 -04:00
\input chap\_ scrolling.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 20: MDI
2000-08-14 08:02:31 -04:00
\input chap\_ mdi.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 21: Printing
2000-08-14 08:02:31 -04:00
\input chap\_ printing.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 22: Providing help in your applications
2000-08-14 08:02:31 -04:00
\input chap\_ help.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 23: Strings and internationalization
2000-08-14 08:02:31 -04:00
\input chap\_ strings.tex
2000-08-14 06:18:04 -04:00
%
2000-08-14 08:02:31 -04:00
\input chap\_ data\_ classes.tex
2000-08-14 06:18:04 -04:00
% Chapter 24: Collection and container classes
%
% Chapter 25: Memory management and debugging (including wxLog)
2000-08-14 08:02:31 -04:00
\input chap\_ memory.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 26: Run-time class information
2000-08-14 08:02:31 -04:00
\input chap\_ runtime.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 27: Advanced event handling (user-defined events, ...)
2000-08-14 08:02:31 -04:00
\input chap\_ advanced\_ events.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 28: Communication classes, including wxSocket
2000-08-14 08:02:31 -04:00
\input chap\_ comms.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 29: Database classes
2000-08-14 08:02:31 -04:00
\input chap\_ database.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 30: File and stream classes
2000-08-14 08:02:31 -04:00
\input chap\_ file\_ stream.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 31: Configuration classes
2000-08-14 08:02:31 -04:00
\input chap\_ config.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 32: Time, timers and idle processing
2000-08-14 08:02:31 -04:00
\input chap\_ time.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 33: Writing multithreading applications
2000-08-14 08:02:31 -04:00
\input chap\_ multithreading.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 34: Perfecting your UI (Adapting to system settings, accelerators, ...)
2000-08-14 08:02:31 -04:00
\input chap\_ perfecting.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 35: Platform-specific programming (metafiles, OLE automation, taskbar, ...)
2000-08-14 08:02:31 -04:00
\input chap\_ platform.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 36: Using wxHTML
2000-08-14 08:02:31 -04:00
\input chap\_ wxhtml.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 37: Using wxPython
2000-08-14 08:02:31 -04:00
\input chap\_ wxpython.tex
2000-08-14 06:18:04 -04:00
%
% Chapter 38: wxBase?
2000-08-14 08:02:31 -04:00
\input chap\_ wxbase.tex
2000-08-14 06:18:04 -04:00
%
% Appendix: Comparison with other toolkits: MFC, Qt etc.
2000-08-14 08:02:31 -04:00
\input chap\_ comparison.tex
2000-08-14 06:18:04 -04:00
%
% Appendix: a compendium of external resources, libraries etc.
2000-08-14 08:02:31 -04:00
\input chap\_ resources.tex
2000-08-14 03:05:37 -04:00
\bibliography { refs}
\addcontentsline { toc} { chapter} { Bibliography}
\setheader { { \it REFERENCES} } { } { } { } { } { { \it REFERENCES} } %
\setfooter { \thepage } { } { } { } { } { \thepage } %
\newpage
% Note: In RTF, the \printindex must come before the
% change of header/footer, since the \printindex inserts
% the RTF \sect command which divides one chapter from
% the next.
\rtfonly { \printindex
\addcontentsline { toc} { chapter} { Index}
\setheader { { \it INDEX} } { } { } { } { } { { \it INDEX} } %
\setfooter { \thepage } { } { } { } { } { \thepage }
}
% In Latex, it must be this way around (I think)
\latexonly { \addcontentsline { toc} { chapter} { Index}
\setheader { { \it INDEX} } { } { } { } { } { { \it INDEX} } %
\setfooter { \thepage } { } { } { } { } { \thepage }
\printindex
}
\end { document}