]>
git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/mainpages/cat_classes.h
7aed325b988355f1529f825b311e5ce35f967514
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Classes-by-category page of the Doxygen manual
4 // Author: wxWidgets team
5 // RCS-ID: $Id: cat_classes.h 52468 2008-03-13 16:30:38Z FM $
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
11 @page page_class_cat Summarized Class List by Category
13 This page contains a summarized listing of classes, please see the
14 @ref group_class page for a full listing.
18 @li @ref page_class_cat_basicwnd
19 @li @ref page_class_cat_winlayout
20 @li @ref page_class_cat_managedwnd
21 @li @ref page_class_cat_menus
22 @li @ref page_class_cat_ctrl
23 @li @ref page_class_cat_pickers
24 @li @ref page_class_cat_miscwnd
25 @li @ref page_class_cat_aui
26 @li @ref page_class_cat_cmndlg
27 @li @ref page_class_cat_html
28 @li @ref page_class_cat_richtext
30 @li @ref page_class_cat_dc
31 @li @ref page_class_cat_gdi
32 @li @ref page_class_cat_events
33 @li @ref page_class_cat_validator
34 @li @ref page_class_cat_appmanagement
35 @li @ref page_class_cat_printing
36 @li @ref page_class_cat_dvf
37 @li @ref page_class_cat_dnd
38 @li @ref page_class_cat_vfs
40 @li @ref page_class_cat_rtti
41 @li @ref page_class_cat_debugging
42 @li @ref page_class_cat_logging
43 @li @ref page_class_cat_threading
44 @li @ref page_class_cat_data
45 @li @ref page_class_cat_containers
46 @li @ref page_class_cat_smartpointers
47 @li @ref page_class_cat_xml
48 @li @ref page_class_cat_file
49 @li @ref page_class_cat_archive
50 @li @ref page_class_cat_streams
52 @li @ref page_class_cat_xrc
53 @li @ref page_class_cat_net
54 @li @ref page_class_cat_ipc
55 @li @ref page_class_cat_stc
56 @li @ref page_class_cat_help
57 @li @ref page_class_cat_media
58 @li @ref page_class_cat_gl
59 @li @ref page_class_cat_misc
67 @section page_class_cat_basicwnd Basic Windows
69 The following are the most important window classes
71 @li wxWindow: base class for all windows and controls
72 @li wxControl: base class (mostly) for native controls/widgets
73 @li wxPanel: window which can smartly manage child windows
74 @li wxScrolledWindow: Window with automatically managed scrollbars
75 @li wxVScrolledWindow: As wxScrolledWindow but supports lines of variable
77 @li wxTopLevelWindow: Any top level window, dialog or frame
81 @section page_class_cat_winlayout Window Layout
83 There are two different systems for laying out windows (and dialogs in
84 particular). One is based upon so-called sizers and it requires less typing,
85 thinking and calculating and will in almost all cases produce dialogs looking
86 equally well on all platforms, the other is based on so-called constraints and
87 is deprecated, though still available.
89 Related Overviews: @ref overview_sizer, @ref overview_constraints
91 These are the classes relevant to sizer-based layout:
93 @li wxSizer: Abstract base class
94 @li wxGridSizer: A sizer for laying out windows in a grid with all fields
96 @li wxFlexGridSizer: A sizer for laying out windows in a flexible grid
97 @li wxGridBagSizer: Another grid sizer that lets you specify the cell an item
98 is in, and items can span rows and/or columns.
99 @li wxBoxSizer: A sizer for laying out windows in a row or column
100 @li wxStaticBoxSizer: Same as wxBoxSizer, but with a surrounding static box
101 @li wxWrapSizer: A sizer which wraps its child controls as size permits
103 These are the classes relevant to constraints-based window layout:
105 @li wxIndividualLayoutConstraint: Represents a single constraint dimension
106 @li wxLayoutConstraints: Represents the constraints for a window class
108 Other layout classes:
110 @li wxLayoutAlgorithm: An alternative window layout facility
114 @section page_class_cat_managedwnd Managed Windows
116 There are several types of window that are directly controlled by the window
117 manager (such as MS Windows, or the Motif Window Manager). Frames and dialogs
118 are similar in wxWidgets, but only dialogs may be modal.
120 Related Overviews: @ref overview_cmndlg
122 @li wxDialog: Dialog box
123 @li wxFrame: Normal frame
124 @li wxMDIChildFrame: MDI child frame
125 @li wxMDIParentFrame: MDI parent frame
126 @li wxMiniFrame: A frame with a small title bar
127 @li wxPopupWindow: A toplevel window without decorations, e.g. for a combobox pop-up
128 @li wxPropertySheetDialog: Property sheet dialog
129 @li wxSplashScreen: Splash screen class
130 @li wxTipWindow: Shows text in a small window
131 @li wxWizard: A wizard dialog
135 @section page_class_cat_menus Menus
137 @li wxMenu: Displays a series of menu items for selection
138 @li wxMenuBar: Contains a series of menus for use with a frame
139 @li wxMenuItem: Represents a single menu item
143 @section page_class_cat_ctrl Controls
145 Typically, these are small windows which provide interaction with the user.
146 Controls that are not static can have wxValidator associated with them.
148 @li wxAnimationCtrl: A control to display an animation
149 @li wxControl: The base class for controls
150 @li wxButton: Push button control, displaying text
151 @li wxBitmapButton: Push button control, displaying a bitmap
152 @li wxBitmapComboBox: A combobox with bitmaps next to text items
153 @li wxToggleButton: A button which stays pressed when clicked by user.
154 @li wxBitmapToggleButton: A toggle button with bitmaps.
155 @li wxCalendarCtrl: Control showing an entire calendar month
156 @li wxCheckBox: Checkbox control
157 @li wxCheckListBox: A listbox with a checkbox to the left of each item
158 @li wxChoice: Choice control (a combobox without the editable area)
159 @li wxCollapsiblePane: A panel which can be shown/hidden by the user
160 @li wxComboBox: A choice with an editable area
161 @li wxComboCtrl: A combobox with application defined popup
162 @li wxDataViewCtrl: A control to tabular or tree like data
163 @li wxDataViewTreeCtrl: A specialized wxDataViewCtrl with wxTreeCtrl-like API
164 @li wxGauge: A control to represent a varying quantity, such as time remaining
165 @li wxGenericDirCtrl: A control for displaying a directory tree
166 @li wxHtmlListBox: An abstract class for creating listboxes showing HTML
168 @li wxSimpleHtmlListBox: A listbox showing HTML content
169 @li wxStaticBox: A static, or group box for visually grouping related controls
170 @li wxListBox: A list of strings for single or multiple selection
171 @li wxListCtrl: A control for displaying lists of strings and/or icons, plus a
172 multicolumn report view
173 @li wxListView: A simpler interface (façade) for wxListCtrl in report
175 @li wxOwnerDrawnComboBox: A combobox with owner-drawn list items
176 @li wxRichTextCtrl: Generic rich text editing control
177 @li wxTextCtrl: Single or multiline text editing control
178 @li wxTreeCtrl: Tree (hierarchy) control
179 @li wxScrollBar: Scrollbar control
180 @li wxSpinButton: A spin or `up-down' control
181 @li wxSpinCtrl: A spin control - i.e. spin button and text control
182 @li wxStaticText: One or more lines of non-editable text
183 @li wxHyperlinkCtrl: A static text which opens an URL when clicked
184 @li wxStaticBitmap: A control to display a bitmap
185 @li wxRadioBox: A group of radio buttons
186 @li wxRadioButton: A round button to be used with others in a mutually
188 @li wxSlider: A slider that can be dragged by the user
189 @li wxVListBox: A listbox supporting variable height rows
193 @section page_class_cat_pickers Picker Controls
195 A picker control is a control whose appearance and behaviour is highly
198 @li wxColourPickerCtrl: A control which allows the user to choose a colour
199 @li wxDirPickerCtrl: A control which allows the user to choose a directory
200 @li wxFilePickerCtrl: A control which allows the user to choose a file
201 @li wxFontPickerCtrl: A control which allows the user to choose a font
202 @li wxDatePickerCtrl: Small date picker control
206 @section page_class_cat_miscwnd Miscellaneous Windows
208 The following are a variety of classes that are derived from wxWindow.
210 @li wxPanel: A window whose colour changes according to current user settings
211 @li wxScrolledWindow: Window with automatically managed scrollbars
212 @li wxGrid: A grid (table) window
213 @li wxSplitterWindow: Window which can be split vertically or horizontally
214 @li wxStatusBar: Implements the status bar on a frame
215 @li wxToolBar: Toolbar class
216 @li wxNotebook: Notebook class
217 @li wxListbook: Similar to notebook but using list control
218 @li wxChoicebook: Similar to notebook but using choice control
219 @li wxTreebook: Similar to notebook but using tree control
220 @li wxSashWindow: Window with four optional sashes that can be dragged
221 @li wxSashLayoutWindow: Window that can be involved in an IDE-like layout
223 @li wxVScrolledWindow: As wxScrolledWindow but supports lines of variable
225 @li wxWizardPage: A base class for the page in wizard dialog.
226 @li wxWizardPageSimple: A page in wizard dialog.
230 @section page_class_cat_aui Window Docking (wxAUI)
232 wxAUI is a set classes for writing a customizable application interface
233 with built-in docking, floatable panes and a flexible MDI-like interface.
235 Related Overviews: @ref overview_aui
237 @li wxAuiManager: The central class for managing the interface
238 @li wxAuiNotebook: A replacement notebook class with extra features
239 @li wxAuiPaneInfo: Describes a single pane
240 @li wxAuiDockArt: Art and metrics provider for customizing the docking user
242 @li wxAuiTabArt: Art and metrics provider for customizing the notebook user
247 @section page_class_cat_cmndlg Common Dialogs
249 Common dialogs are ready-made dialog classes which are frequently used in an
252 Related Overviews: @ref overview_cmndlg
254 @li wxDialog: Base class for common dialogs
255 @li wxColourDialog: Colour chooser dialog
256 @li wxDirDialog: Directory selector dialog
257 @li wxFileDialog: File selector dialog
258 @li wxFindReplaceDialog: Text search/replace dialog
259 @li wxMultiChoiceDialog: Dialog to get one or more selections from a list
260 @li wxSingleChoiceDialog: Dialog to get a single selection from a list and
262 @li wxTextEntryDialog: Dialog to get a single line of text from the user
263 @li wxPasswordEntryDialog: Dialog to get a password from the user
264 @li wxFontDialog: Font chooser dialog
265 @li wxPageSetupDialog: Standard page setup dialog
266 @li wxPrintDialog: Standard print dialog
267 @li wxProgressDialog: Progress indication dialog
268 @li wxMessageDialog: Simple message box dialog
269 @li wxSymbolPickerDialog: Symbol selector dialog
270 @li wxRichTextFormattingDialog: A dialog for formatting the content of a
272 @li wxWizard: A wizard dialog.
276 @section page_class_cat_html HTML
278 wxWidgets provides a set of classes to display text in HTML format. These
279 classes include a help system based on the HTML widget.
281 @li wxHtmlHelpController: HTML help controller class
282 @li wxHtmlWindow: HTML window class
283 @li wxHtmlEasyPrinting: Simple class for printing HTML
284 @li wxHtmlPrintout: Generic HTML wxPrintout class
285 @li wxHtmlParser: Generic HTML parser class
286 @li wxHtmlTagHandler: HTML tag handler, pluginable into wxHtmlParser
287 @li wxHtmlWinParser: HTML parser class for wxHtmlWindow
288 @li wxHtmlWinTagHandler: HTML tag handler, pluginable into wxHtmlWinParser
292 @section page_class_cat_richtext Rich Text
294 wxWidgets provides a set of generic classes to edit and print simple rich text
295 with character and paragraph formatting.
297 @li wxTextAttr: Attributes specifying text styling.
298 @li wxRichTextCtrl: A rich text control.
299 @li wxRichTextBuffer: The content of a rich text control.
300 @li wxRichTextCharacterStyleDefinition: Definition of character styling.
301 @li wxRichTextParagraphStyleDefinition: Definition of paragraph styling.
302 @li wxRichTextListStyleDefinition: Definition of list styling.
303 @li wxRichTextStyleSheet: A set of style definitions.
304 @li wxRichTextStyleComboCtrl: A drop-down control for applying styles.
305 @li wxRichTextStyleListBox: A listbox for applying styles.
306 @li wxRichTextStyleOrganiserDialog: A dialog that can be used for managing or
308 @li wxRichTextEvent: A rich text event.
309 @li wxRichTextRange: Specification for ranges in a rich text control or buffer.
310 @li wxRichTextFileHandler: File handler base class.
311 @li wxRichTextHTMLHandler: A handler for converting rich text to HTML.
312 @li wxRichTextXMLHandler: A handler for loading and saving rich text XML.
313 @li wxRichTextFormattingDialog: A dialog for rich text formatting.
314 @li wxRichTextPrinting: A class for easy printing of rich text buffers.
315 @li wxRichTextPrintout: A class used by wxRichTextPrinting.
316 @li wxRichTextHeaderFooterData: Header and footer data specification.
320 @section page_class_cat_dc Device Contexts
322 Device contexts are surfaces that may be drawn on, and provide an abstraction
323 that allows parameterisation of your drawing code by passing different device
326 Related Overviews: @ref overview_dc
328 @li wxAutoBufferedPaintDC: A helper device context for double buffered drawing
330 @li wxBufferedDC: A helper device context for double buffered drawing.
331 @li wxBufferedPaintDC: A helper device context for double buffered drawing
333 @li wxClientDC: A device context to access the client area outside
335 @li wxPaintDC: A device context to access the client area inside @b OnPaint()
337 @li wxWindowDC: A device context to access the non-client area
338 @li wxScreenDC: A device context to access the entire screen
339 @li wxDC: The device context base class
340 @li wxMemoryDC: A device context for drawing into bitmaps
341 @li wxMetafileDC: A device context for drawing into metafiles
342 @li wxMirrorDC: A proxy device context allowing for simple mirroring.
343 @li wxPostScriptDC: A device context for drawing into PostScript files
344 @li wxPrinterDC: A device context for drawing to printers
348 @section page_class_cat_gdi Graphics Device Interface
350 These classes are related to drawing on device contexts and windows.
352 Related Overviews: @ref overview_bitmap
354 @li wxColour: Represents the red, blue and green elements of a colour
355 @li wxDCClipper: Wraps the operations of setting and destroying the clipping
357 @li wxBitmap: Represents a bitmap
358 @li wxBrush: Used for filling areas on a device context
359 @li wxBrushList: The list of previously-created brushes
360 @li wxCursor: A small, transparent bitmap representing the cursor
361 @li wxFont: Represents fonts
362 @li wxFontList: The list of previously-created fonts
363 @li wxIcon: A small, transparent bitmap for assigning to frames and drawing on
365 @li wxImage: A platform-independent image class
366 @li wxImageList: A list of images, used with some controls
367 @li wxMask: Represents a mask to be used with a bitmap for transparent drawing
368 @li wxPen: Used for drawing lines on a device context
369 @li wxPenList: The list of previously-created pens
370 @li wxPalette: Represents a table of indices into RGB values
371 @li wxRegion: Represents a simple or complex region on a window or device
373 @li wxAnimation: Represents an animation
374 @li wxRendererNative: Abstracts high-level drawing primitives
378 @section page_class_cat_events Events
380 An event object contains information about a specific event. Event handlers
381 (usually member functions) have a single, event argument.
383 Related Overviews: @ref overview_eventhandling
385 @li wxActivateEvent: A window or application activation event
386 @li wxCalendarEvent: Used with wxCalendarCtrl
387 @li wxCalculateLayoutEvent: Used to calculate window layout
388 @li wxChildFocusEvent: A child window focus event
389 @li wxClipboardTextEvent: A clipboard copy/cut/paste treebook event event
390 @li wxCloseEvent: A close window or end session event
391 @li wxCommandEvent: An event from a variety of standard controls
392 @li wxContextMenuEvent: An event generated when the user issues a context menu
394 @li wxDateEvent: Used with wxDatePickerCtrl
395 @li wxDialUpEvent: Event send by wxDialUpManager
396 @li wxDropFilesEvent: A drop files event
397 @li wxEraseEvent: An erase background event
398 @li wxEvent: The event base class
399 @li wxFindDialogEvent: Event sent by wxFindReplaceDialog
400 @li wxFocusEvent: A window focus event
401 @li wxKeyEvent: A keypress event
402 @li wxIconizeEvent: An iconize/restore event
403 @li wxIdleEvent: An idle event
404 @li wxInitDialogEvent: A dialog initialisation event
405 @li wxJoystickEvent: A joystick event
406 @li wxListEvent: A list control event
407 @li wxMaximizeEvent: A maximize event
408 @li wxMenuEvent: A menu event
409 @li wxMouseCaptureChangedEvent: A mouse capture changed event
410 @li wxMouseCaptureLostEvent: A mouse capture lost event
411 @li wxMouseEvent: A mouse event
412 @li wxMoveEvent: A move event
413 @li wxNavigationKeyEvent: An event set by navigation keys such as tab
414 @li wxNotebookEvent: A notebook control event
415 @li wxNotifyEvent: A notification event, which can be vetoed
416 @li wxPaintEvent: A paint event
417 @li wxProcessEvent: A process ending event
418 @li wxQueryLayoutInfoEvent: Used to query layout information
419 @li wxRichTextEvent: A rich text editing event
420 @li wxScrollEvent: A scroll event from sliders, stand-alone scrollbars and spin
422 @li wxScrollWinEvent: A scroll event from scrolled windows
423 @li wxSizeEvent: A size event
424 @li wxSocketEvent: A socket event
425 @li wxSpinEvent: An event from wxSpinButton
426 @li wxSplitterEvent: An event from wxSplitterWindow
427 @li wxSysColourChangedEvent: A system colour change event
428 @li wxTimerEvent: A timer expiration event
429 @li wxTreebookEvent: A treebook control event
430 @li wxTreeEvent: A tree control event
431 @li wxUpdateUIEvent: A user interface update event
432 @li wxWindowCreateEvent: A window creation event
433 @li wxWindowDestroyEvent: A window destruction event
434 @li wxWizardEvent: A wizard event
438 @section page_class_cat_validator Validators
440 These are the window validators, used for filtering and validating user input.
442 Related Overviews: @ref overview_validator
444 @li wxValidator: Base validator class
445 @li wxTextValidator: Text control validator class
446 @li wxGenericValidator: Generic control validator class
450 @section page_class_cat_data Data Structures
452 These are the data structure classes supported by wxWidgets.
454 @li wxCmdLineParser: Command line parser class
455 @li wxDateSpan: A logical time interval.
456 @li wxDateTime: A class for date/time manipulations
457 @li wxLongLong: A portable 64 bit integer type
458 @li wxObject: The root class for most wxWidgets classes
459 @li wxPathList: A class to help search multiple paths
460 @li wxPoint: Representation of a point
461 @li wxRect: A class representing a rectangle
462 @li wxRegEx: Regular expression support
463 @li wxRegion: A class representing a region
464 @li wxString: A string class
465 @li wxStringTokenizer: A class for interpreting a string as a list of tokens or
467 @li wxRealPoint: Representation of a point using floating point numbers
468 @li wxSize: Representation of a size
469 @li wxTimeSpan: A time interval.
470 @li wxURI: Represents a Uniform Resource Identifier
471 @li wxVariant: A class for storing arbitrary types that may change at run-time
475 @section page_class_cat_containers Containers
477 These are classes, templates and class macros are used by wxWidgets. Most of
478 these classes provide a subset or almost complete STL API.
480 Related Overviews: @ref overview_container
482 @li wxArray<T>: A type-safe dynamic array implementation (macro based)
483 @li wxArrayString: An efficient container for storing wxString objects
484 @li wxHashMap<T>: A type-safe hash map implementation (macro based)
485 @li wxHashSet<T>: A type-safe hash set implementation(macro based)
486 @li wxHashTable: A simple hash table implementation (deprecated, use wxHashMap)
487 @li wxList<T>: A type-safe linked list implementation (macro based)
488 @li wxVector<T>: Template base vector implementation identical to std::vector
492 @section page_class_cat_smartpointers Smart Pointers
494 wxWidgets provides a few smart pointer class templates.
496 @li wxObjectDataPtr<T>: A shared pointer (using intrusive reference counting)
497 @li wxScopedPtr<T>: A scoped pointer
498 @li wxSharedPtr<T>: A shared pointer (using non-intrusive reference counting)
499 @li wxWeakRef<T>: A weak reference
503 @section page_class_cat_logging Logging
505 wxWidgets provides several classes and functions for message logging.
507 Related Overviews: @ref overview_log
509 @see @ref group_funcmacro_log "Logging Functions and Macros"
511 @li wxLog: The base log class
512 @li wxLogStderr: Log messages to a C STDIO stream
513 @li wxLogStream: Log messages to a C++ iostream
514 @li wxLogTextCtrl: Log messages to a wxTextCtrl
515 @li wxLogWindow: Log messages to a log frame
516 @li wxLogGui: Default log target for GUI programs
517 @li wxLogNull: Temporarily suppress message logging
518 @li wxLogChain: Allows to chain two log targets
519 @li wxLogInterposer: Allows to filter the log messages
520 @li wxLogInterposerTemp: Allows to filter the log messages
521 @li wxStreamToTextRedirector: Allows to redirect output sent to @c cout to a wxTextCtrl
525 @section page_class_cat_debugging Debugging
527 wxWidgets supports some aspects of debugging an application through classes,
528 functions and macros.
530 Related Overviews: @ref overview_debugging
532 @see @ref group_funcmacro_debug "Debugging Functions and Macros"
534 @li wxDebugContext: Provides memory-checking facilities
535 @li wxDebugReport: Base class for creating debug reports in case of a program
537 @li wxDebugReportCompress: Class for creating compressed debug reports.
538 @li wxDebugReportUpload: Class for uploading compressed debug reports via HTTP.
539 @li wxDebugReportPreview: Abstract base class for previewing the contents of a
541 @li wxDebugReportPreviewStd: Standard implementation of wxDebugReportPreview.
545 @section page_class_cat_net Networking
547 wxWidgets provides its own classes for socket based networking.
549 @li wxDialUpManager: Provides functions to check the status of network
550 connection and to establish one
551 @li wxIPV4address: Represents an Internet address
552 @li wxIPaddress: Represents an Internet address
553 @li wxSocketBase: Represents a socket base object
554 @li wxSocketClient: Represents a socket client
555 @li wxSocketServer: Represents a socket server
556 @li wxSocketEvent: A socket event
557 @li wxFTP: FTP protocol class
558 @li wxHTTP: HTTP protocol class
559 @li wxURL: Represents a Universal Resource Locator
563 @section page_class_cat_ipc Interprocess Communication
565 wxWidgets provides simple interprocess communications facilities based on
566 Windows DDE, but available on most platforms using TCP.
568 Related Overviews: @ref overview_ipc
570 @li wxClient, wxDDEClient: Represents a client
571 @li wxConnection, wxDDEConnection: Represents the connection between a client
573 @li wxServer, wxDDEServer: Represents a server
577 @section page_class_cat_dvf Document/View Framework
579 wxWidgets supports a document/view framework which provides housekeeping for a
580 document-centric application.
582 Related Overviews: @ref overview_docview
584 @li wxCommand: Base class for undo/redo actions
585 @li wxCommandProcessor: Maintains the undo/redo stack
586 @li wxDocument: Represents a document
587 @li wxView: Represents a view
588 @li wxDocTemplate: Manages the relationship between a document class and a
590 @li wxDocManager: Manages the documents and views in an application
591 @li wxDocChildFrame: A child frame for showing a document view
592 @li wxDocParentFrame: A parent frame to contain views
593 @li wxDocMDIChildFrame: An MDI child frame for showing a document view
594 @li wxDocMDIParentFrame: An MDI parent frame to contain views
595 @li wxFileHistory: Maintains a list of the most recently visited files
599 @section page_class_cat_printing Printing Framework
601 A printing and previewing framework is implemented to make it relatively
602 straightforward to provide document printing facilities.
604 Related Overviews: @ref overview_printing
606 @li wxPreviewFrame: Frame for displaying a print preview
607 @li wxPreviewCanvas: Canvas for displaying a print preview
608 @li wxPreviewControlBar: Standard control bar for a print preview
609 @li wxPrintDialog: Standard print dialog
610 @li wxPageSetupDialog: Standard page setup dialog
611 @li wxPrinter: Class representing the printer
612 @li wxPrinterDC: Printer device context
613 @li wxPrintout: Class representing a particular printout
614 @li wxPrintPreview: Class representing a print preview
615 @li wxPrintData: Represents information about the document being printed
616 @li wxPrintDialogData: Represents information about the print dialog
617 @li wxPageSetupDialogData: Represents information about the page setup dialog
621 @section page_class_cat_dnd Clipboard and Drag & Drop
623 Related Overviews: @ref overview_dnd
625 @li wxDataObject: Data object class
626 @li wxDataFormat: Represents a data format
627 @li wxTextDataObject: Text data object class
628 @li wxFileDataObject: File data object class
629 @li wxBitmapDataObject: Bitmap data object class
630 @li wxURLDataObject: URL data object class
631 @li wxCustomDataObject: Custom data object class
632 @li wxClipboard: Clipboard class
633 @li wxDropTarget: Drop target class
634 @li wxFileDropTarget: File drop target class
635 @li wxTextDropTarget: Text drop target class
636 @li wxDropSource: Drop source class
640 @section page_class_cat_file File Handling
642 wxWidgets has several small classes to work with disk files and directories.
644 Related Overviews: @ref overview_file
646 @li wxFileName: Operations with the file name and attributes
647 @li wxDir: Class for enumerating files/subdirectories.
648 @li wxDirTraverser: Class used together with wxDir for recursively enumerating
649 the files/subdirectories
650 @li wxFile: Low-level file input/output class.
651 @li wxFFile: Another low-level file input/output class.
652 @li wxTempFile: Class to safely replace an existing file
653 @li wxTextFile: Class for working with text files as with arrays of lines
654 @li wxStandardPaths: Paths for standard directories
655 @li wxPathList: A class to help search multiple paths
659 @section page_class_cat_vfs Virtual File System
661 wxWidgets provides a set of classes that implement an extensible virtual file
662 system, used internally by the HTML classes.
664 @li wxFSFile: Represents a file in the virtual file system
665 @li wxFileSystem: Main interface for the virtual file system
666 @li wxFileSystemHandler: Class used to announce file system type
670 @section page_class_cat_streams Streams
672 wxWidgets has its own set of stream classes, as an alternative to often buggy
673 standard stream libraries, and to provide enhanced functionality.
675 @li wxStreamBase: Stream base class
676 @li wxStreamBuffer: Stream buffer class
677 @li wxInputStream: Input stream class
678 @li wxOutputStream: Output stream class
679 @li wxCountingOutputStream: Stream class for querying what size a stream would
681 @li wxFilterInputStream: Filtered input stream class
682 @li wxFilterOutputStream: Filtered output stream class
683 @li wxBufferedInputStream: Buffered input stream class
684 @li wxBufferedOutputStream: Buffered output stream class
685 @li wxMemoryInputStream: Memory input stream class
686 @li wxMemoryOutputStream: Memory output stream class
687 @li wxDataInputStream: Platform-independent binary data input stream class
688 @li wxDataOutputStream: Platform-independent binary data output stream class
689 @li wxTextInputStream: Platform-independent text data input stream class
690 @li wxTextOutputStream: Platform-independent text data output stream class
691 @li wxFileInputStream: File input stream class
692 @li wxFileOutputStream: File output stream class
693 @li wxFFileInputStream: Another file input stream class
694 @li wxFFileOutputStream: Another file output stream class
695 @li wxTempFileOutputStream: Stream to safely replace an existing file
696 @li wxStringInputStream: String input stream class
697 @li wxStringOutputStream: String output stream class
698 @li wxZlibInputStream: Zlib and gzip (compression) input stream class
699 @li wxZlibOutputStream: Zlib and gzip (compression) output stream class
700 @li wxZipInputStream: Input stream for reading from ZIP archives
701 @li wxZipOutputStream: Output stream for writing from ZIP archives
702 @li wxTarInputStream: Input stream for reading from tar archives
703 @li wxTarOutputStream: Output stream for writing from tar archives
704 @li wxSocketInputStream: Socket input stream class
705 @li wxSocketOutputStream: Socket output stream class
709 @section page_class_cat_threading Threading
711 wxWidgets provides a set of classes to make use of the native thread
712 capabilities of the various platforms.
714 Related Overviews: @ref overview_thread
716 @li wxThread: Thread class
717 @li wxThreadHelper: Manages background threads easily
718 @li wxMutex: Mutex class
719 @li wxMutexLocker: Mutex locker utility class
720 @li wxCriticalSection: Critical section class
721 @li wxCriticalSectionLocker: Critical section locker utility class
722 @li wxCondition: Condition class
723 @li wxSemaphore: Semaphore class
727 @section page_class_cat_rtti Runtime Type Information (RTTI)
729 wxWidgets supports runtime manipulation of class information, and dynamic
730 creation of objects given class names.
732 Related Overviews: @ref overview_rtti
734 @see @ref group_funcmacro_rtti "RTTI Functions and Macros"
736 @li wxClassInfo: Holds runtime class information
737 @li wxObject: Root class for classes with runtime information
741 @section page_class_cat_appmanagement Application and Process Management
743 @li wxApp: Application class
744 @li wxCmdLineParser: Command line parser class
745 @li wxDllLoader: Class to work with shared libraries.
746 @li wxProcess: Process class
750 @section page_class_cat_stc Scintilla Text Editor
752 wxWidgets also provides a wrapper around the Scintilla text editor control,
753 which is a control for plain-text editing with support for highlighting, smart
756 @li wxStyledTextCtrl: A wxWidgets implementation of the Scintilla source code
761 @section page_class_cat_xml XML
763 @li wxXmlDocument: A class to parse XML files
764 @li wxXmlNode: A class which represents XML nodes
765 @li wxXmlAttribute: A class which represent an XML attribute
769 @section page_class_cat_xrc XML Based Resource System (XRC)
771 Resources allow your application to create controls and other user interface
772 elements from specifications stored in an XML format.
774 Related Overviews: @ref overview_xrc
776 @li wxXmlResource: The main class for working with resources
777 @li wxXmlResourceHandler: The base class for XML resource handlers
781 @section page_class_cat_help Help
783 @li wxHelpController: Family of classes for controlling help windows
784 @li wxHtmlHelpController: HTML help controller class
785 @li wxContextHelp: Class to put application into context-sensitive help mode
786 @li wxContextHelpButton: Button class for putting application into
787 context-sensitive help mode
788 @li wxHelpProvider: Abstract class for context-sensitive help provision
789 @li wxSimpleHelpProvider: Class for simple context-sensitive help provision
790 @li wxHelpControllerHelpProvider: Class for context-sensitive help provision
791 via a help controller
792 @li wxToolTip: Class implementing tooltips
796 @section page_class_cat_media Multimedia
798 @li wxMediaCtrl: Display multimedia contents.
802 @section page_class_cat_gl OpenGL
804 @li wxGLCanvas: Canvas that you can render OpenGL calls to.
805 @li wxGLContext: Class to ease sharing of OpenGL data resources.
809 @section page_class_cat_archive Archive
811 @li wxArchiveInputStream
812 @li wxArchiveOutputStream
817 @section page_class_cat_misc Miscellaneous
819 @li wxCaret: A caret (cursor) object
820 @li wxConfigBase: Classes for reading/writing the configuration settings
821 @li wxTimer: Timer class
822 @li wxStopWatch: Stop watch class
823 @li wxMimeTypesManager: MIME-types manager class
824 @li wxSystemSettings: System settings class for obtaining various global
826 @li wxSystemOptions: System options class for run-time configuration
827 @li wxAcceleratorTable: Accelerator table
828 @li wxAutomationObject: OLE automation class
829 @li wxFontMapper: Font mapping, finding suitable font for given encoding
830 @li wxEncodingConverter: Encoding conversions
831 @li wxCalendarDateAttr: Used with wxCalendarCtrl
832 @li wxQuantize: Class to perform quantization, or colour reduction
833 @li wxSingleInstanceChecker: Check that only single program instance is running