]>
Commit | Line | Data |
---|---|---|
e14dccff KB |
1 | \documentstyle[a4,11pt,makeidx,verbatim,texhelp,fancyheadings,palatino]{thesis} |
2 | %KB: | |
3 | \addtolength{\textwidth}{1in} | |
4 | \addtolength{\oddsidemargin}{-0.5in} | |
5 | \addtolength{\topmargin}{-0.5in} | |
6 | \addtolength{\textheight}{1in} | |
7 | \sloppy | |
8 | %end of my changes | |
9 | %\documentstyle[a4,makeidx,verbatim,texhelp,fancyhea,mysober,mytitle]{report} | |
a660d684 KB |
10 | \newcommand{\indexit}[1]{#1\index{#1}} |
11 | \newcommand{\pipe}[0]{$\|$\ }% | |
12 | \input psbox.tex | |
13 | ||
14 | % Remove this for processing with dvi2ps instead of dvips | |
15 | %\special{!/@scaleunit 1 def} | |
16 | ||
17 | \parskip=10pt | |
18 | \parindent=0pt | |
fc2171bd | 19 | \title{Reference Manual for wxWidgets 2.0: a portable C++ GUI toolkit} |
bd0df01f | 20 | \author{Julian Smart} |
76c5df24 | 21 | \date{November 4th 1998} |
a660d684 KB |
22 | |
23 | \makeindex | |
24 | \begin{document} | |
25 | \maketitle | |
26 | ||
27 | \pagestyle{fancyplain} | |
28 | \bibliographystyle{plain} | |
29 | \setheader{{\it CONTENTS}}{}{}{}{}{{\it CONTENTS}} | |
30 | \setfooter{\thepage}{}{}{}{}{\thepage} | |
31 | \pagenumbering{roman} | |
32 | \tableofcontents | |
33 | ||
34 | ||
35 | \chapter*{Copyright notice} | |
36 | \setheader{{\it COPYRIGHT}}{}{}{}{}{{\it COPYRIGHT}}% | |
37 | \setfooter{\thepage}{}{}{}{}{\thepage} | |
38 | ||
39 | \begin{center} | |
17240438 | 40 | Copyright (c) 1998 Julian Smart, Robert Roebling and other |
fc2171bd | 41 | members of the wxWidgets team\\ |
a660d684 KB |
42 | Portions (c) 1996 Artificial Intelligence Applications Institute\\ |
43 | \end{center} | |
44 | ||
45 | Permission to use, copy, modify, and distribute this software and its | |
46 | documentation for any purpose is hereby granted without fee, provided that the | |
47 | above copyright notice, author statement and this permission notice appear in | |
48 | all copies of this software and related documentation. | |
49 | ||
50 | THE SOFTWARE IS PROVIDED ``AS-IS'' AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, | |
51 | IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF | |
52 | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | |
53 | ||
54 | IN NO EVENT SHALL THE ARTIFICIAL INTELLIGENCE APPLICATIONS INSTITUTE OR THE | |
bd0df01f | 55 | UNIVERSITY OF EDINBURGH OR ANY MEMBERS OF THE WXWINDOWS TEAM BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR |
a660d684 KB |
56 | CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM |
57 | LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF | |
58 | DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH | |
59 | THE USE OR PERFORMANCE OF THIS SOFTWARE. | |
60 | ||
61 | \chapter{This manual} | |
62 | \pagenumbering{arabic}% | |
63 | \setheader{{\it CHAPTER \thechapter}}{}{}{}{}{{\it CHAPTER \thechapter}}% | |
64 | \setfooter{\thepage}{}{}{}{}{\thepage} | |
65 | ||
fc2171bd | 66 | wxWidgets is a class library for C++ providing GUI (Graphical User |
a660d684 KB |
67 | Interface) and other facilities on more than one platform. This document |
68 | gives detailed information about the classes and functions that make up | |
fc2171bd JS |
69 | the wxWidgets API (Application Programming Interface). Please refer to the |
70 | wxWidgets user manual for a more general description of wxWidgets. | |
a660d684 KB |
71 | |
72 | \input{classes.tex} | |
73 | \input{category.tex} | |
74 | \input{topics.tex} | |
75 | ||
76 | \addcontentsline{toc}{chapter}{Index} | |
77 | \setheader{{\it INDEX}}{}{}{}{}{{\it INDEX}}% | |
78 | \setfooter{\thepage}{}{}{}{}{\thepage} | |
79 | \printindex | |
80 | ||
81 | \end{document} | |
82 |