]>
git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/mainpages/libs.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Libraries page of the Doxygen manual
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
11 @page page_libs Library List
13 wxWidgets can be built either as a single large library (this is called a
14 <em>monolithic build</em>) or as several smaller libraries
15 (<em>multilib build</em>). Multilib build is the default.
17 wxWidgets library is divided into libraries briefly described below. This
18 diagram shows the dependencies between them:
23 node [shape = ellipse, fontname = "Courier", fontsize = 10, style = filled];
25 wxBase [URL = "\ref page_libs_wxbase"];
27 wxCore [fillcolor = deepskyblue, URL = "\ref page_libs_wxcore"];
28 wxNet [fillcolor = deepskyblue, URL = "\ref page_libs_wxnet"];
29 wxXML [fillcolor = deepskyblue, URL = "\ref page_libs_wxxml"];
31 wxAdvanced [fillcolor = green, URL = "\ref page_libs_wxadv"];
32 wxAUI [fillcolor = green, URL = "\ref page_libs_wxaui"];
33 wxGL [fillcolor = green, URL = "\ref page_libs_wxgl"];
34 wxHTML [fillcolor = green, URL = "\ref page_libs_wxhtml"];
35 wxMedia [fillcolor = green, URL = "\ref page_libs_wxmedia"];
36 wxPropertyGrid [fillcolor = green, URL = "\ref page_libs_wxpropgrid"];
37 wxQA [fillcolor = green, URL = "\ref page_libs_wxqa"];
38 wxRibbon [fillcolor = green, URL = "\ref page_libs_wxribbon"];
39 wxRichText [fillcolor = green, URL = "\ref page_libs_wxrichtext"];
40 wxSTC [fillcolor = green, URL = "\ref page_libs_wxstc"];
41 wxXRC [fillcolor = green, URL = "\ref page_libs_wxxrc"];
48 wxAUI -> wxAdvanced; wxAUI -> wxHTML; wxAUI -> wxXML;
52 wxPropertyGrid -> wxAdvanced;
53 wxQA -> wxCore; wxQA -> wxXML;
55 wxRichText -> wxAdvanced; wxRichText -> wxHTML; wxRichText -> wxXML;
57 wxXRC -> wxAdvanced; wxXRC -> wxHTML; wxXRC -> wxXML;
61 Please note that arrows indicate the "depends from" relation and that all blue
62 libraries depend on the @ref page_libs_wxbase library (i.e. they are non-GUI
63 libraries), and all green libraries depend on the @ref page_libs_wxcore library
64 (i.e. they are GUI libraries).
67 @section page_libs_wxbase wxBase
69 Every wxWidgets application must link against this library. It contains
70 mandatory classes that any wxWidgets code depends on (e.g. wxString) and
71 portability classes that abstract differences between platforms. wxBase can be
72 used to develop console mode applications, it does not require any GUI
73 libraries or running X Window System on Unix.
76 @section page_libs_wxcore wxCore
78 Basic GUI classes such as GDI classes or controls are in this library. All
79 wxWidgets GUI applications must link against this library, only console mode
82 Requires @ref page_libs_wxbase.
85 @section page_libs_wxaui wxAui
87 This contains the Advanced User Interface docking library.
89 Requires @ref page_libs_wxadv, @ref page_libs_wxhtml, @ref page_libs_wxxml,
90 @ref page_libs_wxcore, @ref page_libs_wxbase.
93 @section page_libs_wxnet wxNet
95 Classes for network access:
97 @li wxSocket classes (wxSocketClient, wxSocketServer and related classes)
98 @li wxSocketOutputStream and wxSocketInputStream
99 @li sockets-based IPC classes (wxTCPServer, wxTCPClient and wxTCPConnection)
101 @li wxInternetFSHandler (a wxFileSystem handler)
103 Requires @ref page_libs_wxbase.
106 @section page_libs_wxpropgrid wxPropertyGrid
108 This contains the wxPropertyGrid control.
110 Requires @ref page_libs_wxadv, @ref page_libs_wxcore, @ref page_libs_wxbase.
113 @section page_libs_wxribbon wxRibbon
115 This contains the Ribbon User Interface components library.
117 Requires @ref page_libs_wxcore, @ref page_libs_wxbase.
120 @section page_libs_wxrichtext wxRichText
122 This contains generic rich text control functionality.
124 Requires @ref page_libs_wxadv, @ref page_libs_wxhtml, @ref page_libs_wxxml,
125 @ref page_libs_wxcore, @ref page_libs_wxbase.
128 @section page_libs_wxxml wxXML
130 This library contains simple classes for parsing XML documents.
132 Requires @ref page_libs_wxbase.
135 @section page_libs_wxadv wxAdvanced
137 Advanced or rarely used GUI classes:
142 @li wxLayoutAlgorithm
147 @li wxSashLayoutWindow
151 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
154 @section page_libs_wxmedia wxMedia
156 Miscellaneous classes related to multimedia. Currently this library only
157 contains wxMediaCtrl but more classes will be added in the future.
159 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
162 @section page_libs_wxgl wxGL
164 This library contains wxGLCanvas class for integrating OpenGL library with
165 wxWidgets. Unlike all others, this library is @b not part of the monolithic
166 library, it is always built as separate library.
168 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
171 @section page_libs_wxhtml wxHTML
173 Simple HTML renderer and other @ref overview_html are contained in this
174 library, as well as wxHtmlHelpController, wxBestHelpController and
177 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
180 @section page_libs_wxqa wxQA
182 This is the library containing extra classes for quality assurance. Currently
183 it only contains wxDebugReport and related classes, but more will be added to
186 Requires @ref page_libs_wxxml, @ref page_libs_wxcore, @ref page_libs_wxbase.
189 @section page_libs_wxxrc wxXRC
191 This library contains wxXmlResource class that provides access to XML resource
194 Requires @ref page_libs_wxadv, @ref page_libs_wxhtml, @ref page_libs_wxxml,
195 @ref page_libs_wxcore, @ref page_libs_wxbase.
198 @section page_libs_wxstc wxSTC
200 STC (Styled Text Control) is a wrapper around Scintilla, a syntax-highlighting
201 text editor. See <http://www.scintilla.org/> for more info about Scintilla.
203 Requires @ref page_libs_wxcore, @ref page_libs_wxbase.