|
Defines |
#define | wxINT32_SWAP_ALWAYS(wxInt32_value) |
| This macro will swap the bytes of the value variable from little endian to big endian or vice versa unconditionally, i.e.
|
#define | wxUINT32_SWAP_ALWAYS(wxUint32_value) |
#define | wxINT16_SWAP_ALWAYS(wxInt16_value) |
#define | wxUINT16_SWAP_ALWAYS(wxUint16_value) |
#define | wxINT32_SWAP_ON_BE(wxInt32_value) |
| This macro will swap the bytes of the value variable from little endian to big endian or vice versa if the program is compiled on a big-endian architecture (such as Sun work stations).
|
#define | wxUINT32_SWAP_ON_BE(wxUint32_value) |
#define | wxINT16_SWAP_ON_BE(wxInt16_value) |
#define | wxUINT16_SWAP_ON_BE(wxUint16_value) |
#define | wxINT32_SWAP_ON_LE(wxInt32_value) |
| This macro will swap the bytes of the value variable from little endian to big endian or vice versa if the program is compiled on a little-endian architecture (such as Intel PCs).
|
#define | wxUINT32_SWAP_ON_LE(wxUint32_value) |
#define | wxINT16_SWAP_ON_LE(wxInt16_value) |
#define | wxUINT16_SWAP_ON_LE(wxUint16_value) |
#define | wxDECLARE_NO_ASSIGN_CLASS(classname) |
| This macro can be used in a class declaration to disable the generation of default assignment operator.
|
#define | wxDECLARE_NO_COPY_CLASS(classname) |
| This macro can be used in a class declaration to disable the generation of default copy ctor and assignment operator.
|
#define | wxDECLARE_NO_COPY_TEMPLATE_CLASS(classname, arg) |
| Analog of wxDECLARE_NO_COPY_CLASS() for template classes.
|
#define | wxDECLARE_NO_COPY_TEMPLATE_CLASS_2(classname, arg1, arg2) |
| Analog of wxDECLARE_NO_COPY_TEMPLATE_CLASS() for templates with 2 parameters.
|
#define | wxDEPRECATED(function) |
| This macro can be used around a function declaration to generate warnings indicating that this function is deprecated (i.e.
|
#define | wxDEPRECATED_BUT_USED_INTERNALLY(function) |
| This is a special version of wxDEPRECATED() macro which only does something when the deprecated function is used from the code outside wxWidgets itself but doesn't generate warnings when it is used from wxWidgets.
|
#define | wxDEPRECATED_INLINE(func, body) |
| This macro is similar to wxDEPRECATED() but can be used to not only declare the function function as deprecated but to also provide its (inline) implementation body.
|
#define | wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(func, body) |
| Combination of wxDEPRECATED_BUT_USED_INTERNALLY() and wxDEPRECATED_INLINE().
|
#define | wxEXPLICIT |
| wxEXPLICIT is a macro which expands to the C++ explicit keyword if the compiler supports it or nothing otherwise.
|
#define | wxSUPPRESS_GCC_PRIVATE_DTOR_WARNING(name) |
| GNU C++ compiler gives a warning for any class whose destructor is private unless it has a friend.
|
Typedefs |
typedef int | wxCoord |
| The type for screen and DC coordinates.
|
typedef float | wxFloat32 |
| 32 bit IEEE float ( 1 sign, 8 exponent bits, 23 fraction bits ).
|
typedef double | wxFloat64 |
| 64 bit IEEE float ( 1 sign, 11 exponent bits, 52 fraction bits ).
|
typedef double | wxDouble |
| Native fastest representation that has at least wxFloat64 precision, so use the IEEE types for storage, and this for calculations.
|
|
typedef signed char | wxInt8 |
| 8 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef unsigned char | wxUint8 |
| 8 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef wxUint8 | wxByte |
| 8 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
|
typedef signed short | wxInt16 |
| 16 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef unsigned short | wxUint16 |
| 16 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef wxUint16 | wxWord |
| 16 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef wxUint16 | wxChar16 |
| 16 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
|
typedef int | wxInt32 |
| 32 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef unsigned int | wxUint32 |
| 32 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef wxUint32 | wxDword |
| 32 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef wxUint32 | wxChar32 |
| 32 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
|
typedef wxLongLong_t | wxInt64 |
| 64 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
typedef wxULongLong_t | wxUint64 |
| 64 bit type (the mapping is more complex than a simple typedef and is not shown here).
|
|
typedef ssize_t | wxIntPtr |
| Signed and unsigned integral types big enough to contain all of long , size_t and void* .
|
typedef size_t | wxUIntPtr |
| Signed and unsigned integral types big enough to contain all of long , size_t and void* .
|
Enumerations |
enum | wxGeometryCentre {
wxCENTRE = 0x0001,
wxCENTER = wxCENTRE
} |
| Generic flags. More...
|
enum | wxOrientation {
wxHORIZONTAL = 0x0004,
wxVERTICAL = 0x0008,
wxBOTH = wxVERTICAL | wxHORIZONTAL,
wxORIENTATION_MASK = wxBOTH
} |
| A generic orientation value. More...
|
enum | wxDirection {
wxLEFT = 0x0010,
wxRIGHT = 0x0020,
wxUP = 0x0040,
wxDOWN = 0x0080,
wxTOP = wxUP,
wxBOTTOM = wxDOWN,
wxNORTH = wxUP,
wxSOUTH = wxDOWN,
wxWEST = wxLEFT,
wxEAST = wxRIGHT,
wxALL = (wxUP | wxDOWN | wxRIGHT | wxLEFT),
wxDIRECTION_MASK = wxALL
} |
| A generic direction value. More...
|
enum | wxAlignment {
wxALIGN_NOT = 0x0000,
wxALIGN_CENTER_HORIZONTAL = 0x0100,
wxALIGN_CENTRE_HORIZONTAL = wxALIGN_CENTER_HORIZONTAL,
wxALIGN_LEFT = wxALIGN_NOT,
wxALIGN_TOP = wxALIGN_NOT,
wxALIGN_RIGHT = 0x0200,
wxALIGN_BOTTOM = 0x0400,
wxALIGN_CENTER_VERTICAL = 0x0800,
wxALIGN_CENTRE_VERTICAL = wxALIGN_CENTER_VERTICAL,
wxALIGN_CENTER = (wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTER_VERTICAL),
wxALIGN_CENTRE = wxALIGN_CENTER,
wxALIGN_MASK = 0x0f00
} |
| Generic alignment values. More...
|
enum | wxSizerFlagBits {
wxFIXED_MINSIZE = 0x8000,
wxRESERVE_SPACE_EVEN_IF_HIDDEN = 0x0002,
wxSIZER_FLAG_BITS_MASK = 0x8002
} |
| Miscellaneous flags for wxSizer items. More...
|
enum | wxStretch {
wxSTRETCH_NOT = 0x0000,
wxSHRINK = 0x1000,
wxGROW = 0x2000,
wxEXPAND = wxGROW,
wxSHAPED = 0x4000,
wxTILE = wxSHAPED | wxFIXED_MINSIZE,
wxSTRETCH_MASK = 0x7000
} |
| Generic stretch values. More...
|
enum | wxBorder {
wxBORDER_DEFAULT = 0,
wxBORDER_NONE = 0x00200000,
wxBORDER_STATIC = 0x01000000,
wxBORDER_SIMPLE = 0x02000000,
wxBORDER_RAISED = 0x04000000,
wxBORDER_SUNKEN = 0x08000000,
wxBORDER_DOUBLE = 0x10000000,
wxBORDER_THEME = wxBORDER_DOUBLE,
wxBORDER_MASK = 0x1f200000
} |
| Border flags for wxWindow. More...
|
enum | wxBackgroundStyle {
wxBG_STYLE_SYSTEM,
wxBG_STYLE_COLOUR,
wxBG_STYLE_CUSTOM,
wxBG_STYLE_TRANSPARENT
} |
| Background styles. More...
|
enum | wxStandardID {
wxID_AUTO_LOWEST,
wxID_AUTO_HIGHEST,
wxID_NONE = -3,
wxID_SEPARATOR = -2,
wxID_ANY = -1,
wxID_LOWEST = 4999,
wxID_OPEN,
wxID_CLOSE,
wxID_NEW,
wxID_SAVE,
wxID_SAVEAS,
wxID_REVERT,
wxID_EXIT,
wxID_UNDO,
wxID_REDO,
wxID_HELP,
wxID_PRINT,
wxID_PRINT_SETUP,
wxID_PAGE_SETUP,
wxID_PREVIEW,
wxID_ABOUT,
wxID_HELP_CONTENTS,
wxID_HELP_INDEX,
wxID_HELP_SEARCH,
wxID_HELP_COMMANDS,
wxID_HELP_PROCEDURES,
wxID_HELP_CONTEXT,
wxID_CLOSE_ALL,
wxID_PREFERENCES,
wxID_EDIT = 5030,
wxID_CUT,
wxID_COPY,
wxID_PASTE,
wxID_CLEAR,
wxID_FIND,
wxID_DUPLICATE,
wxID_SELECTALL,
wxID_DELETE,
wxID_REPLACE,
wxID_REPLACE_ALL,
wxID_PROPERTIES,
wxID_VIEW_DETAILS,
wxID_VIEW_LARGEICONS,
wxID_VIEW_SMALLICONS,
wxID_VIEW_LIST,
wxID_VIEW_SORTDATE,
wxID_VIEW_SORTNAME,
wxID_VIEW_SORTSIZE,
wxID_VIEW_SORTTYPE,
wxID_FILE = 5050,
wxID_FILE1,
wxID_FILE2,
wxID_FILE3,
wxID_FILE4,
wxID_FILE5,
wxID_FILE6,
wxID_FILE7,
wxID_FILE8,
wxID_FILE9,
wxID_OK = 5100,
wxID_CANCEL,
wxID_APPLY,
wxID_YES,
wxID_NO,
wxID_STATIC,
wxID_FORWARD,
wxID_BACKWARD,
wxID_DEFAULT,
wxID_MORE,
wxID_SETUP,
wxID_RESET,
wxID_CONTEXT_HELP,
wxID_YESTOALL,
wxID_NOTOALL,
wxID_ABORT,
wxID_RETRY,
wxID_IGNORE,
wxID_ADD,
wxID_REMOVE,
wxID_UP,
wxID_DOWN,
wxID_HOME,
wxID_REFRESH,
wxID_STOP,
wxID_INDEX,
wxID_BOLD,
wxID_ITALIC,
wxID_JUSTIFY_CENTER,
wxID_JUSTIFY_FILL,
wxID_JUSTIFY_RIGHT,
wxID_JUSTIFY_LEFT,
wxID_UNDERLINE,
wxID_INDENT,
wxID_UNINDENT,
wxID_ZOOM_100,
wxID_ZOOM_FIT,
wxID_ZOOM_IN,
wxID_ZOOM_OUT,
wxID_UNDELETE,
wxID_REVERT_TO_SAVED,
wxID_CDROM,
wxID_CONVERT,
wxID_EXECUTE,
wxID_FLOPPY,
wxID_HARDDISK,
wxID_BOTTOM,
wxID_FIRST,
wxID_LAST,
wxID_TOP,
wxID_INFO,
wxID_JUMP_TO,
wxID_NETWORK,
wxID_SELECT_COLOR,
wxID_SELECT_FONT,
wxID_SORT_ASCENDING,
wxID_SORT_DESCENDING,
wxID_SPELL_CHECK,
wxID_STRIKETHROUGH,
wxID_SYSTEM_MENU = 5200,
wxID_CLOSE_FRAME,
wxID_MOVE_FRAME,
wxID_RESIZE_FRAME,
wxID_MAXIMIZE_FRAME,
wxID_ICONIZE_FRAME,
wxID_RESTORE_FRAME,
wxID_MDI_WINDOW_FIRST = 5230,
wxID_MDI_WINDOW_CASCADE = wxID_MDI_WINDOW_FIRST,
wxID_MDI_WINDOW_TILE_HORZ,
wxID_MDI_WINDOW_TILE_VERT,
wxID_MDI_WINDOW_ARRANGE_ICONS,
wxID_MDI_WINDOW_PREV,
wxID_MDI_WINDOW_NEXT,
wxID_MDI_WINDOW_LAST = wxID_MDI_WINDOW_NEXT,
wxID_FILEDLGG = 5900,
wxID_FILECTRL = 5950,
wxID_HIGHEST = 5999
} |
| Standard menu IDs. More...
|
enum | wxItemKind {
wxITEM_SEPARATOR = -1,
wxITEM_NORMAL,
wxITEM_CHECK,
wxITEM_RADIO,
wxITEM_DROPDOWN,
wxITEM_MAX
} |
| Item kinds for use with wxMenu, wxMenuItem, and wxToolBar. More...
|
enum | wxHitTest {
wxHT_NOWHERE,
wxHT_SCROLLBAR_FIRST = wxHT_NOWHERE,
wxHT_SCROLLBAR_ARROW_LINE_1,
wxHT_SCROLLBAR_ARROW_LINE_2,
wxHT_SCROLLBAR_ARROW_PAGE_1,
wxHT_SCROLLBAR_ARROW_PAGE_2,
wxHT_SCROLLBAR_THUMB,
wxHT_SCROLLBAR_BAR_1,
wxHT_SCROLLBAR_BAR_2,
wxHT_SCROLLBAR_LAST,
wxHT_WINDOW_OUTSIDE,
wxHT_WINDOW_INSIDE,
wxHT_WINDOW_VERT_SCROLLBAR,
wxHT_WINDOW_HORZ_SCROLLBAR,
wxHT_WINDOW_CORNER,
wxHT_MAX
} |
| Generic hit test results. More...
|
enum | wxDataFormatId {
wxDF_INVALID = 0,
wxDF_TEXT = 1,
wxDF_BITMAP = 2,
wxDF_METAFILE = 3,
wxDF_SYLK = 4,
wxDF_DIF = 5,
wxDF_TIFF = 6,
wxDF_OEMTEXT = 7,
wxDF_DIB = 8,
wxDF_PALETTE = 9,
wxDF_PENDATA = 10,
wxDF_RIFF = 11,
wxDF_WAVE = 12,
wxDF_UNICODETEXT = 13,
wxDF_ENHMETAFILE = 14,
wxDF_FILENAME = 15,
wxDF_LOCALE = 16,
wxDF_PRIVATE = 20,
wxDF_HTML = 30,
wxDF_MAX
} |
| Data format IDs used by wxDataFormat. More...
|
enum | wxKeyCode {
WXK_BACK = 8,
WXK_TAB = 9,
WXK_RETURN = 13,
WXK_ESCAPE = 27,
WXK_SPACE = 32,
WXK_DELETE = 127,
WXK_START = 300,
WXK_LBUTTON,
WXK_RBUTTON,
WXK_CANCEL,
WXK_MBUTTON,
WXK_CLEAR,
WXK_SHIFT,
WXK_ALT,
WXK_CONTROL,
WXK_MENU,
WXK_PAUSE,
WXK_CAPITAL,
WXK_END,
WXK_HOME,
WXK_LEFT,
WXK_UP,
WXK_RIGHT,
WXK_DOWN,
WXK_SELECT,
WXK_PRINT,
WXK_EXECUTE,
WXK_SNAPSHOT,
WXK_INSERT,
WXK_HELP,
WXK_NUMPAD0,
WXK_NUMPAD1,
WXK_NUMPAD2,
WXK_NUMPAD3,
WXK_NUMPAD4,
WXK_NUMPAD5,
WXK_NUMPAD6,
WXK_NUMPAD7,
WXK_NUMPAD8,
WXK_NUMPAD9,
WXK_MULTIPLY,
WXK_ADD,
WXK_SEPARATOR,
WXK_SUBTRACT,
WXK_DECIMAL,
WXK_DIVIDE,
WXK_F1,
WXK_F2,
WXK_F3,
WXK_F4,
WXK_F5,
WXK_F6,
WXK_F7,
WXK_F8,
WXK_F9,
WXK_F10,
WXK_F11,
WXK_F12,
WXK_F13,
WXK_F14,
WXK_F15,
WXK_F16,
WXK_F17,
WXK_F18,
WXK_F19,
WXK_F20,
WXK_F21,
WXK_F22,
WXK_F23,
WXK_F24,
WXK_NUMLOCK,
WXK_SCROLL,
WXK_PAGEUP,
WXK_PAGEDOWN,
WXK_NUMPAD_SPACE,
WXK_NUMPAD_TAB,
WXK_NUMPAD_ENTER,
WXK_NUMPAD_F1,
WXK_NUMPAD_F2,
WXK_NUMPAD_F3,
WXK_NUMPAD_F4,
WXK_NUMPAD_HOME,
WXK_NUMPAD_LEFT,
WXK_NUMPAD_UP,
WXK_NUMPAD_RIGHT,
WXK_NUMPAD_DOWN,
WXK_NUMPAD_PAGEUP,
WXK_NUMPAD_PAGEDOWN,
WXK_NUMPAD_END,
WXK_NUMPAD_BEGIN,
WXK_NUMPAD_INSERT,
WXK_NUMPAD_DELETE,
WXK_NUMPAD_EQUAL,
WXK_NUMPAD_MULTIPLY,
WXK_NUMPAD_ADD,
WXK_NUMPAD_SEPARATOR,
WXK_NUMPAD_SUBTRACT,
WXK_NUMPAD_DECIMAL,
WXK_NUMPAD_DIVIDE,
WXK_WINDOWS_LEFT,
WXK_WINDOWS_RIGHT,
WXK_WINDOWS_MENU,
WXK_COMMAND,
WXK_SPECIAL1 = 193,
WXK_SPECIAL2,
WXK_SPECIAL3,
WXK_SPECIAL4,
WXK_SPECIAL5,
WXK_SPECIAL6,
WXK_SPECIAL7,
WXK_SPECIAL8,
WXK_SPECIAL9,
WXK_SPECIAL10,
WXK_SPECIAL11,
WXK_SPECIAL12,
WXK_SPECIAL13,
WXK_SPECIAL14,
WXK_SPECIAL15,
WXK_SPECIAL16,
WXK_SPECIAL17,
WXK_SPECIAL18,
WXK_SPECIAL19,
WXK_SPECIAL20
} |
| Virtual keycodes used by wxKeyEvent and some other wxWidgets functions. More...
|
enum | wxKeyModifier {
wxMOD_NONE = 0x0000,
wxMOD_ALT = 0x0001,
wxMOD_CONTROL = 0x0002,
wxMOD_ALTGR = wxMOD_ALT | wxMOD_CONTROL,
wxMOD_SHIFT = 0x0004,
wxMOD_META = 0x0008,
wxMOD_WIN = wxMOD_META,
wxMOD_CMD = wxMOD_META,
wxMOD_ALL = 0xffff
} |
| This enum contains bit mask constants used in wxKeyEvent. More...
|
enum | wxPaperSize {
wxPAPER_NONE,
wxPAPER_LETTER,
wxPAPER_LEGAL,
wxPAPER_A4,
wxPAPER_CSHEET,
wxPAPER_DSHEET,
wxPAPER_ESHEET,
wxPAPER_LETTERSMALL,
wxPAPER_TABLOID,
wxPAPER_LEDGER,
wxPAPER_STATEMENT,
wxPAPER_EXECUTIVE,
wxPAPER_A3,
wxPAPER_A4SMALL,
wxPAPER_A5,
wxPAPER_B4,
wxPAPER_B5,
wxPAPER_FOLIO,
wxPAPER_QUARTO,
wxPAPER_10X14,
wxPAPER_11X17,
wxPAPER_NOTE,
wxPAPER_ENV_9,
wxPAPER_ENV_10,
wxPAPER_ENV_11,
wxPAPER_ENV_12,
wxPAPER_ENV_14,
wxPAPER_ENV_DL,
wxPAPER_ENV_C5,
wxPAPER_ENV_C3,
wxPAPER_ENV_C4,
wxPAPER_ENV_C6,
wxPAPER_ENV_C65,
wxPAPER_ENV_B4,
wxPAPER_ENV_B5,
wxPAPER_ENV_B6,
wxPAPER_ENV_ITALY,
wxPAPER_ENV_MONARCH,
wxPAPER_ENV_PERSONAL,
wxPAPER_FANFOLD_US,
wxPAPER_FANFOLD_STD_GERMAN,
wxPAPER_FANFOLD_LGL_GERMAN,
wxPAPER_ISO_B4,
wxPAPER_JAPANESE_POSTCARD,
wxPAPER_9X11,
wxPAPER_10X11,
wxPAPER_15X11,
wxPAPER_ENV_INVITE,
wxPAPER_LETTER_EXTRA,
wxPAPER_LEGAL_EXTRA,
wxPAPER_TABLOID_EXTRA,
wxPAPER_A4_EXTRA,
wxPAPER_LETTER_TRANSVERSE,
wxPAPER_A4_TRANSVERSE,
wxPAPER_LETTER_EXTRA_TRANSVERSE,
wxPAPER_A_PLUS,
wxPAPER_B_PLUS,
wxPAPER_LETTER_PLUS,
wxPAPER_A4_PLUS,
wxPAPER_A5_TRANSVERSE,
wxPAPER_B5_TRANSVERSE,
wxPAPER_A3_EXTRA,
wxPAPER_A5_EXTRA,
wxPAPER_B5_EXTRA,
wxPAPER_A2,
wxPAPER_A3_TRANSVERSE,
wxPAPER_A3_EXTRA_TRANSVERSE,
wxPAPER_DBL_JAPANESE_POSTCARD,
wxPAPER_A6,
wxPAPER_JENV_KAKU2,
wxPAPER_JENV_KAKU3,
wxPAPER_JENV_CHOU3,
wxPAPER_JENV_CHOU4,
wxPAPER_LETTER_ROTATED,
wxPAPER_A3_ROTATED,
wxPAPER_A4_ROTATED,
wxPAPER_A5_ROTATED,
wxPAPER_B4_JIS_ROTATED,
wxPAPER_B5_JIS_ROTATED,
wxPAPER_JAPANESE_POSTCARD_ROTATED,
wxPAPER_DBL_JAPANESE_POSTCARD_ROTATED,
wxPAPER_A6_ROTATED,
wxPAPER_JENV_KAKU2_ROTATED,
wxPAPER_JENV_KAKU3_ROTATED,
wxPAPER_JENV_CHOU3_ROTATED,
wxPAPER_JENV_CHOU4_ROTATED,
wxPAPER_B6_JIS,
wxPAPER_B6_JIS_ROTATED,
wxPAPER_12X11,
wxPAPER_JENV_YOU4,
wxPAPER_JENV_YOU4_ROTATED,
wxPAPER_P16K,
wxPAPER_P32K,
wxPAPER_P32KBIG,
wxPAPER_PENV_1,
wxPAPER_PENV_2,
wxPAPER_PENV_3,
wxPAPER_PENV_4,
wxPAPER_PENV_5,
wxPAPER_PENV_6,
wxPAPER_PENV_7,
wxPAPER_PENV_8,
wxPAPER_PENV_9,
wxPAPER_PENV_10,
wxPAPER_P16K_ROTATED,
wxPAPER_P32K_ROTATED,
wxPAPER_P32KBIG_ROTATED,
wxPAPER_PENV_1_ROTATED,
wxPAPER_PENV_2_ROTATED,
wxPAPER_PENV_3_ROTATED,
wxPAPER_PENV_4_ROTATED,
wxPAPER_PENV_5_ROTATED,
wxPAPER_PENV_6_ROTATED,
wxPAPER_PENV_7_ROTATED,
wxPAPER_PENV_8_ROTATED,
wxPAPER_PENV_9_ROTATED,
wxPAPER_PENV_10_ROTATED
} |
| Paper size types for use with the printing framework. More...
|
enum | wxDuplexMode {
wxDUPLEX_SIMPLEX,
wxDUPLEX_HORIZONTAL,
wxDUPLEX_VERTICAL
} |
| Duplex printing modes. More...
|
enum | wxPrintMode {
wxPRINT_MODE_NONE = 0,
wxPRINT_MODE_PREVIEW = 1,
wxPRINT_MODE_FILE = 2,
wxPRINT_MODE_PRINTER = 3,
wxPRINT_MODE_STREAM = 4
} |
| Print mode (currently PostScript only). More...
|
enum | wxUpdateUI {
wxUPDATE_UI_NONE,
wxUPDATE_UI_RECURSE,
wxUPDATE_UI_FROMIDLE
} |
| Flags which can be used in wxWindow::UpdateWindowUI(). More...
|
Functions |
template<typename T > |
| wxDELETE (T *&ptr) |
| A function which deletes and nulls the pointer.
|
template<typename T > |
| wxDELETEA (T *&array) |
| A function which deletes and nulls the pointer.
|
template<typename T > |
| wxSwap (T &first, T &second) |
| Swaps the contents of two variables.
|
void | wxVaCopy (va_list argptrDst, va_list argptrSrc) |
| This macro is the same as the standard C99 va_copy for the compilers which support it or its replacement for those that don't.
|
Variables |
wxCoord | wxDefaultCoord = -1 |
| A special value meaning "use default coordinate".
|