]>
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 license
7 /////////////////////////////////////////////////////////////////////////////
12 @page page_libs Libraries list
14 wxWidgets can be built either as a single large
15 library (this is called the <em>monolithic build</em>) or as several smaller
16 libraries (<em>multilib build</em>}). Multilib build is the default.
18 wxWidgets library is divided into libraries briefly described below. This
19 diagram show dependencies between them:
23 Please note that arrows indicate the "depends from" relation and that
24 all blue boxes depend from @ref page_libs_wxbase library (i.e. they are non-GUI libraries),
25 and all green boxes depend from @ref page_libs_wxcore library (i.e. they are GUI libraries).
29 IMPORTANT: the @sections below don't have the page_libraries_ prefix because
30 all API pages link to them and using that prefix all times would
35 @section page_libs_wxbase wxBase
37 Every wxWidgets application must link against this library. It contains
38 mandatory classes that any wxWidgets code depends on (e.g. wxString) and
39 portability classes that abstract differences between platforms.
40 wxBase can be used to develop console mode applications,
41 it does not require any GUI libraries or running X Window System on Unix.
44 @section page_libs_wxcore wxCore
46 Basic GUI classes such as GDI classes or controls are in this library. All
47 wxWidgets GUI applications must link against this library, only console mode
50 Requires @ref page_libs_wxbase.
53 @section page_libs_wxaui wxAui
55 This contains the Advanced User Interface docking library.
57 Requires @ref page_libs_wxadv, @ref page_libs_wxhtml, @ref page_libs_wxxml,
58 @ref page_libs_wxcore, @ref page_libs_wxbase.
61 @section page_libs_wxnet wxNet
63 Classes for network access:
65 @li wxSocket classes (wxSocketClient, wxSocketServer and related classes)
66 @li wxSocketOutputStream and wxSocketInputStream
67 @li sockets-based IPC classes (wxTCPServer, wxTCPClient and wxTCPConnection)
69 @li wxInternetFSHandler (a wxFileSystem handler)
71 Requires @ref page_libs_wxbase.
74 @section page_libs_wxrichtext wxRichText
76 This contains generic rich text control functionality.
78 Requires @ref page_libs_wxadv, @ref page_libs_wxhtml, @ref page_libs_wxxml,
79 @ref page_libs_wxcore, @ref page_libs_wxbase.
82 @section page_libs_wxxml wxXML
84 This library contains simple classes for parsing XML documents.
86 Requires @ref page_libs_wxbase.
89 @section page_libs_wxadv wxAdvanced
91 Advanced or rarely used GUI classes:
101 @li wxSashLayoutWindow
105 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
108 @section page_libs_wxmedia wxMedia
110 Miscellaneous classes related to multimedia. Currently this library only
111 contains wxMediaCtrl but more classes will be added in
114 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
117 @section page_libs_wxgl wxGL
119 This library contains wxGLCanvas class for integrating
120 OpenGL library with wxWidgets. Unlike all others, this library is {\em not}
121 part of the monolithic library, it is always built as separate library.
123 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
126 @section page_libs_wxhtml wxHTML
128 Simple HTML renderer and other @ref overview_html are contained in this library,
129 as well as wxHtmlHelpController, wxBestHelpController and wxHtmlListBox.
131 Requires @ref page_libs_wxcore and @ref page_libs_wxbase.
134 @section page_libs_wxqa wxQA
136 This is the library containing extra classes for quality assurance. Currently
137 it only contains wxDebugReport and related classes,
138 but more will be added to it in the future.
140 Requires @ref page_libs_wxxml, @ref page_libs_wxcore, @ref page_libs_wxbase.
143 @section page_libs_wxxrc wxXRC
145 This library contains wxXmlResource class that
146 provides access to XML resource files in XRC format.
148 Requires @ref page_libs_wxadv, @ref page_libs_wxhtml, @ref page_libs_wxxml,
149 @ref page_libs_wxcore, @ref page_libs_wxbase.
152 @section page_libs_wxstc wxSTC
154 STC (Styled Text Control) is a wrapper around Scintilla, a syntax-highlighting text editor.
155 See http://www.scintilla.org for more info about Scintilla.
157 Requires @ref page_libs_wxcore, @ref page_libs_wxbase.