]> git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/mainpages/categories.h
move pages under 'mainpages' and also adopt new link anchor naming and use @itemdef...
[wxWidgets.git] / docs / doxygen / mainpages / categories.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: categories.h
3 // Purpose: Classes-by-category page of the Doxygen manual
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9
10 /*!
11
12 @page page_categories Classes by category
13
14 A classification of wxWidgets classes by category.
15
16 @beginInvisibleTable
17 <tr><td>
18 @li @ref page_categories_manwnd
19 @li @ref page_categories_miscwnd
20 @li @ref page_categories_cmndlg
21 @li @ref page_categories_ctrl
22 @li @ref page_categories_miscpickers
23 @li @ref page_categories_menus
24 @li @ref page_categories_wxaui
25 @li @ref page_categories_winlayout
26 @li @ref page_categories_dc
27 @li @ref page_categories_gdi
28 @li @ref page_categories_events
29 @li @ref page_categories_val
30 @li @ref page_categories_data
31 @li @ref page_categories_containers
32 @li @ref page_categories_smartpointers
33 @li @ref page_categories_rtti
34 @li @ref page_categories_logging
35 @li @ref page_categories_debugging
36 @li @ref page_categories_net
37 </td><td>
38 @li @ref page_categories_ipc
39 @li @ref page_categories_dvf
40 @li @ref page_categories_printing
41 @li @ref page_categories_dd
42 @li @ref page_categories_file
43 @li @ref page_categories_streams
44 @li @ref page_categories_threading
45 @li @ref page_categories_html
46 @li @ref page_categories_rich
47 @li @ref page_categories_stc
48 @li @ref page_categories_vfs
49 @li @ref page_categories_xml
50 @li @ref page_categories_xrc
51 @li @ref page_categories_help
52 @li @ref page_categories_media
53 @li @ref page_categories_gl
54 @li @ref page_categories_appmanagement
55 @li @ref page_categories_misc
56 </td></tr>
57 @endTable
58
59 <hr>
60
61
62
63 @section page_categories_manwnd Managed windows
64
65 There are several types of window that are directly controlled by the
66 window manager (such as MS Windows, or the Motif Window Manager).
67 Frames and dialogs are similar in wxWidgets, but only dialogs may be modal.
68
69 @li wxTopLevelWindow: Any top level window, dialog or frame
70 @li wxDialog: Dialog box
71 @li wxFrame: Normal frame
72 @li wxMDIChildFrame: MDI child frame
73 @li wxMDIParentFrame: MDI parent frame
74 @li wxMiniFrame: A frame with a small title bar
75 @li wxPropertySheetDialog: Property sheet dialog
76 @li wxSplashScreen: Splash screen class
77 @li wxTipWindow: Shows text in a small window
78 @li wxWizard: A wizard dialog
79
80 See also the @ref commondialogs_overview.
81
82
83 @section page_categories_miscwnd Miscellaneous windows
84
85 The following are a variety of classes that are derived from wxWindow.
86
87 @li wxPanel: A window whose colour changes according to current user settings
88 @li wxScrolledWindow: Window with automatically managed scrollbars
89 @li wxGrid: A grid (table) window
90 @li wxSplitterWindow: Window which can be split vertically or horizontally
91 @li wxStatusBar: Implements the status bar on a frame
92 @li wxToolBar: Toolbar class
93 @li wxNotebook: Notebook class
94 @li wxListbook: Similar to notebook but using list control
95 @li wxChoicebook: Similar to notebook but using choice control
96 @li wxTreebook: Similar to notebook but using tree control
97 @li wxSashWindow: Window with four optional sashes that can be dragged
98 @li wxSashLayoutWindow: Window that can be involved in an IDE-like layout arrangement
99 @li wxVScrolledWindow: As wxScrolledWindow but supports lines of variable height
100 @li wxWizardPage: A base class for the page in wizard dialog.
101 @li wxWizardPageSimple: A page in wizard dialog.
102
103
104 @section page_categories_cmndlg Common dialogs
105
106 @ref commondialogs_overview
107
108 Common dialogs are ready-made dialog classes which are frequently used
109 in an application.
110
111 @li wxDialog: Base class for common dialogs
112 @li wxColourDialog: Colour chooser dialog
113 @li wxDirDialog: Directory selector dialog
114 @li wxFileDialog: File selector dialog
115 @li wxFindReplaceDialog: Text search/replace dialog
116 @li wxMultiChoiceDialog: Dialog to get one or more selections from a list
117 @li wxSingleChoiceDialog: Dialog to get a single selection from a list and return the string
118 @li wxTextEntryDialog: Dialog to get a single line of text from the user
119 @li wxPasswordEntryDialog: Dialog to get a password from the user
120 @li wxFontDialog: Font chooser dialog
121 @li wxPageSetupDialog: Standard page setup dialog
122 @li wxPrintDialog: Standard print dialog
123 @li wxProgressDialog: Progress indication dialog
124 @li wxMessageDialog: Simple message box dialog
125 @li wxSymbolPickerDialog: Symbol selector dialog
126 @li wxRichTextFormattingDialog: A dialog for formatting the content of a wxRichTextCtrl
127 @li wxWizard: A wizard dialog.
128
129
130 @section page_categories_ctrl Controls
131
132 Typically, these are small windows which provide interaction with the user. Controls
133 that are not static can have wxValidator associated with them.
134
135 @li wxAnimationCtrl: A control to display an animation
136 @li wxControl: The base class for controls
137 @li wxButton: Push button control, displaying text
138 @li wxBitmapButton: Push button control, displaying a bitmap
139 @li wxBitmapComboBox: A combobox with bitmaps next to text items
140 @li wxToggleButton: A button which stays pressed when clicked by user.
141 @li wxBitmapToggleButton: A toggle button with bitmaps.
142 @li wxCalendarCtrl: Control showing an entire calendar month
143 @li wxCheckBox: Checkbox control
144 @li wxCheckListBox: A listbox with a checkbox to the left of each item
145 @li wxChoice: Choice control (a combobox without the editable area)
146 @li wxCollapsiblePane: A panel which can be shown/hidden by the user
147 @li wxComboBox: A choice with an editable area
148 @li wxComboCtrl: A combobox with application defined popup
149 @li wxDataViewCtrl: A control to tabular or tree like data
150 @li wxDataViewTreeCtrl: A specialized wxDataViewCtrl with wxTreeCtrl-like API
151 @li wxGauge: A control to represent a varying quantity, such as time remaining
152 @li wxGenericDirCtrl: A control for displaying a directory tree
153 @li wxHtmlListBox: An abstract class for creating listboxes showing HTML content
154 @li wxSimpleHtmlListBox: A listbox showing HTML content
155 @li wxStaticBox: A static, or group box for visually grouping related controls
156 @li wxListBox: A list of strings for single or multiple selection
157 @li wxListCtrl: A control for displaying lists of strings and/or icons, plus a multicolumn report view
158 @li wxListView: A simpler interface (fa&ccedil;ade) for wxListCtrl in report mode
159 @li wxOwnerDrawnComboBox: A combobox with owner-drawn list items
160 @li wxRichTextCtrl: Generic rich text editing control
161 @li wxTextCtrl: Single or multiline text editing control
162 @li wxTreeCtrl: Tree (hierarchy) control
163 @li wxScrollBar: Scrollbar control
164 @li wxSpinButton: A spin or `up-down' control
165 @li wxSpinCtrl: A spin control - i.e. spin button and text control
166 @li wxStaticText: One or more lines of non-editable text
167 @li wxHyperlinkCtrl: A static text which opens an URL when clicked
168 @li wxStaticBitmap: A control to display a bitmap
169 @li wxRadioBox: A group of radio buttons
170 @li wxRadioButton: A round button to be used with others in a mutually exclusive way
171 @li wxSlider: A slider that can be dragged by the user
172 @li wxVListBox: A listbox supporting variable height rows
173
174
175
176 @section page_categories_miscpickers Miscellaneous pickers
177
178 A picker control is a control whose appearance and behaviour is highly platform-dependent.
179
180 @li wxColourPickerCtrl: A control which allows the user to choose a colour
181 @li wxDirPickerCtrl: A control which allows the user to choose a directory
182 @li wxFilePickerCtrl: A control which allows the user to choose a file
183 @li wxFontPickerCtrl: A control which allows the user to choose a font
184 @li wxDatePickerCtrl: Small date picker control
185
186
187
188 @section page_categories_menus Menus
189
190 @li wxMenu: Displays a series of menu items for selection
191 @li wxMenuBar: Contains a series of menus for use with a frame
192 @li wxMenuItem: Represents a single menu item
193
194
195
196 @section page_categories_wxaui wxAUI - advanced user interface
197
198 This is a new set of classes for writing a customizable application
199 interface with built-in docking, floatable panes and a flexible
200 MDI-like interface. Further classes for custom notebooks with
201 draggable tabs etc. are in progress. See also @ref aui_overview.
202
203 @li wxAuiManager: The central class for managing the interface
204 @li wxAuiNotebook: A replacement notebook class with extra features
205 @li wxAuiPaneInfo: Describes a single pane
206 @li wxAuiDockArt: Art and metrics provider for customizing the docking user interface
207 @li wxAuiTabArt: Art and metrics provider for customizing the notebook user interface
208
209
210
211 @section page_categories_winlayout Window layout
212
213 There are two different systems for laying out windows (and dialogs in particular).
214 One is based upon so-called sizers and it requires less typing, thinking and calculating
215 and will in almost all cases produce dialogs looking equally well on all platforms, the
216 other is based on so-called constraints and is deprecated, though still available.
217
218 @ref sizer_overview describes sizer-based layout.
219
220 These are the classes relevant to sizer-based layout.
221
222 @li wxSizer: Abstract base class
223 @li wxGridSizer: A sizer for laying out windows in a grid with all fields having the same size
224 @li wxFlexGridSizer: A sizer for laying out windows in a flexible grid
225 @li wxGridBagSizer: Another grid sizer that lets you specify the cell an item is in, and items can span rows and/or columns.
226 @li wxBoxSizer: A sizer for laying out windows in a row or column
227 @li wxStaticBoxSizer: Same as wxBoxSizer, but with a surrounding static box
228 @li wxWrapSizer: A sizer which wraps its child controls as size permits
229
230 @ref constraints_overview describes constraints-based layout.
231
232 These are the classes relevant to constraints-based window layout.
233
234 @li wxIndividualLayoutConstraint: Represents a single constraint dimension
235 @li wxLayoutConstraints: Represents the constraints for a window class
236
237 Other layouting classes:
238
239 @li wxLayoutAlgorithm: An alternative window layout facility
240
241
242 @section page_categories_dc Device contexts
243
244 @ref dc_overview
245
246 Device contexts are surfaces that may be drawn on, and provide an
247 abstraction that allows parameterisation of your drawing code
248 by passing different device contexts.
249
250 @li wxAutoBufferedPaintDC: A helper device context for double buffered drawing inside @b OnPaint.
251 @li wxBufferedDC: A helper device context for double buffered drawing.
252 @li wxBufferedPaintDC: A helper device context for double buffered drawing inside @b OnPaint.
253 @li wxClientDC: A device context to access the client area outside @b OnPaint events
254 @li wxPaintDC: A device context to access the client area inside @b OnPaint events
255 @li wxWindowDC: A device context to access the non-client area
256 @li wxScreenDC: A device context to access the entire screen
257 @li wxDC: The device context base class
258 @li wxMemoryDC: A device context for drawing into bitmaps
259 @li wxMetafileDC: A device context for drawing into metafiles
260 @li wxMirrorDC: A proxy device context allowing for simple mirroring.
261 @li wxPostScriptDC: A device context for drawing into PostScript files
262 @li wxPrinterDC: A device context for drawing to printers
263
264
265 @section page_categories_gdi Graphics device interface
266
267 @ref bitmap_overview
268
269 These classes are related to drawing on device contexts and windows.
270
271 @li wxColour: Represents the red, blue and green elements of a colour
272 @li wxDCClipper: Wraps the operations of setting and destroying the clipping region
273 @li wxBitmap: Represents a bitmap
274 @li wxBrush: Used for filling areas on a device context
275 @li wxBrushList: The list of previously-created brushes
276 @li wxCursor: A small, transparent bitmap representing the cursor
277 @li wxFont: Represents fonts
278 @li wxFontList: The list of previously-created fonts
279 @li wxIcon: A small, transparent bitmap for assigning to frames and drawing on device contexts
280 @li wxImage: A platform-independent image class
281 @li wxImageList: A list of images, used with some controls
282 @li wxMask: Represents a mask to be used with a bitmap for transparent drawing
283 @li wxPen: Used for drawing lines on a device context
284 @li wxPenList: The list of previously-created pens
285 @li wxPalette: Represents a table of indices into RGB values
286 @li wxRegion: Represents a simple or complex region on a window or device context
287 @li wxRendererNative: Abstracts high-level drawing primitives
288
289
290 @section page_categories_events Events
291
292 @ref eventhandling_overview
293
294 An event object contains information about a specific event. Event handlers
295 (usually member functions) have a single, event argument.
296
297 @li wxActivateEvent: A window or application activation event
298 @li wxCalendarEvent: Used with wxCalendarCtrl
299 @li wxCalculateLayoutEvent: Used to calculate window layout
300 @li wxChildFocusEvent: A child window focus event
301 @li wxClipboardTextEvent: A clipboard copy/cut/paste treebook event event
302 @li wxCloseEvent: A close window or end session event
303 @li wxCommandEvent: An event from a variety of standard controls
304 @li wxContextMenuEvent: An event generated when the user issues a context menu command
305 @li wxDateEvent: Used with wxDatePickerCtrl
306 @li wxDialUpEvent: Event send by wxDialUpManager
307 @li wxDropFilesEvent: A drop files event
308 @li wxEraseEvent: An erase background event
309 @li wxEvent: The event base class
310 @li wxFindDialogEvent: Event sent by wxFindReplaceDialog
311 @li wxFocusEvent: A window focus event
312 @li wxKeyEvent: A keypress event
313 @li wxIconizeEvent: An iconize/restore event
314 @li wxIdleEvent: An idle event
315 @li wxInitDialogEvent: A dialog initialisation event
316 @li wxJoystickEvent: A joystick event
317 @li wxListEvent: A list control event
318 @li wxMaximizeEvent: A maximize event
319 @li wxMenuEvent: A menu event
320 @li wxMouseCaptureChangedEvent: A mouse capture changed event
321 @li wxMouseCaptureLostEvent: A mouse capture lost event
322 @li wxMouseEvent: A mouse event
323 @li wxMoveEvent: A move event
324 @li wxNavigationKeyEvent: An event set by navigation keys such as tab
325 @li wxNotebookEvent: A notebook control event
326 @li wxNotifyEvent: A notification event, which can be vetoed
327 @li wxPaintEvent: A paint event
328 @li wxProcessEvent: A process ending event
329 @li wxQueryLayoutInfoEvent: Used to query layout information
330 @li wxRichTextEvent: A rich text editing event
331 @li wxScrollEvent: A scroll event from sliders, stand-alone scrollbars and spin buttons
332 @li wxScrollWinEvent: A scroll event from scrolled windows
333 @li wxSizeEvent: A size event
334 @li wxSocketEvent: A socket event
335 @li wxSpinEvent: An event from wxSpinButton
336 @li wxSplitterEvent: An event from wxSplitterWindow
337 @li wxSysColourChangedEvent: A system colour change event
338 @li wxTimerEvent: A timer expiration event
339 @li wxTreebookEvent: A treebook control event
340 @li wxTreeEvent: A tree control event
341 @li wxUpdateUIEvent: A user interface update event
342 @li wxWindowCreateEvent: A window creation event
343 @li wxWindowDestroyEvent: A window destruction event
344 @li wxWizardEvent: A wizard event
345
346
347 @section page_categories_val Validators
348
349 @ref validator_overview
350
351 These are the window validators, used for filtering and validating
352 user input.
353
354 @li wxValidator: Base validator class
355 @li wxTextValidator: Text control validator class
356 @li wxGenericValidator: Generic control validator class
357
358
359 @section page_categories_data Data structures
360
361 These are the data structure classes supported by wxWidgets.
362
363 @li wxCmdLineParser: Command line parser class
364 @li wxDateSpan: A logical time interval.
365 @li wxDateTime: A class for date/time manipulations
366 @li wxLongLong: A portable 64 bit integer type
367 @li wxObject: The root class for most wxWidgets classes
368 @li wxPathList: A class to help search multiple paths
369 @li wxPoint: Representation of a point
370 @li wxRect: A class representing a rectangle
371 @li wxRegEx: Regular expression support
372 @li wxRegion: A class representing a region
373 @li wxString: A string class
374 @li wxStringTokenizer: A class for interpreting a string as a list of tokens or words
375 @li wxRealPoint: Representation of a point using floating point numbers
376 @li wxSize: Representation of a size
377 @li wxTimeSpan: A time interval.
378 @li wxURI: Represents a Uniform Resource Identifier
379 @li wxVariant: A class for storing arbitrary types that may change at run-time
380
381
382 @section page_categories_containers Container classes
383
384 @ref container_overview
385
386 These are classes, templates and class macros are used by wxWidgets. Most
387 of these classes provide a subset or almost complete STL API.
388
389 @li wxArray<T>: A type-safe dynamic array implementation (macro based)
390 @li wxArrayString: An efficient container for storing wxString objects
391 @li wxHashMap<T>: A type-safe hash map implementation (macro based)
392 @li wxHashSet<T>: A type-safe hash set implementation(macro based)
393 @li wxHashTable: A simple hash table implementation (deprecated, use wxHashMap)
394 @li wxList<T>: A type-safe linked list implementation (macro based)
395 @li wxVector<T>: Template base vector implementation identical to std::vector
396
397
398 @section page_categories_smartpointers Smart pointers
399
400 wxWidgets provides a few smart pointer class templates.
401
402 @li wxObjectDataPtr<T>: A shared pointer (using intrusive reference counting)
403 @li wxScopedPtr<T>: A scoped pointer
404 @li wxSharedPtr<T>: A shared pointer (using non-intrusive reference counting)
405 @li wxWeakRef<T>: A weak reference
406
407
408 @section page_categories_rtti Run-time class information system
409
410 @ref runtimeclass_overview
411
412 wxWidgets supports run-time manipulation of class information, and dynamic
413 creation of objects given class names.
414
415 @li wxClassInfo: Holds run-time class information
416 @li wxObject: Root class for classes with run-time information
417 @li RTTI macros: Macros for manipulating run-time information
418
419
420 @section page_categories_logging Logging features
421
422 @ref log_overview
423
424 wxWidgets provides several classes and functions for message logging.
425 Please see the @ref log_overview for more details.
426
427 @li wxLog: The base log class
428 @li wxLogStderr: Log messages to a C STDIO stream
429 @li wxLogStream: Log messages to a C++ iostream
430 @li wxLogTextCtrl: Log messages to a wxTextCtrl
431 @li wxLogWindow: Log messages to a log frame
432 @li wxLogGui: Default log target for GUI programs
433 @li wxLogNull: Temporarily suppress message logging
434 @li wxLogChain: Allows to chain two log targets
435 @li wxLogInterposer: Allows to filter the log messages
436 @li wxLogInterposerTemp: Allows to filter the log messages
437 @li wxStreamToTextRedirector: Allows to redirect output sent to @c cout to a wxTextCtrl
438 @li Log functions: Error and warning logging functions
439
440
441 @section page_categories_debugging Debugging features
442
443 @ref debugging_overview
444
445 wxWidgets supports some aspects of debugging an application through
446 classes, functions and macros.
447
448 @li wxDebugContext: Provides memory-checking facilities
449 @li Debugging macros: Debug macros for assertion and checking
450 @li WXDEBUG_NEW: Use this macro to give further debugging information
451 @li wxDebugReport: Base class for creating debug reports in case of a program crash.
452 @li wxDebugReportCompress: Class for creating compressed debug reports.
453 @li wxDebugReportUpload: Class for uploading compressed debug reports via HTTP.
454 @li wxDebugReportPreview: Abstract base class for previewing the contents of a debug report.
455 @li wxDebugReportPreviewStd: Standard implementation of wxDebugReportPreview.
456
457
458 @section page_categories_net Networking classes
459
460 wxWidgets provides its own classes for socket based networking.
461
462 @li wxDialUpManager: Provides functions to check the status of network connection and to establish one
463 @li wxIPV4address: Represents an Internet address
464 @li wxIPaddress: Represents an Internet address
465 @li wxSocketBase: Represents a socket base object
466 @li wxSocketClient: Represents a socket client
467 @li wxSocketServer: Represents a socket server
468 @li wxSocketEvent: A socket event
469 @li wxFTP: FTP protocol class
470 @li wxHTTP: HTTP protocol class
471 @li wxURL: Represents a Universal Resource Locator
472
473
474
475 @section page_categories_ipc Interprocess communication
476
477 @ref ipc_overview
478
479 wxWidgets provides simple interprocess communications facilities
480 based on Windows DDE, but available on most platforms using TCP.
481
482 @li wxClient, wxDDEClient: Represents a client
483 @li wxConnection, wxDDEConnection: Represents the connection between a client and a server
484 @li wxServer, wxDDEServer: Represents a server
485
486
487
488 @section page_categories_dvf Document-view framework
489
490 @ref docview_overview
491
492 wxWidgets supports a document/view framework which provides
493 housekeeping for a document-centric application.
494
495 @li wxDocument: Represents a document
496 @li wxView: Represents a view
497 @li wxDocTemplate: Manages the relationship between a document class and a view class
498 @li wxDocManager: Manages the documents and views in an application
499 @li wxDocChildFrame: A child frame for showing a document view
500 @li wxDocParentFrame: A parent frame to contain views
501 <!-- %@li wxMDIDocChildFrame: An MDI child frame for showing a document view
502 %@li wxMDIDocParentFrame: An MDI parent frame to contain views -->
503
504
505 @section page_categories_printing Printing framework
506
507 @ref printing_overview
508
509 A printing and previewing framework is implemented to
510 make it relatively straightforward to provide document printing
511 facilities.
512
513 @li wxPreviewFrame: Frame for displaying a print preview
514 @li wxPreviewCanvas: Canvas for displaying a print preview
515 @li wxPreviewControlBar: Standard control bar for a print preview
516 @li wxPrintDialog: Standard print dialog
517 @li wxPageSetupDialog: Standard page setup dialog
518 @li wxPrinter: Class representing the printer
519 @li wxPrinterDC: Printer device context
520 @li wxPrintout: Class representing a particular printout
521 @li wxPrintPreview: Class representing a print preview
522 @li wxPrintData: Represents information about the document being printed
523 @li wxPrintDialogData: Represents information about the print dialog
524 @li wxPageSetupDialogData: Represents information about the page setup dialog
525
526
527
528 @section page_categories_dd Drag and drop and clipboard classes
529
530 @ref dnd_overview
531
532 @li wxDataObject: Data object class
533 @li wxDataFormat: Represents a data format
534 @li wxTextDataObject: Text data object class
535 @li wxFileDataObject: File data object class
536 @li wxBitmapDataObject: Bitmap data object class
537 @li wxURLDataObject: URL data object class
538 @li wxCustomDataObject: Custom data object class
539 @li wxClipboard: Clipboard class
540 @li wxDropTarget: Drop target class
541 @li wxFileDropTarget: File drop target class
542 @li wxTextDropTarget: Text drop target class
543 @li wxDropSource: Drop source class
544
545
546 @section page_categories_file File related classes
547
548 wxWidgets has several small classes to work with disk files, see wxfileoverview for more details.
549
550 @li wxFileName: Operations with the file name and attributes
551 @li wxDir: Class for enumerating files/subdirectories.
552 @li wxDirTraverser: Class used together with wxDir for recursively enumerating the files/subdirectories
553 @li wxFile: Low-level file input/output class.
554 @li wxFFile: Another low-level file input/output class.
555 @li wxTempFile: Class to safely replace an existing file
556 @li wxTextFile: Class for working with text files as with arrays of lines
557 @li wxStandardPaths: Paths for standard directories
558 @li wxPathList: A class to help search multiple paths
559
560
561 @section page_categories_streams Stream classes
562
563 wxWidgets has its own set of stream classes, as an alternative to often buggy standard stream
564 libraries, and to provide enhanced functionality.
565
566 @li wxStreamBase: Stream base class
567 @li wxStreamBuffer: Stream buffer class
568 @li wxInputStream: Input stream class
569 @li wxOutputStream: Output stream class
570 @li wxCountingOutputStream: Stream class for querying what size a stream would have.
571 @li wxFilterInputStream: Filtered input stream class
572 @li wxFilterOutputStream: Filtered output stream class
573 @li wxBufferedInputStream: Buffered input stream class
574 @li wxBufferedOutputStream: Buffered output stream class
575 @li wxMemoryInputStream: Memory input stream class
576 @li wxMemoryOutputStream: Memory output stream class
577 @li wxDataInputStream: Platform-independent binary data input stream class
578 @li wxDataOutputStream: Platform-independent binary data output stream class
579 @li wxTextInputStream: Platform-independent text data input stream class
580 @li wxTextOutputStream: Platform-independent text data output stream class
581 @li wxFileInputStream: File input stream class
582 @li wxFileOutputStream: File output stream class
583 @li wxFFileInputStream: Another file input stream class
584 @li wxFFileOutputStream: Another file output stream class
585 @li wxTempFileOutputStream: Stream to safely replace an existing file
586 @li wxStringInputStream: String input stream class
587 @li wxStringOutputStream: String output stream class
588 @li wxZlibInputStream: Zlib and gzip (compression) input stream class
589 @li wxZlibOutputStream: Zlib and gzip (compression) output stream class
590 @li wxZipInputStream: Input stream for reading from ZIP archives
591 @li wxZipOutputStream: Output stream for writing from ZIP archives
592 @li wxTarInputStream: Input stream for reading from tar archives
593 @li wxTarOutputStream: Output stream for writing from tar archives
594 @li wxSocketInputStream: Socket input stream class
595 @li wxSocketOutputStream: Socket output stream class
596
597
598 @section page_categories_threading Threading classes
599
600 @ref thread_overview
601
602 wxWidgets provides a set of classes to make use of the native thread
603 capabilities of the various platforms.
604
605 @li wxThread: Thread class
606 @li wxThreadHelper: Manages background threads easily
607 @li wxMutex: Mutex class
608 @li wxMutexLocker: Mutex locker utility class
609 @li wxCriticalSection: Critical section class
610 @li wxCriticalSectionLocker: Critical section locker utility class
611 @li wxCondition: Condition class
612 @li wxSemaphore: Semaphore class
613
614
615 @section page_categories_html HTML classes
616
617 wxWidgets provides a set of classes to display text in HTML format. These
618 class include a help system based on the HTML widget.
619
620 @li wxHtmlHelpController: HTML help controller class
621 @li wxHtmlWindow: HTML window class
622 @li wxHtmlEasyPrinting: Simple class for printing HTML
623 @li wxHtmlPrintout: Generic HTML wxPrintout class
624 @li wxHtmlParser: Generic HTML parser class
625 @li wxHtmlTagHandler: HTML tag handler, pluginable into wxHtmlParser
626 @li wxHtmlWinParser: HTML parser class for wxHtmlWindow
627 @li wxHtmlWinTagHandler: HTML tag handler, pluginable into wxHtmlWinParser
628
629
630 @section page_categories_rich Rich text classes
631
632 wxWidgets provides a set of generic classes to edit and print simple rich text with character
633 and paragraph formatting.
634
635 @li wxTextAttr: Attributes specifying text styling.
636 @li wxRichTextCtrl: A rich text control.
637 @li wxRichTextBuffer: The content of a rich text control.
638 @li wxRichTextCharacterStyleDefinition: Definition of character styling.
639 @li wxRichTextParagraphStyleDefinition: Definition of paragraph styling.
640 @li wxRichTextListStyleDefinition: Definition of list styling.
641 @li wxRichTextStyleSheet: A set of style definitions.
642 @li wxRichTextStyleComboCtrl: A drop-down control for applying styles.
643 @li wxRichTextStyleListBox: A listbox for applying styles.
644 @li wxRichTextStyleOrganiserDialog: A dialog that can be used for managing or browsing styles.
645 @li wxRichTextEvent: A rich text event.
646 @li wxRichTextRange: Specification for ranges in a rich text control or buffer.
647 @li wxRichTextFileHandler: File handler base class.
648 @li wxRichTextHTMLHandler: A handler for converting rich text to HTML.
649 @li wxRichTextXMLHandler: A handler for loading and saving rich text XML.
650 @li wxRichTextFormattingDialog: A dialog for rich text formatting.
651 @li wxRichTextPrinting: A class for easy printing of rich text buffers.
652 @li wxRichTextPrintout: A class used by wxRichTextPrinting.
653 @li wxRichTextHeaderFooterData: Header and footer data specification.
654
655
656 @section page_categories_stc Scintilla text editor classes
657
658 wxWidgets also provides a wrapper around the Scintilla text editor control, which is
659 a control for plain-text editing with support for highlighting, smart indentation, etc.
660
661 @li wxStyledTextCtrl: A wxWidgets implementation of the Scintilla source code editing component.
662
663
664 @section page_categories_vfs Virtual file system classes
665
666 wxWidgets provides a set of classes that implement an extensible virtual file system,
667 used internally by the HTML classes.
668
669 @li wxFSFile: Represents a file in the virtual file system
670 @li wxFileSystem: Main interface for the virtual file system
671 @li wxFileSystemHandler: Class used to announce file system type
672
673
674 @section page_categories_xml XML classes
675
676 @li wxXmlDocument: A class to parse XML files
677 @li wxXmlNode: A class which represents XML nodes
678 @li wxXmlAttribute: A class which represent an XML attribute
679
680
681 @section page_categories_xrc XML-based resource system classes
682
683 @ref xrc_overview
684
685 Resources allow your application to create controls and other user interface elements
686 from specifications stored in an XML format.
687
688 @li wxXmlResource: The main class for working with resources
689 @li wxXmlResourceHandler: The base class for XML resource handlers
690
691
692 @section page_categories_help Online help
693
694 @li wxHelpController: Family of classes for controlling help windows
695 @li wxHtmlHelpController: HTML help controller class
696 @li wxContextHelp: Class to put application into context-sensitive help mode
697 @li wxContextHelpButton: Button class for putting application into context-sensitive help mode
698 @li wxHelpProvider: Abstract class for context-sensitive help provision
699 @li wxSimpleHelpProvider: Class for simple context-sensitive help provision
700 @li wxHelpControllerHelpProvider: Class for context-sensitive help provision via a help controller
701 @li wxToolTip: Class implementing tooltips
702
703
704 @section page_categories_media Multimedia classes
705
706 @li wxMediaCtrl: Display multimedia contents.
707
708
709 @section page_categories_gl OpenGL classes
710
711 @li wxGLCanvas: Canvas that you can render OpenGL calls to.
712 @li wxGLContext: Class to ease sharing of OpenGL data resources.
713
714
715 @section page_categories_appmanagement Application and process-management classes
716
717 @li wxApp: Application class
718 @li wxCmdLineParser: Command line parser class
719 @li wxDllLoader: Class to work with shared libraries.
720 @li wxProcess: Process class
721
722
723 @section page_categories_misc Miscellaneous
724
725 @li wxCaret: A caret (cursor) object
726 @li wxConfigBase: Classes for reading/writing the configuration settings
727 @li wxTimer: Timer class
728 @li wxStopWatch: Stop watch class
729 @li wxMimeTypesManager: MIME-types manager class
730 @li wxSystemSettings: System settings class for obtaining various global parameters
731 @li wxSystemOptions: System options class for run-time configuration
732 @li wxAcceleratorTable: Accelerator table
733 @li wxAutomationObject: OLE automation class
734 @li wxFontMapper: Font mapping, finding suitable font for given encoding
735 @li wxEncodingConverter: Encoding conversions
736 @li wxCalendarDateAttr: Used with wxCalendarCtrl
737 @li wxQuantize: Class to perform quantization, or colour reduction
738 @li wxSingleInstanceChecker: Check that only single program instance is running
739
740 */