]>
git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/libs.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Libraries page of the Doxygen manual
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 @page libraries_page 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 wxBase library (i.e. they are non-GUI libraries),
25 and all green boxes depend from wxCore library (i.e. they are GUI libraries).
28 @section wxBase wxBase
30 Every wxWidgets application must link against this library. It contains
31 mandatory classes that any wxWidgets code depends on (e.g. wxString) and
32 portability classes that abstract differences between platforms.
33 wxBase can be used to develop console mode applications, it does not require
34 any GUI libraries or running X Window System on Unix.
37 @section wxCore wxCore
39 Basic GUI classes such as GDI classes or controls are in this library. All
40 wxWidgets GUI applications must link against this library, only console mode
48 This contains the Advanced User Interface docking library.
50 Requires wxAdvanced, wxHTML, wxXML, wxCore, wxBase.
55 Classes for network access:
57 @li wxSocket classes (wxSocketClient, wxSocketServer and related classes)
58 @li wxSocketOutputStream and wxSocketInputStream
59 @li sockets-based IPC classes (wxTCPServer, wxTCPClient and wxTCPConnection)
61 @li wxInternetFSHandler (a wxFileSystem handler)
66 @section wxRichText wxRichText
68 This contains generic rich text control functionality.
70 Requires wxAdvanced, wxHTML, wxXML, wxCore, wxBase.
75 This library contains simple classes for parsing XML documents.
80 @section wxAdvanced wxAdvanced
82 Advanced or rarely used GUI classes:
92 @li wxSashLayoutWindow
96 Requires wxCore and wxBase.
99 @section wxMedia wxMedia
101 Miscellaneous classes related to multimedia. Currently this library only
102 contains wxMediaCtrl but more classes will be added in
105 Requires wxCore and wxBase.
110 This library contains wxGLCanvas class for integrating
111 OpenGL library with wxWidgets. Unlike all others, this library is {\em not}
112 part of the monolithic library, it is always built as separate library.
114 Requires wxCore and wxBase.
117 @section wxHTML wxHTML
119 Simple HTML renderer and other @ref html_overview are contained in this library,
120 as well as wxHtmlHelpController, wxBestHelpController and wxHtmlListBox.
122 Requires wxCore and wxBase.
127 This is the library containing extra classes for quality assurance. Currently
128 it only contains wxDebugReport and related classes,
129 but more will be added to it in the future.
131 Requires wxXML, wxCore, wxBase.
136 This library contains wxXmlResource class that
137 provides access to XML resource files in XRC format
139 Requires wxAdvanced, wxHTML, wxXML, wxCore, wxBase.
144 STC (Styled Text Control) is a wrapper around Scintilla, a syntax-highlighting text editor.
146 Requires wxCore, wxBase.