keep the list of event classes in a single place
[wxWidgets.git] / docs / doxygen / mainpages / cat_classes.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cat_classes.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_class_cat Classes by category
13
14 A classification of wxWidgets classes by category.
15
16 @beginInvisibleTable
17 <tr><td>
18 @li @ref page_class_cat_manwnd
19 @li @ref page_class_cat_miscwnd
20 @li @ref page_class_cat_cmndlg
21 @li @ref page_class_cat_ctrl
22 @li @ref page_class_cat_miscpickers
23 @li @ref page_class_cat_menus
24 @li @ref page_class_cat_wxaui
25 @li @ref page_class_cat_winlayout
26 @li @ref page_class_cat_dc
27 @li @ref page_class_cat_gdi
28 @li @ref page_class_cat_events
29 @li @ref page_class_cat_val
30 @li @ref page_class_cat_data
31 @li @ref page_class_cat_containers
32 @li @ref page_class_cat_smartpointers
33 @li @ref page_class_cat_rtti
34 @li @ref page_class_cat_logging
35 @li @ref page_class_cat_debugging
36 @li @ref page_class_cat_net
37 </td><td>
38 @li @ref page_class_cat_ipc
39 @li @ref page_class_cat_dvf
40 @li @ref page_class_cat_printing
41 @li @ref page_class_cat_dd
42 @li @ref page_class_cat_file
43 @li @ref page_class_cat_streams
44 @li @ref page_class_cat_threading
45 @li @ref page_class_cat_html
46 @li @ref page_class_cat_rich
47 @li @ref page_class_cat_stc
48 @li @ref page_class_cat_vfs
49 @li @ref page_class_cat_xml
50 @li @ref page_class_cat_xrc
51 @li @ref page_class_cat_help
52 @li @ref page_class_cat_media
53 @li @ref page_class_cat_gl
54 @li @ref page_class_cat_appmanagement
55 @li @ref page_class_cat_misc
56 </td></tr>
57 @endTable
58
59 <hr>
60
61
62
63 @section page_class_cat_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 overview_cmndlg.
81
82
83 @section page_class_cat_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_class_cat_cmndlg Common dialogs
105
106 @ref overview_cmndlg
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_class_cat_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_class_cat_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_class_cat_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_class_cat_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 overview_aui.
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_class_cat_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 overview_sizer 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
224 having the same size
225 @li wxFlexGridSizer: A sizer for laying out windows in a flexible grid
226 @li wxGridBagSizer: Another grid sizer that lets you specify the cell an item
227 is in, and items can span rows and/or columns.
228 @li wxBoxSizer: A sizer for laying out windows in a row or column
229 @li wxStaticBoxSizer: Same as wxBoxSizer, but with a surrounding static box
230 @li wxWrapSizer: A sizer which wraps its child controls as size permits
231
232 @ref overview_constraints describes constraints-based layout.
233
234 These are the classes relevant to constraints-based window layout.
235
236 @li wxIndividualLayoutConstraint: Represents a single constraint dimension
237 @li wxLayoutConstraints: Represents the constraints for a window class
238
239 Other layouting classes:
240
241 @li wxLayoutAlgorithm: An alternative window layout facility
242
243
244 @section page_class_cat_dc Device contexts
245
246 @ref overview_dc
247
248 Device contexts are surfaces that may be drawn on, and provide an
249 abstraction that allows parameterisation of your drawing code
250 by passing different device contexts.
251
252 @li wxAutoBufferedPaintDC: A helper device context for double buffered drawing inside @b OnPaint.
253 @li wxBufferedDC: A helper device context for double buffered drawing.
254 @li wxBufferedPaintDC: A helper device context for double buffered drawing inside @b OnPaint.
255 @li wxClientDC: A device context to access the client area outside @b OnPaint events
256 @li wxPaintDC: A device context to access the client area inside @b OnPaint events
257 @li wxWindowDC: A device context to access the non-client area
258 @li wxScreenDC: A device context to access the entire screen
259 @li wxDC: The device context base class
260 @li wxMemoryDC: A device context for drawing into bitmaps
261 @li wxMetafileDC: A device context for drawing into metafiles
262 @li wxMirrorDC: A proxy device context allowing for simple mirroring.
263 @li wxPostScriptDC: A device context for drawing into PostScript files
264 @li wxPrinterDC: A device context for drawing to printers
265
266
267 @section page_class_cat_gdi Graphics device interface
268
269 @ref overview_bitmap
270
271 These classes are related to drawing on device contexts and windows.
272
273 @li wxColour: Represents the red, blue and green elements of a colour
274 @li wxDCClipper: Wraps the operations of setting and destroying the clipping region
275 @li wxBitmap: Represents a bitmap
276 @li wxBrush: Used for filling areas on a device context
277 @li wxBrushList: The list of previously-created brushes
278 @li wxCursor: A small, transparent bitmap representing the cursor
279 @li wxFont: Represents fonts
280 @li wxFontList: The list of previously-created fonts
281 @li wxIcon: A small, transparent bitmap for assigning to frames and drawing on device contexts
282 @li wxImage: A platform-independent image class
283 @li wxImageList: A list of images, used with some controls
284 @li wxMask: Represents a mask to be used with a bitmap for transparent drawing
285 @li wxPen: Used for drawing lines on a device context
286 @li wxPenList: The list of previously-created pens
287 @li wxPalette: Represents a table of indices into RGB values
288 @li wxRegion: Represents a simple or complex region on a window or device context
289 @li wxRendererNative: Abstracts high-level drawing primitives
290
291
292 @section page_class_cat_events Events
293
294 @ref overview_eventhandling
295
296 An event object contains information about a specific event. Event handlers
297 (usually member functions) have a single, event argument.
298
299 @li wxActivateEvent: A window or application activation event
300 @li wxCalendarEvent: Used with wxCalendarCtrl
301 @li wxCalculateLayoutEvent: Used to calculate window layout
302 @li wxChildFocusEvent: A child window focus event
303 @li wxClipboardTextEvent: A clipboard copy/cut/paste treebook event event
304 @li wxCloseEvent: A close window or end session event
305 @li wxCommandEvent: An event from a variety of standard controls
306 @li wxContextMenuEvent: An event generated when the user issues a context menu command
307 @li wxDateEvent: Used with wxDatePickerCtrl
308 @li wxDialUpEvent: Event send by wxDialUpManager
309 @li wxDropFilesEvent: A drop files event
310 @li wxEraseEvent: An erase background event
311 @li wxEvent: The event base class
312 @li wxFindDialogEvent: Event sent by wxFindReplaceDialog
313 @li wxFocusEvent: A window focus event
314 @li wxKeyEvent: A keypress event
315 @li wxIconizeEvent: An iconize/restore event
316 @li wxIdleEvent: An idle event
317 @li wxInitDialogEvent: A dialog initialisation event
318 @li wxJoystickEvent: A joystick event
319 @li wxListEvent: A list control event
320 @li wxMaximizeEvent: A maximize event
321 @li wxMenuEvent: A menu event
322 @li wxMouseCaptureChangedEvent: A mouse capture changed event
323 @li wxMouseCaptureLostEvent: A mouse capture lost event
324 @li wxMouseEvent: A mouse event
325 @li wxMoveEvent: A move event
326 @li wxNavigationKeyEvent: An event set by navigation keys such as tab
327 @li wxNotebookEvent: A notebook control event
328 @li wxNotifyEvent: A notification event, which can be vetoed
329 @li wxPaintEvent: A paint event
330 @li wxProcessEvent: A process ending event
331 @li wxQueryLayoutInfoEvent: Used to query layout information
332 @li wxRichTextEvent: A rich text editing event
333 @li wxScrollEvent: A scroll event from sliders, stand-alone scrollbars and spin buttons
334 @li wxScrollWinEvent: A scroll event from scrolled windows
335 @li wxSizeEvent: A size event
336 @li wxSocketEvent: A socket event
337 @li wxSpinEvent: An event from wxSpinButton
338 @li wxSplitterEvent: An event from wxSplitterWindow
339 @li wxSysColourChangedEvent: A system colour change event
340 @li wxTimerEvent: A timer expiration event
341 @li wxTreebookEvent: A treebook control event
342 @li wxTreeEvent: A tree control event
343 @li wxUpdateUIEvent: A user interface update event
344 @li wxWindowCreateEvent: A window creation event
345 @li wxWindowDestroyEvent: A window destruction event
346 @li wxWizardEvent: A wizard event
347
348
349 @section page_class_cat_val Validators
350
351 @ref overview_validator
352
353 These are the window validators, used for filtering and validating
354 user input.
355
356 @li wxValidator: Base validator class
357 @li wxTextValidator: Text control validator class
358 @li wxGenericValidator: Generic control validator class
359
360
361 @section page_class_cat_data Data structures
362
363 These are the data structure classes supported by wxWidgets.
364
365 @li wxCmdLineParser: Command line parser class
366 @li wxDateSpan: A logical time interval.
367 @li wxDateTime: A class for date/time manipulations
368 @li wxLongLong: A portable 64 bit integer type
369 @li wxObject: The root class for most wxWidgets classes
370 @li wxPathList: A class to help search multiple paths
371 @li wxPoint: Representation of a point
372 @li wxRect: A class representing a rectangle
373 @li wxRegEx: Regular expression support
374 @li wxRegion: A class representing a region
375 @li wxString: A string class
376 @li wxStringTokenizer: A class for interpreting a string as a list of tokens or words
377 @li wxRealPoint: Representation of a point using floating point numbers
378 @li wxSize: Representation of a size
379 @li wxTimeSpan: A time interval.
380 @li wxURI: Represents a Uniform Resource Identifier
381 @li wxVariant: A class for storing arbitrary types that may change at run-time
382
383
384 @section page_class_cat_containers Container classes
385
386 @ref overview_container
387
388 These are classes, templates and class macros are used by wxWidgets. Most
389 of these classes provide a subset or almost complete STL API.
390
391 @li wxArray<T>: A type-safe dynamic array implementation (macro based)
392 @li wxArrayString: An efficient container for storing wxString objects
393 @li wxHashMap<T>: A type-safe hash map implementation (macro based)
394 @li wxHashSet<T>: A type-safe hash set implementation(macro based)
395 @li wxHashTable: A simple hash table implementation (deprecated, use wxHashMap)
396 @li wxList<T>: A type-safe linked list implementation (macro based)
397 @li wxVector<T>: Template base vector implementation identical to std::vector
398
399
400 @section page_class_cat_smartpointers Smart pointers
401
402 wxWidgets provides a few smart pointer class templates.
403
404 @li wxObjectDataPtr<T>: A shared pointer (using intrusive reference counting)
405 @li wxScopedPtr<T>: A scoped pointer
406 @li wxSharedPtr<T>: A shared pointer (using non-intrusive reference counting)
407 @li wxWeakRef<T>: A weak reference
408
409
410 @section page_class_cat_rtti Run-time class information system
411
412 @ref overview_runtimeclass
413
414 wxWidgets supports run-time manipulation of class information, and dynamic
415 creation of objects given class names.
416
417 @li wxClassInfo: Holds run-time class information
418 @li wxObject: Root class for classes with run-time information
419 @li RTTI macros: Macros for manipulating run-time information
420
421
422 @section page_class_cat_logging Logging features
423
424 @ref overview_log
425
426 wxWidgets provides several classes and functions for message logging.
427 Please see the @ref overview_log for more details.
428
429 @li wxLog: The base log class
430 @li wxLogStderr: Log messages to a C STDIO stream
431 @li wxLogStream: Log messages to a C++ iostream
432 @li wxLogTextCtrl: Log messages to a wxTextCtrl
433 @li wxLogWindow: Log messages to a log frame
434 @li wxLogGui: Default log target for GUI programs
435 @li wxLogNull: Temporarily suppress message logging
436 @li wxLogChain: Allows to chain two log targets
437 @li wxLogInterposer: Allows to filter the log messages
438 @li wxLogInterposerTemp: Allows to filter the log messages
439 @li wxStreamToTextRedirector: Allows to redirect output sent to @c cout to a wxTextCtrl
440 @li Log functions: Error and warning logging functions
441
442
443 @section page_class_cat_debugging Debugging features
444
445 @ref overview_debugging
446
447 wxWidgets supports some aspects of debugging an application through
448 classes, functions and macros.
449
450 @li wxDebugContext: Provides memory-checking facilities
451 @li Debugging macros: Debug macros for assertion and checking
452 @li WXDEBUG_NEW: Use this macro to give further debugging information
453 @li wxDebugReport: Base class for creating debug reports in case of a program crash.
454 @li wxDebugReportCompress: Class for creating compressed debug reports.
455 @li wxDebugReportUpload: Class for uploading compressed debug reports via HTTP.
456 @li wxDebugReportPreview: Abstract base class for previewing the contents of a debug report.
457 @li wxDebugReportPreviewStd: Standard implementation of wxDebugReportPreview.
458
459
460 @section page_class_cat_net Networking classes
461
462 wxWidgets provides its own classes for socket based networking.
463
464 @li wxDialUpManager: Provides functions to check the status of network connection and to establish one
465 @li wxIPV4address: Represents an Internet address
466 @li wxIPaddress: Represents an Internet address
467 @li wxSocketBase: Represents a socket base object
468 @li wxSocketClient: Represents a socket client
469 @li wxSocketServer: Represents a socket server
470 @li wxSocketEvent: A socket event
471 @li wxFTP: FTP protocol class
472 @li wxHTTP: HTTP protocol class
473 @li wxURL: Represents a Universal Resource Locator
474
475
476
477 @section page_class_cat_ipc Interprocess communication
478
479 @ref overview_ipc
480
481 wxWidgets provides simple interprocess communications facilities
482 based on Windows DDE, but available on most platforms using TCP.
483
484 @li wxClient, wxDDEClient: Represents a client
485 @li wxConnection, wxDDEConnection: Represents the connection between a client and a server
486 @li wxServer, wxDDEServer: Represents a server
487
488
489
490 @section page_class_cat_dvf Document-view framework
491
492 @ref overview_docview
493
494 wxWidgets supports a document/view framework which provides
495 housekeeping for a document-centric application.
496
497 @li wxDocument: Represents a document
498 @li wxView: Represents a view
499 @li wxDocTemplate: Manages the relationship between a document class and a view class
500 @li wxDocManager: Manages the documents and views in an application
501 @li wxDocChildFrame: A child frame for showing a document view
502 @li wxDocParentFrame: A parent frame to contain views
503 <!-- %@li wxMDIDocChildFrame: An MDI child frame for showing a document view
504 %@li wxMDIDocParentFrame: An MDI parent frame to contain views -->
505
506
507 @section page_class_cat_printing Printing framework
508
509 @ref overview_printing
510
511 A printing and previewing framework is implemented to
512 make it relatively straightforward to provide document printing
513 facilities.
514
515 @li wxPreviewFrame: Frame for displaying a print preview
516 @li wxPreviewCanvas: Canvas for displaying a print preview
517 @li wxPreviewControlBar: Standard control bar for a print preview
518 @li wxPrintDialog: Standard print dialog
519 @li wxPageSetupDialog: Standard page setup dialog
520 @li wxPrinter: Class representing the printer
521 @li wxPrinterDC: Printer device context
522 @li wxPrintout: Class representing a particular printout
523 @li wxPrintPreview: Class representing a print preview
524 @li wxPrintData: Represents information about the document being printed
525 @li wxPrintDialogData: Represents information about the print dialog
526 @li wxPageSetupDialogData: Represents information about the page setup dialog
527
528
529
530 @section page_class_cat_dd Drag and drop and clipboard classes
531
532 @ref overview_dnd
533
534 @li wxDataObject: Data object class
535 @li wxDataFormat: Represents a data format
536 @li wxTextDataObject: Text data object class
537 @li wxFileDataObject: File data object class
538 @li wxBitmapDataObject: Bitmap data object class
539 @li wxURLDataObject: URL data object class
540 @li wxCustomDataObject: Custom data object class
541 @li wxClipboard: Clipboard class
542 @li wxDropTarget: Drop target class
543 @li wxFileDropTarget: File drop target class
544 @li wxTextDropTarget: Text drop target class
545 @li wxDropSource: Drop source class
546
547
548 @section page_class_cat_file File related classes
549
550 wxWidgets has several small classes to work with disk files, see
551 @ref overview_file for more details.
552
553 @li wxFileName: Operations with the file name and attributes
554 @li wxDir: Class for enumerating files/subdirectories.
555 @li wxDirTraverser: Class used together with wxDir for recursively enumerating the files/subdirectories
556 @li wxFile: Low-level file input/output class.
557 @li wxFFile: Another low-level file input/output class.
558 @li wxTempFile: Class to safely replace an existing file
559 @li wxTextFile: Class for working with text files as with arrays of lines
560 @li wxStandardPaths: Paths for standard directories
561 @li wxPathList: A class to help search multiple paths
562
563
564 @section page_class_cat_streams Stream classes
565
566 wxWidgets has its own set of stream classes, as an alternative to often buggy standard stream
567 libraries, and to provide enhanced functionality.
568
569 @li wxStreamBase: Stream base class
570 @li wxStreamBuffer: Stream buffer class
571 @li wxInputStream: Input stream class
572 @li wxOutputStream: Output stream class
573 @li wxCountingOutputStream: Stream class for querying what size a stream would have.
574 @li wxFilterInputStream: Filtered input stream class
575 @li wxFilterOutputStream: Filtered output stream class
576 @li wxBufferedInputStream: Buffered input stream class
577 @li wxBufferedOutputStream: Buffered output stream class
578 @li wxMemoryInputStream: Memory input stream class
579 @li wxMemoryOutputStream: Memory output stream class
580 @li wxDataInputStream: Platform-independent binary data input stream class
581 @li wxDataOutputStream: Platform-independent binary data output stream class
582 @li wxTextInputStream: Platform-independent text data input stream class
583 @li wxTextOutputStream: Platform-independent text data output stream class
584 @li wxFileInputStream: File input stream class
585 @li wxFileOutputStream: File output stream class
586 @li wxFFileInputStream: Another file input stream class
587 @li wxFFileOutputStream: Another file output stream class
588 @li wxTempFileOutputStream: Stream to safely replace an existing file
589 @li wxStringInputStream: String input stream class
590 @li wxStringOutputStream: String output stream class
591 @li wxZlibInputStream: Zlib and gzip (compression) input stream class
592 @li wxZlibOutputStream: Zlib and gzip (compression) output stream class
593 @li wxZipInputStream: Input stream for reading from ZIP archives
594 @li wxZipOutputStream: Output stream for writing from ZIP archives
595 @li wxTarInputStream: Input stream for reading from tar archives
596 @li wxTarOutputStream: Output stream for writing from tar archives
597 @li wxSocketInputStream: Socket input stream class
598 @li wxSocketOutputStream: Socket output stream class
599
600
601 @section page_class_cat_threading Threading classes
602
603 @ref overview_thread
604
605 wxWidgets provides a set of classes to make use of the native thread
606 capabilities of the various platforms.
607
608 @li wxThread: Thread class
609 @li wxThreadHelper: Manages background threads easily
610 @li wxMutex: Mutex class
611 @li wxMutexLocker: Mutex locker utility class
612 @li wxCriticalSection: Critical section class
613 @li wxCriticalSectionLocker: Critical section locker utility class
614 @li wxCondition: Condition class
615 @li wxSemaphore: Semaphore class
616
617
618 @section page_class_cat_html HTML classes
619
620 wxWidgets provides a set of classes to display text in HTML format. These
621 class include a help system based on the HTML widget.
622
623 @li wxHtmlHelpController: HTML help controller class
624 @li wxHtmlWindow: HTML window class
625 @li wxHtmlEasyPrinting: Simple class for printing HTML
626 @li wxHtmlPrintout: Generic HTML wxPrintout class
627 @li wxHtmlParser: Generic HTML parser class
628 @li wxHtmlTagHandler: HTML tag handler, pluginable into wxHtmlParser
629 @li wxHtmlWinParser: HTML parser class for wxHtmlWindow
630 @li wxHtmlWinTagHandler: HTML tag handler, pluginable into wxHtmlWinParser
631
632
633 @section page_class_cat_rich Rich text classes
634
635 wxWidgets provides a set of generic classes to edit and print simple rich text with character
636 and paragraph formatting.
637
638 @li wxTextAttr: Attributes specifying text styling.
639 @li wxRichTextCtrl: A rich text control.
640 @li wxRichTextBuffer: The content of a rich text control.
641 @li wxRichTextCharacterStyleDefinition: Definition of character styling.
642 @li wxRichTextParagraphStyleDefinition: Definition of paragraph styling.
643 @li wxRichTextListStyleDefinition: Definition of list styling.
644 @li wxRichTextStyleSheet: A set of style definitions.
645 @li wxRichTextStyleComboCtrl: A drop-down control for applying styles.
646 @li wxRichTextStyleListBox: A listbox for applying styles.
647 @li wxRichTextStyleOrganiserDialog: A dialog that can be used for managing or browsing styles.
648 @li wxRichTextEvent: A rich text event.
649 @li wxRichTextRange: Specification for ranges in a rich text control or buffer.
650 @li wxRichTextFileHandler: File handler base class.
651 @li wxRichTextHTMLHandler: A handler for converting rich text to HTML.
652 @li wxRichTextXMLHandler: A handler for loading and saving rich text XML.
653 @li wxRichTextFormattingDialog: A dialog for rich text formatting.
654 @li wxRichTextPrinting: A class for easy printing of rich text buffers.
655 @li wxRichTextPrintout: A class used by wxRichTextPrinting.
656 @li wxRichTextHeaderFooterData: Header and footer data specification.
657
658
659 @section page_class_cat_stc Scintilla text editor classes
660
661 wxWidgets also provides a wrapper around the Scintilla text editor control, which is
662 a control for plain-text editing with support for highlighting, smart indentation, etc.
663
664 @li wxStyledTextCtrl: A wxWidgets implementation of the Scintilla source code editing component.
665
666
667 @section page_class_cat_vfs Virtual file system classes
668
669 wxWidgets provides a set of classes that implement an extensible virtual file system,
670 used internally by the HTML classes.
671
672 @li wxFSFile: Represents a file in the virtual file system
673 @li wxFileSystem: Main interface for the virtual file system
674 @li wxFileSystemHandler: Class used to announce file system type
675
676
677 @section page_class_cat_xml XML classes
678
679 @li wxXmlDocument: A class to parse XML files
680 @li wxXmlNode: A class which represents XML nodes
681 @li wxXmlAttribute: A class which represent an XML attribute
682
683
684 @section page_class_cat_xrc XML-based resource system classes
685
686 @ref overview_xrc
687
688 Resources allow your application to create controls and other user interface elements
689 from specifications stored in an XML format.
690
691 @li wxXmlResource: The main class for working with resources
692 @li wxXmlResourceHandler: The base class for XML resource handlers
693
694
695 @section page_class_cat_help Online help
696
697 @li wxHelpController: Family of classes for controlling help windows
698 @li wxHtmlHelpController: HTML help controller class
699 @li wxContextHelp: Class to put application into context-sensitive help mode
700 @li wxContextHelpButton: Button class for putting application into context-sensitive help mode
701 @li wxHelpProvider: Abstract class for context-sensitive help provision
702 @li wxSimpleHelpProvider: Class for simple context-sensitive help provision
703 @li wxHelpControllerHelpProvider: Class for context-sensitive help provision via a help controller
704 @li wxToolTip: Class implementing tooltips
705
706
707 @section page_class_cat_media Multimedia classes
708
709 @li wxMediaCtrl: Display multimedia contents.
710
711
712 @section page_class_cat_gl OpenGL classes
713
714 @li wxGLCanvas: Canvas that you can render OpenGL calls to.
715 @li wxGLContext: Class to ease sharing of OpenGL data resources.
716
717
718 @section page_class_cat_appmanagement Application and process-management classes
719
720 @li wxApp: Application class
721 @li wxCmdLineParser: Command line parser class
722 @li wxDllLoader: Class to work with shared libraries.
723 @li wxProcess: Process class
724
725
726 @section page_class_cat_misc Miscellaneous
727
728 @li wxCaret: A caret (cursor) object
729 @li wxConfigBase: Classes for reading/writing the configuration settings
730 @li wxTimer: Timer class
731 @li wxStopWatch: Stop watch class
732 @li wxMimeTypesManager: MIME-types manager class
733 @li wxSystemSettings: System settings class for obtaining various global parameters
734 @li wxSystemOptions: System options class for run-time configuration
735 @li wxAcceleratorTable: Accelerator table
736 @li wxAutomationObject: OLE automation class
737 @li wxFontMapper: Font mapping, finding suitable font for given encoding
738 @li wxEncodingConverter: Encoding conversions
739 @li wxCalendarDateAttr: Used with wxCalendarCtrl
740 @li wxQuantize: Class to perform quantization, or colour reduction
741 @li wxSingleInstanceChecker: Check that only single program instance is running
742
743 */