]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_defs.i
default values for option and flag (TODO: preferences dialog)
[wxWidgets.git] / wxPython / src / _defs.i
CommitLineData
7bf85405
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: _defs.i
3// Purpose: Definitions and stuff
4//
5// Author: Robin Dunn
6//
7// Created: 6/24/97
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13
ab1f7d2a 14//---------------------------------------------------------------------------
ab1f7d2a 15
214c4fbe 16// Globally turn on the autodoc feature
dd9f7fea
RD
17%feature("autodoc", "1"); // 0 == no param types, 1 == show param types
18
2f810297
RD
19// Turn on kwargs by default
20%feature("kwargs", "1");
21
9c605285
RD
22// Don't generate separate wrappers for each default args combination
23%feature("compactdefaultargs");
24
214c4fbe 25#if SWIG_VERSION < 0x010328
9c605285
RD
26// Don't generate default ctors or dtors if the C++ doesn't have them
27%feature("nodefault");
214c4fbe 28#else
9c605285 29// This is the SWIG 1.3.28 way to do the above...
214c4fbe
RD
30%feature("nodefaultctor");
31%feature("nodefaultdtor");
32#endif
33
69555b5c
RD
34// For all items that don't have a %rename already, give them a %rename that
35// removes the leading 'wx' (except for wxEVT_* items.)
36%rename("%(wxpy)s") "";
37
214c4fbe
RD
38// For now, just supress the warning about using Python keywords as parameter
39// names. Will need to come back later and correct these rather than just
40// hide them...
41#pragma SWIG nowarn=314
9c605285 42
ab1f7d2a 43//---------------------------------------------------------------------------
ab1f7d2a 44
214c4fbe
RD
45// Tell SWIG to wrap all the wrappers with our thread protection
46%define %threadWrapperOn
ab1f7d2a
RD
47%exception {
48 PyThreadState* __tstate = wxPyBeginAllowThreads();
49 $action
50 wxPyEndAllowThreads(__tstate);
51 if (PyErr_Occurred()) SWIG_fail;
52}
214c4fbe
RD
53%enddef
54
55// This one will turn off the generation of the thread wrapper code
56%define %threadWrapperOff
7499bd88
RD
57%exception {
58 $action
59 if (PyErr_Occurred()) SWIG_fail;
60}
214c4fbe 61%enddef
ab1f7d2a 62
214c4fbe
RD
63// Turn it on by default
64%threadWrapperOn
ab1f7d2a
RD
65
66// This one can be used to add a check for an existing wxApp before the real
67// work is done. An exception is raised if there isn't one.
68%define MustHaveApp(name)
db9ba246
RD
69%exception name {
70 if (!wxPyCheckForApp()) SWIG_fail;
71 PyThreadState* __tstate = wxPyBeginAllowThreads();
72 $action
73 wxPyEndAllowThreads(__tstate);
74 if (PyErr_Occurred()) SWIG_fail;
75}
ab1f7d2a
RD
76%enddef
77
ab1f7d2a 78
1fce4e96 79// This macro can be used to disable the releasing of the GIL when calling the
7499bd88 80// C++ function. This is like using threadWrapperOff for just this function.
1fce4e96
RD
81%define KeepGIL(name)
82%exception name {
83 $action
84 if (PyErr_Occurred()) SWIG_fail;
85}
86%enddef
87
7bf85405 88//---------------------------------------------------------------------------
d14a1e28 89// some type definitions to simplify things for SWIG
af309447 90
d14a1e28
RD
91typedef int wxEventType;
92typedef unsigned int size_t;
93typedef unsigned int time_t;
94typedef unsigned char byte;
82bd6167 95typedef unsigned long wxUIntPtr;
d14a1e28 96
dd9f7fea
RD
97#define wxWindowID int
98#define wxCoord int
99#define wxInt32 int
100#define wxUint32 unsigned int
dd9f7fea 101
d14a1e28
RD
102
103//----------------------------------------------------------------------
104// Various SWIG macros and such
105
2b9048c5
RD
106#define %pythonAppend %feature("pythonappend")
107#define %pythonPrepend %feature("pythonprepend")
2f810297 108#define %noautodoc %feature("noautodoc")
3ea6e0ec 109
214c4fbe 110#if SWIG_VERSION >= 0x010327
080b9cbc 111#undef %kwargs
214c4fbe
RD
112#define %kwargs %feature("kwargs", "1")
113#define %nokwargs %feature("kwargs", "0")
114#else
115#define %kwargs %feature("kwargs")
116#define %nokwargs %feature("nokwargs")
117#endif
118
119#define %disownarg(typespec) %typemap(in) typespec = SWIGTYPE* DISOWN
120#define %cleardisown(typespec) %typemap(in) typespec
121
607a3fa0
RD
122#define %ref %feature("ref")
123#define %unref %feature("unref")
d14a1e28 124
d14a1e28
RD
125
126#ifndef %pythoncode
127#define %pythoncode %insert("python")
dd9f7fea 128#endif
d14a1e28
RD
129
130#define WXUNUSED(x) x
131
132
133// Given the name of a wxChar (or wxString) constant in C++, make
134// a static wxString for wxPython, and also let SWIG wrap it.
135%define MAKE_CONST_WXSTRING(strname)
136 %{ static const wxString wxPy##strname(wx##strname); %}
137 %immutable;
1b8c7ba6
RD
138 %rename(strname) wxPy##strname;
139 const wxString wxPy##strname;
d14a1e28
RD
140 %mutable;
141%enddef
142
b2dc1044 143%define MAKE_CONST_WXSTRING2(strname, val)
089142a5 144 %{ static const wxString wxPy##strname(val); %}
b2dc1044 145 %immutable;
1b8c7ba6
RD
146 %rename(strname) wxPy##strname;
147 const wxString wxPy##strname;
b2dc1044
RD
148 %mutable;
149%enddef
150
151%define MAKE_CONST_WXSTRING_NOSWIG(strname)
152 %{ static const wxString wxPy##strname(wx##strname); %}
153%enddef
b1462dfa 154
d14a1e28
RD
155// Generate code in the module init for the event types, since they may not be
156// initialized yet when they are used in the static swig_const_table.
157%typemap(consttab) wxEventType; // TODO: how to prevent code inserted into the consttab?
158%typemap(constcode) wxEventType "PyDict_SetItemString(d, \"$symname\", PyInt_FromLong($value));";
159
160
1cc14cea 161%define %property(NAME, STUFF...)
0eae5d09 162 %pythoncode { NAME = property(STUFF) }
1cc14cea 163%enddef
dd9f7fea 164
c25f90f6
RD
165
166%define setCallbackInfo(klass)
167 "klass._setCallbackInfo(self, self, klass)"
168%enddef
169
170
d07d2bc9
RD
171//----------------------------------------------------------------------
172// Macros for the docstring and autodoc features of SWIG. These will
173// help make the code look more readable, and pretty, as well as help
174// reduce typing in some cases.
dd9f7fea
RD
175
176// Set the docsring for the given full or partial declaration
d07d2bc9
RD
177#ifdef _DO_FULL_DOCS
178 %define DocStr(decl, docstr, details)
179 %feature("docstring") decl docstr details;
180 %enddef
181#else
182 %define DocStr(decl, docstr, details)
183 %feature("docstring") decl docstr;
184 %enddef
185#endif
186
dd9f7fea
RD
187
188// Set the autodoc string for a full or partial declaration
b2dc1044
RD
189%define DocA(decl, astr)
190 %feature("autodoc") decl astr;
191%enddef
dd9f7fea 192
dd9f7fea 193
d07d2bc9
RD
194// Set both the autodoc and docstring for a full or partial declaration
195#ifdef _DO_FULL_DOCS
196 %define DocAStr(decl, astr, docstr, details)
197 %feature("autodoc") decl astr;
198 %feature("docstring") decl docstr details
199 %enddef
200#else
201 %define DocAStr(decl, astr, docstr, details)
202 %feature("autodoc") decl astr;
203 %feature("docstring") decl docstr
204 %enddef
205#endif
dd9f7fea 206
d07d2bc9 207
dd9f7fea
RD
208
209
210// Set the docstring for a decl and then define the decl too. Must use the
211// full declaration of the item.
d07d2bc9
RD
212#ifdef _DO_FULL_DOCS
213 %define DocDeclStr(type, decl, docstr, details)
214 %feature("docstring") decl docstr details;
215 type decl
216 %enddef
217#else
218 %define DocDeclStr(type, decl, docstr, details)
219 %feature("docstring") decl docstr;
220 type decl
221 %enddef
222#endif
dd9f7fea 223
d07d2bc9
RD
224
225
dd9f7fea 226// As above, but also give the decl a new %name
d07d2bc9
RD
227#ifdef _DO_FULL_DOCS
228 %define DocDeclStrName(type, decl, docstr, details, newname)
229 %feature("docstring") decl docstr details;
1b8c7ba6
RD
230 %rename(newname) decl;
231 type decl
d07d2bc9
RD
232 %enddef
233#else
234 %define DocDeclStrName(type, decl, docstr, details, newname)
235 %feature("docstring") decl docstr;
1b8c7ba6
RD
236 %rename(newname) decl;
237 type decl
d07d2bc9
RD
238 %enddef
239#endif
240
dd9f7fea
RD
241
242// Set the autodoc string for a decl and then define the decl too. Must use the
243// full declaration of the item.
244%define DocDeclA(type, decl, astr)
245 %feature("autodoc") decl astr;
246 type decl
247%enddef
248
249// As above, but also give the decl a new %name
250%define DocDeclAName(type, decl, astr, newname)
251 %feature("autodoc") decl astr;
1b8c7ba6
RD
252 %rename(newname) decl;
253 type decl
dd9f7fea
RD
254%enddef
255
256
257
258// Set the autodoc and the docstring for a decl and then define the decl too.
259// Must use the full declaration of the item.
d07d2bc9 260#ifdef _DO_FULL_DOCS
a6ef7362 261 %define DocDeclAStr(type, decl, astr, docstr, details)
d07d2bc9
RD
262 %feature("autodoc") decl astr;
263 %feature("docstring") decl docstr details;
264 type decl
265 %enddef
266#else
a6ef7362 267 %define DocDeclAStr(type, decl, astr, docstr, details)
d07d2bc9
RD
268 %feature("autodoc") decl astr;
269 %feature("docstring") decl docstr;
270 type decl
271 %enddef
272#endif
dd9f7fea 273
d07d2bc9 274
dd9f7fea 275// As above, but also give the decl a new %name
d07d2bc9
RD
276#ifdef _DO_FULL_DOCS
277 %define DocDeclAStrName(type, decl, astr, docstr, details, newname)
278 %feature("autodoc") decl astr;
279 %feature("docstring") decl docstr details;
1b8c7ba6
RD
280 %rename(newname) decl;
281 type decl
d07d2bc9
RD
282 %enddef
283#else
284 %define DocDeclAStrName(type, decl, astr, docstr, details, newname)
285 %feature("autodoc") decl astr;
286 %feature("docstring") decl docstr;
1b8c7ba6
RD
287 %rename(newname) decl;
288 type decl
d07d2bc9
RD
289 %enddef
290#endif
dd9f7fea
RD
291
292
293
294// Set the docstring for a constructor decl and then define the decl too.
295// Must use the full declaration of the item.
d07d2bc9
RD
296#ifdef _DO_FULL_DOCS
297 %define DocCtorStr(decl, docstr, details)
298 %feature("docstring") decl docstr details;
299 decl
300 %enddef
301#else
302 %define DocCtorStr(decl, docstr, details)
303 %feature("docstring") decl docstr;
304 decl
305 %enddef
306#endif
dd9f7fea 307
d07d2bc9 308
dd9f7fea 309// As above, but also give the decl a new %name
d07d2bc9
RD
310#ifdef _DO_FULL_DOCS
311 %define DocCtorStrName(decl, docstr, details, newname)
312 %feature("docstring") decl docstr details;
1b8c7ba6
RD
313 %rename(newname) decl;
314 decl
d07d2bc9
RD
315 %enddef
316#else
317 %define DocCtorStrName(decl, docstr, details, newname)
318 %feature("docstring") decl docstr;
1b8c7ba6
RD
319 %rename(newname) decl;
320 decl
d07d2bc9
RD
321 %enddef
322#endif
dd9f7fea 323
d07d2bc9
RD
324
325// Set the autodoc string for a constructor decl and then define the decl too.
326// Must use the full declaration of the item.
dd9f7fea
RD
327%define DocCtorA(decl, astr)
328 %feature("autodoc") decl astr;
329 decl
330%enddef
331
332// As above, but also give the decl a new %name
d07d2bc9 333%define DocCtorAName(decl, astr, newname)
dd9f7fea 334 %feature("autodoc") decl astr;
1b8c7ba6
RD
335 %rename(newname) decl;
336 decl
dd9f7fea
RD
337%enddef
338
339
340
d07d2bc9
RD
341// Set the autodoc and the docstring for a constructor decl and then define
342// the decl too. Must use the full declaration of the item.
343#ifdef _DO_FULL_DOCS
344 %define DocCtorAStr(decl, astr, docstr, details)
345 %feature("autodoc") decl astr;
346 %feature("docstring") decl docstr details;
347 decl
348 %enddef
349#else
350 %define DocCtorAStr(decl, astr, docstr, details)
351 %feature("autodoc") decl astr;
352 %feature("docstring") decl docstr;
353 decl
354 %enddef
355#endif
dd9f7fea 356
dd9f7fea 357
d07d2bc9
RD
358
359// As above, but also give the decl a new %name
360#ifdef _DO_FULL_DOCS
361 %define DocCtorAStrName(decl, astr, docstr, details, newname)
362 %feature("autodoc") decl astr;
363 %feature("docstring") decl docstr details;
1b8c7ba6
RD
364 %rename(newname) decl;
365 decl
d07d2bc9
RD
366 %enddef
367#else
368 %define DocCtorAStrName(decl, astr, docstr, details, newname)
369 %feature("autodoc") decl astr;
370 %feature("docstring") decl docstr;
1b8c7ba6
RD
371 %rename(newname) decl;
372 decl
d07d2bc9
RD
373 %enddef
374#endif
1e0c8722 375
d07d2bc9 376
dd9f7fea 377
d14a1e28
RD
378%define %newgroup
379%pythoncode {
380%#---------------------------------------------------------------------------
dd9f7fea 381}
d14a1e28 382%enddef
7bf85405 383
1b8c7ba6
RD
384
385// A set of macros to make using %rename easier, since %name has been
386// deprecated...
387%define %Rename(newname, type, decl)
388 %rename(newname) decl;
389 type decl
390%enddef
391
392%define %RenameCtor(newname, decl)
393 %rename(newname) decl;
394 decl
395%enddef
396
d8194e5d
RD
397#ifdef _DO_FULL_DOCS
398 %define %RenameDocCtor(newname, docstr, details, decl)
399 %feature("docstring") decl docstr details;
400 %rename(newname) decl;
401 decl
402 %enddef
403#else
404 %define %RenameDocCtor(newname, docstr, details, decl)
405 %feature("docstring") decl docstr;
406 %rename(newname) decl;
407 decl
408 %enddef
409#endif
1b8c7ba6 410
a7a01418
RD
411
412//---------------------------------------------------------------------------
413// Generates a base_On* method that just wraps a call to the On*, and mark it
414// deprecated. We need this because there is no longer any need for a
415// base_On* method to be able to call the C++ base class method, since our
416// virtualization code can now sense when an attempt is being made to call
417// the base class version from the derived class override.
418
419%define %MAKE_BASE_FUNC(Class, Method)
420 %pythoncode {
421 def base_##Method(*args, **kw):
422 return Class.Method(*args, **kw)
423 base_##Method = wx._deprecated(base_##Method,
424 "Please use Class.Method instead.")
425 }
426%enddef
427
64e8a1f0
RD
428//---------------------------------------------------------------------------
429// Forward declarations and %renames for some classes, so the autodoc strings
430// will be able to use the right types even when the real class declaration is
3ea6e0ec 431// not in the module being processed or seen by %import's.
64e8a1f0
RD
432
433#ifdef BUILDING_RENAMERS
434 #define FORWARD_DECLARE(wxName, Name)
435#else
436 %define FORWARD_DECLARE(wxName, Name)
437 %rename(Name) wxName;
438 class wxName;
439 %enddef
440#endif
441
b2dc1044
RD
442FORWARD_DECLARE(wxString, String);
443FORWARD_DECLARE(wxBitmap, Bitmap);
444FORWARD_DECLARE(wxDateTime, DateTime);
445FORWARD_DECLARE(wxInputStream, InputStream);
446FORWARD_DECLARE(wxDC, DC);
447FORWARD_DECLARE(wxCursor, Cursor);
448FORWARD_DECLARE(wxRegion, Region);
449FORWARD_DECLARE(wxColour, Colour);
450FORWARD_DECLARE(wxFont, Font);
451FORWARD_DECLARE(wxCaret, Caret);
452FORWARD_DECLARE(wxToolTip, ToolTip);
d7466b1d 453FORWARD_DECLARE(wxPyDropTarget, DropTarget);
b2dc1044
RD
454FORWARD_DECLARE(wxImageList, ImageList);
455FORWARD_DECLARE(wxMemoryDC, MemoryDC);
456FORWARD_DECLARE(wxHtmlTagHandler, HtmlTagHandler);
457FORWARD_DECLARE(wxConfigBase, ConfigBase);
458FORWARD_DECLARE(wxIcon, Icon);
3ea6e0ec 459FORWARD_DECLARE(wxStaticBox, StaticBox);
b2dc1044 460
64e8a1f0 461
7bf85405
RD
462//---------------------------------------------------------------------------
463
aeee37c3
RD
464%{
465#if !WXWIN_COMPATIBILITY_2_4
466 #define wxHIDE_READONLY 0
467#endif
468%}
469
470
7bf85405
RD
471// General numeric #define's and etc. Making them all enums makes SWIG use the
472// real macro when making the Python Int
473
474enum {
d14a1e28
RD
475// wxMAJOR_VERSION,
476// wxMINOR_VERSION,
477// wxRELEASE_NUMBER,
7bf85405 478
08127323 479 wxNOT_FOUND,
7bf85405
RD
480
481 wxVSCROLL,
482 wxHSCROLL,
483 wxCAPTION,
484 wxDOUBLE_BORDER,
485 wxSUNKEN_BORDER,
486 wxRAISED_BORDER,
487 wxBORDER,
488 wxSIMPLE_BORDER,
489 wxSTATIC_BORDER,
490 wxTRANSPARENT_WINDOW,
491 wxNO_BORDER,
c96bf2a7 492 wxDEFAULT_CONTROL_BORDER,
5f57b149
RD
493 wxDEFAULT_STATUSBAR_STYLE,
494
7bf85405 495 wxTAB_TRAVERSAL,
1afc06c2 496 wxWANTS_CHARS,
0122b7e3 497 wxPOPUP_WINDOW,
7bf85405 498 wxCENTER_FRAME,
1afc06c2
RD
499 wxCENTRE_ON_SCREEN,
500 wxCENTER_ON_SCREEN,
501
08127323 502 wxCLIP_CHILDREN,
edf2f43e 503 wxCLIP_SIBLINGS,
b8b8dda7 504
88bb5983
RD
505 wxWINDOW_STYLE_MASK,
506
6cffbf02
RD
507 wxALWAYS_SHOW_SB,
508
7bf85405
RD
509 wxRETAINED,
510 wxBACKINGSTORE,
b96c7a38 511
7bf85405
RD
512 wxCOLOURED,
513 wxFIXED_LENGTH,
1b62f00d 514
7bf85405
RD
515 wxLB_NEEDED_SB,
516 wxLB_ALWAYS_SB,
517 wxLB_SORT,
518 wxLB_SINGLE,
519 wxLB_MULTIPLE,
520 wxLB_EXTENDED,
521 wxLB_OWNERDRAW,
522 wxLB_HSCROLL,
523 wxPROCESS_ENTER,
524 wxPASSWORD,
b1e930a5 525
7bf85405
RD
526 wxCB_SIMPLE,
527 wxCB_DROPDOWN,
528 wxCB_SORT,
529 wxCB_READONLY,
530 wxRA_HORIZONTAL,
531 wxRA_VERTICAL,
ed175610
RD
532 wxRA_SPECIFY_ROWS,
533 wxRA_SPECIFY_COLS,
8815349a 534 wxRA_USE_CHECKBOX,
7bf85405 535 wxRB_GROUP,
1e4a197e 536 wxRB_SINGLE,
7bf85405
RD
537 wxSB_HORIZONTAL,
538 wxSB_VERTICAL,
8815349a 539 wxRB_USE_CHECKBOX,
cf694132 540 wxST_SIZEGRIP,
2abc0a0f 541 wxST_NO_AUTORESIZE,
2d6a2f1d
RD
542 wxST_DOTS_MIDDLE,
543 wxST_DOTS_END,
544
7bf85405
RD
545 wxFLOOD_SURFACE,
546 wxFLOOD_BORDER,
547 wxODDEVEN_RULE,
548 wxWINDING_RULE,
549 wxTOOL_TOP,
550 wxTOOL_BOTTOM,
551 wxTOOL_LEFT,
552 wxTOOL_RIGHT,
553 wxOK,
554 wxYES_NO,
555 wxCANCEL,
556 wxYES,
557 wxNO,
1afc06c2
RD
558 wxNO_DEFAULT,
559 wxYES_DEFAULT,
7bf85405
RD
560 wxICON_EXCLAMATION,
561 wxICON_HAND,
562 wxICON_QUESTION,
563 wxICON_INFORMATION,
564 wxICON_STOP,
565 wxICON_ASTERISK,
566 wxICON_MASK,
1afc06c2
RD
567 wxICON_WARNING,
568 wxICON_ERROR,
569
570 wxFORWARD,
571 wxBACKWARD,
572 wxRESET,
573 wxHELP,
574 wxMORE,
575 wxSETUP,
576
f3d9dc1d 577
7bf85405
RD
578 wxSIZE_AUTO_WIDTH,
579 wxSIZE_AUTO_HEIGHT,
580 wxSIZE_AUTO,
581 wxSIZE_USE_EXISTING,
582 wxSIZE_ALLOW_MINUS_ONE,
02b800ce 583 wxSIZE_FORCE,
7bf85405
RD
584 wxPORTRAIT,
585 wxLANDSCAPE,
bb0054cd
RD
586 wxPRINT_QUALITY_HIGH,
587 wxPRINT_QUALITY_MEDIUM,
588 wxPRINT_QUALITY_LOW,
589 wxPRINT_QUALITY_DRAFT,
26e335b8 590
3eb221f6
RD
591 wxID_ANY,
592 wxID_SEPARATOR,
02b800ce 593 wxID_NONE,
3eb221f6 594
d14a1e28 595 wxID_LOWEST,
7bf85405
RD
596 wxID_OPEN,
597 wxID_CLOSE,
598 wxID_NEW,
599 wxID_SAVE,
600 wxID_SAVEAS,
601 wxID_REVERT,
602 wxID_EXIT,
603 wxID_UNDO,
604 wxID_REDO,
605 wxID_HELP,
606 wxID_PRINT,
607 wxID_PRINT_SETUP,
09c4bfc3 608 wxID_PAGE_SETUP,
7bf85405
RD
609 wxID_PREVIEW,
610 wxID_ABOUT,
611 wxID_HELP_CONTENTS,
612 wxID_HELP_COMMANDS,
613 wxID_HELP_PROCEDURES,
614 wxID_HELP_CONTEXT,
6aaca5ba
RD
615 wxID_HELP_INDEX,
616 wxID_HELP_SEARCH,
b5a5d647 617 wxID_CLOSE_ALL,
1a10a058 618 wxID_PREFERENCES,
26e335b8 619
e81b607b 620 wxID_EDIT,
7bf85405
RD
621 wxID_CUT,
622 wxID_COPY,
623 wxID_PASTE,
624 wxID_CLEAR,
625 wxID_FIND,
d56cebe7
RD
626 wxID_DUPLICATE,
627 wxID_SELECTALL,
26e335b8 628
3ef86e32
RD
629 wxID_DELETE,
630 wxID_REPLACE,
631 wxID_REPLACE_ALL,
632 wxID_PROPERTIES,
633
634 wxID_VIEW_DETAILS,
635 wxID_VIEW_LARGEICONS,
636 wxID_VIEW_SMALLICONS,
637 wxID_VIEW_LIST,
638 wxID_VIEW_SORTDATE,
639 wxID_VIEW_SORTNAME,
640 wxID_VIEW_SORTSIZE,
641 wxID_VIEW_SORTTYPE,
642
e81b607b 643 wxID_FILE,
7bf85405
RD
644 wxID_FILE1,
645 wxID_FILE2,
646 wxID_FILE3,
647 wxID_FILE4,
648 wxID_FILE5,
649 wxID_FILE6,
650 wxID_FILE7,
651 wxID_FILE8,
652 wxID_FILE9,
26e335b8 653
7bf85405
RD
654 wxID_OK,
655 wxID_CANCEL,
656 wxID_APPLY,
657 wxID_YES,
658 wxID_NO,
cf694132 659 wxID_STATIC,
f3d9dc1d
RD
660 wxID_FORWARD,
661 wxID_BACKWARD,
26e335b8 662 wxID_DEFAULT,
f3d9dc1d 663 wxID_MORE,
26e335b8
RD
664 wxID_SETUP,
665 wxID_RESET,
666 wxID_CONTEXT_HELP,
667 wxID_YESTOALL,
668 wxID_NOTOALL,
669 wxID_ABORT,
670 wxID_RETRY,
671 wxID_IGNORE,
f3d9dc1d 672
1a1ed526
RD
673 wxID_ADD,
674 wxID_REMOVE,
675
676 wxID_UP,
677 wxID_DOWN,
678 wxID_HOME,
679 wxID_REFRESH,
680 wxID_STOP,
681 wxID_INDEX,
682
683 wxID_BOLD,
684 wxID_ITALIC,
685 wxID_JUSTIFY_CENTER,
686 wxID_JUSTIFY_FILL,
687 wxID_JUSTIFY_RIGHT,
688 wxID_JUSTIFY_LEFT,
689 wxID_UNDERLINE,
690 wxID_INDENT,
691 wxID_UNINDENT,
692 wxID_ZOOM_100,
693 wxID_ZOOM_FIT,
694 wxID_ZOOM_IN,
695 wxID_ZOOM_OUT,
696 wxID_UNDELETE,
697 wxID_REVERT_TO_SAVED,
698
d14a1e28 699 wxID_HIGHEST,
dd9f7fea 700
8bf5d46e 701 wxMENU_TEAROFF,
1afc06c2 702 wxMB_DOCKABLE,
8bf5d46e 703 wxNO_FULL_REPAINT_ON_RESIZE,
6a8b9da4
RD
704 wxFULL_REPAINT_ON_RESIZE,
705
1afc06c2
RD
706 wxLI_HORIZONTAL,
707 wxLI_VERTICAL,
708
d1679124 709 wxWS_EX_VALIDATE_RECURSIVELY,
0122b7e3 710 wxWS_EX_BLOCK_EVENTS,
78e8819c 711 wxWS_EX_TRANSIENT,
ecc08ead 712
3ef86e32
RD
713 wxWS_EX_THEMED_BACKGROUND,
714 wxWS_EX_PROCESS_IDLE,
715 wxWS_EX_PROCESS_UI_UPDATES,
716
717
ecc08ead
RD
718 // Mapping modes (as per Windows)
719 wxMM_TEXT,
720 wxMM_LOMETRIC,
721 wxMM_HIMETRIC,
722 wxMM_LOENGLISH,
723 wxMM_HIENGLISH,
724 wxMM_TWIPS,
725 wxMM_ISOTROPIC,
726 wxMM_ANISOTROPIC,
727 wxMM_POINTS,
728 wxMM_METRIC,
729
3eb221f6 730
1e4a197e
RD
731 // It looks like wxTabCtrl may rise from the dead. Uncomment these if
732 // it gets an implementation for all platforms...
733// wxTC_RIGHTJUSTIFY,
734// wxTC_FIXEDWIDTH,
735// wxTC_TOP,
736// wxTC_LEFT,
737// wxTC_RIGHT,
738// wxTC_BOTTOM,
739// wxTC_MULTILINE,
740// wxTC_OWNERDRAW,
741
7bf85405
RD
742};
743
744
d14a1e28
RD
745
746enum wxGeometryCentre
747{
748 wxCENTRE = 0x0001,
749 wxCENTER = wxCENTRE
750};
751
752
753enum wxOrientation
754{
755 wxHORIZONTAL,
756 wxVERTICAL,
757 wxBOTH
758};
759
760enum wxDirection
761{
762 wxLEFT,
763 wxRIGHT,
764 wxUP,
765 wxDOWN,
766
767 wxTOP,
768 wxBOTTOM,
769
770 wxNORTH,
771 wxSOUTH,
772 wxWEST,
773 wxEAST,
774
775 wxALL
776};
777
778enum wxAlignment
779{
780 wxALIGN_NOT,
781 wxALIGN_CENTER_HORIZONTAL,
782 wxALIGN_CENTRE_HORIZONTAL,
783 wxALIGN_LEFT,
784 wxALIGN_TOP,
785 wxALIGN_RIGHT,
786 wxALIGN_BOTTOM,
787 wxALIGN_CENTER_VERTICAL,
788 wxALIGN_CENTRE_VERTICAL,
789
790 wxALIGN_CENTER,
791 wxALIGN_CENTRE,
792
793 wxALIGN_MASK,
794};
795
796enum wxStretch
797{
798 wxSTRETCH_NOT,
799 wxSHRINK,
800 wxGROW,
801 wxEXPAND,
802 wxSHAPED,
f52e0cf4 803 wxFIXED_MINSIZE,
d14a1e28 804 wxTILE,
33e10b88 805 wxADJUST_MINSIZE,
d14a1e28
RD
806};
807
808
ebf4302c
RD
809enum wxBorder
810{
811 wxBORDER_DEFAULT,
812 wxBORDER_NONE,
813 wxBORDER_STATIC,
814 wxBORDER_SIMPLE,
815 wxBORDER_RAISED,
816 wxBORDER_SUNKEN,
817 wxBORDER_DOUBLE,
818 wxBORDER_MASK,
819};
820
821
1a1ed526
RD
822enum wxBackgroundStyle
823{
824 wxBG_STYLE_SYSTEM,
825 wxBG_STYLE_COLOUR,
826 wxBG_STYLE_CUSTOM
827};
828
829
7bf85405
RD
830enum {
831 wxDEFAULT ,
832 wxDECORATIVE,
833 wxROMAN,
834 wxSCRIPT,
835 wxSWISS,
836 wxMODERN,
837 wxTELETYPE,
838 wxVARIABLE,
839 wxFIXED,
840 wxNORMAL,
841 wxLIGHT,
842 wxBOLD,
843 wxITALIC,
844 wxSLANT,
845 wxSOLID,
846 wxDOT,
847 wxLONG_DASH,
848 wxSHORT_DASH,
849 wxDOT_DASH,
850 wxUSER_DASH,
851 wxTRANSPARENT,
852 wxSTIPPLE,
8224a808
RD
853 wxSTIPPLE_MASK,
854 wxSTIPPLE_MASK_OPAQUE,
7bf85405
RD
855 wxBDIAGONAL_HATCH,
856 wxCROSSDIAG_HATCH,
857 wxFDIAGONAL_HATCH,
858 wxCROSS_HATCH,
859 wxHORIZONTAL_HATCH,
860 wxVERTICAL_HATCH,
861 wxJOIN_BEVEL,
862 wxJOIN_MITER,
863 wxJOIN_ROUND,
864 wxCAP_ROUND,
865 wxCAP_PROJECTING,
866 wxCAP_BUTT
867};
868
869typedef enum {
870 wxCLEAR, // 0
871 wxXOR, // src XOR dst
872 wxINVERT, // NOT dst
873 wxOR_REVERSE, // src OR (NOT dst)
874 wxAND_REVERSE,// src AND (NOT dst)
875 wxCOPY, // src
876 wxAND, // src AND dst
877 wxAND_INVERT, // (NOT src) AND dst
878 wxNO_OP, // dst
879 wxNOR, // (NOT src) AND (NOT dst)
880 wxEQUIV, // (NOT src) XOR dst
881 wxSRC_INVERT, // (NOT src)
882 wxOR_INVERT, // (NOT src) OR dst
883 wxNAND, // (NOT src) OR (NOT dst)
884 wxOR, // src OR dst
885 wxSET, // 1
26b9cf27
RD
886// wxSRC_OR, // source _bitmap_ OR destination
887// wxSRC_AND // source _bitmap_ AND destination
7bf85405
RD
888} form_ops_t;
889
65fe3842 890enum wxKeyCode {
08dcfb92
RD
891 WXK_BACK = 8,
892 WXK_TAB = 9,
893 WXK_RETURN = 13,
894 WXK_ESCAPE = 27,
895 WXK_SPACE = 32,
896 WXK_DELETE = 127,
897
898 WXK_START = 300,
899 WXK_LBUTTON,
900 WXK_RBUTTON,
901 WXK_CANCEL,
902 WXK_MBUTTON,
903 WXK_CLEAR,
904 WXK_SHIFT,
905 WXK_ALT,
906 WXK_CONTROL,
907 WXK_MENU,
908 WXK_PAUSE,
909 WXK_CAPITAL,
910 WXK_PRIOR, /* Page up */
911 WXK_NEXT, /* Page down */
912 WXK_END,
913 WXK_HOME,
914 WXK_LEFT,
915 WXK_UP,
916 WXK_RIGHT,
917 WXK_DOWN,
918 WXK_SELECT,
919 WXK_PRINT,
920 WXK_EXECUTE,
921 WXK_SNAPSHOT,
922 WXK_INSERT,
923 WXK_HELP,
924 WXK_NUMPAD0,
925 WXK_NUMPAD1,
926 WXK_NUMPAD2,
927 WXK_NUMPAD3,
928 WXK_NUMPAD4,
929 WXK_NUMPAD5,
930 WXK_NUMPAD6,
931 WXK_NUMPAD7,
932 WXK_NUMPAD8,
933 WXK_NUMPAD9,
934 WXK_MULTIPLY,
935 WXK_ADD,
936 WXK_SEPARATOR,
937 WXK_SUBTRACT,
938 WXK_DECIMAL,
939 WXK_DIVIDE,
940 WXK_F1,
941 WXK_F2,
942 WXK_F3,
943 WXK_F4,
944 WXK_F5,
945 WXK_F6,
946 WXK_F7,
947 WXK_F8,
948 WXK_F9,
949 WXK_F10,
950 WXK_F11,
951 WXK_F12,
952 WXK_F13,
953 WXK_F14,
954 WXK_F15,
955 WXK_F16,
956 WXK_F17,
957 WXK_F18,
958 WXK_F19,
959 WXK_F20,
960 WXK_F21,
961 WXK_F22,
962 WXK_F23,
963 WXK_F24,
964 WXK_NUMLOCK,
965 WXK_SCROLL,
966 WXK_PAGEUP,
967 WXK_PAGEDOWN,
968
969 WXK_NUMPAD_SPACE,
970 WXK_NUMPAD_TAB,
971 WXK_NUMPAD_ENTER,
972 WXK_NUMPAD_F1,
973 WXK_NUMPAD_F2,
974 WXK_NUMPAD_F3,
975 WXK_NUMPAD_F4,
976 WXK_NUMPAD_HOME,
977 WXK_NUMPAD_LEFT,
978 WXK_NUMPAD_UP,
979 WXK_NUMPAD_RIGHT,
980 WXK_NUMPAD_DOWN,
981 WXK_NUMPAD_PRIOR,
982 WXK_NUMPAD_PAGEUP,
983 WXK_NUMPAD_NEXT,
984 WXK_NUMPAD_PAGEDOWN,
985 WXK_NUMPAD_END,
986 WXK_NUMPAD_BEGIN,
987 WXK_NUMPAD_INSERT,
988 WXK_NUMPAD_DELETE,
989 WXK_NUMPAD_EQUAL,
990 WXK_NUMPAD_MULTIPLY,
991 WXK_NUMPAD_ADD,
992 WXK_NUMPAD_SEPARATOR,
993 WXK_NUMPAD_SUBTRACT,
994 WXK_NUMPAD_DECIMAL,
995 WXK_NUMPAD_DIVIDE,
996
997 WXK_WINDOWS_LEFT,
998 WXK_WINDOWS_RIGHT,
999 WXK_WINDOWS_MENU,
1000
1001 WXK_COMMAND,
1002
1003 // Hardware-specific buttons
1004 WXK_SPECIAL1 = 193,
1005 WXK_SPECIAL2,
1006 WXK_SPECIAL3,
1007 WXK_SPECIAL4,
1008 WXK_SPECIAL5,
1009 WXK_SPECIAL6,
1010 WXK_SPECIAL7,
1011 WXK_SPECIAL8,
1012 WXK_SPECIAL9,
1013 WXK_SPECIAL10,
1014 WXK_SPECIAL11,
1015 WXK_SPECIAL12,
1016 WXK_SPECIAL13,
1017 WXK_SPECIAL14,
1018 WXK_SPECIAL15,
1019 WXK_SPECIAL16,
1020 WXK_SPECIAL17,
1021 WXK_SPECIAL18,
1022 WXK_SPECIAL19,
1023 WXK_SPECIAL20
7bf85405
RD
1024};
1025
0a651eb8 1026
cf694132
RD
1027
1028typedef enum {
1029 wxPAPER_NONE, // Use specific dimensions
1030 wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches
1031 wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches
1032 wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters
1033 wxPAPER_CSHEET, // C Sheet, 17 by 22 inches
1034 wxPAPER_DSHEET, // D Sheet, 22 by 34 inches
1035 wxPAPER_ESHEET, // E Sheet, 34 by 44 inches
1036 wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches
1037 wxPAPER_TABLOID, // Tabloid, 11 by 17 inches
1038 wxPAPER_LEDGER, // Ledger, 17 by 11 inches
1039 wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches
1040 wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches
1041 wxPAPER_A3, // A3 sheet, 297 by 420 millimeters
1042 wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters
1043 wxPAPER_A5, // A5 sheet, 148 by 210 millimeters
1044 wxPAPER_B4, // B4 sheet, 250 by 354 millimeters
1045 wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper
1046 wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper
1047 wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper
1048 wxPAPER_10X14, // 10-by-14-inch sheet
1049 wxPAPER_11X17, // 11-by-17-inch sheet
1050 wxPAPER_NOTE, // Note, 8 1/2 by 11 inches
1051 wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches
1052 wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches
1053 wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches
1054 wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches
1055 wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches
1056 wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters
1057 wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters
1058 wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters
1059 wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters
1060 wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters
1061 wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters
1062 wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters
1063 wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters
1064 wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters
1065 wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters
1066 wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches
1067 wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches
1068 wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches
1069 wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches
1070 wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches
1071
1072 wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm
1073 wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm
1074 wxPAPER_9X11, // 9 x 11 in
1075 wxPAPER_10X11, // 10 x 11 in
1076 wxPAPER_15X11, // 15 x 11 in
1077 wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm
1078 wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in
1079 wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in
1080 wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in
1081 wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in
1082 wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in
1083 wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm
1084 wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in
1085 wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm
1086 wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm
1087 wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in
1088 wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm
1089 wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm
1090 wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm
1091 wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm
1092 wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm
1093 wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm
1094 wxPAPER_A2, // A2 420 x 594 mm
1095 wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm
6c75a4cf
RD
1096 wxPAPER_A3_EXTRA_TRANSVERSE, // A3 Extra Transverse 322 x 445 mm
1097
1098 wxPAPER_DBL_JAPANESE_POSTCARD,/* Japanese Double Postcard 200 x 148 mm */
1099 wxPAPER_A6, /* A6 105 x 148 mm */
1100 wxPAPER_JENV_KAKU2, /* Japanese Envelope Kaku #2 */
1101 wxPAPER_JENV_KAKU3, /* Japanese Envelope Kaku #3 */
1102 wxPAPER_JENV_CHOU3, /* Japanese Envelope Chou #3 */
1103 wxPAPER_JENV_CHOU4, /* Japanese Envelope Chou #4 */
1104 wxPAPER_LETTER_ROTATED, /* Letter Rotated 11 x 8 1/2 in */
1105 wxPAPER_A3_ROTATED, /* A3 Rotated 420 x 297 mm */
1106 wxPAPER_A4_ROTATED, /* A4 Rotated 297 x 210 mm */
1107 wxPAPER_A5_ROTATED, /* A5 Rotated 210 x 148 mm */
1108 wxPAPER_B4_JIS_ROTATED, /* B4 (JIS) Rotated 364 x 257 mm */
1109 wxPAPER_B5_JIS_ROTATED, /* B5 (JIS) Rotated 257 x 182 mm */
1110 wxPAPER_JAPANESE_POSTCARD_ROTATED,/* Japanese Postcard Rotated 148 x 100 mm */
1111 wxPAPER_DBL_JAPANESE_POSTCARD_ROTATED,/* Double Japanese Postcard Rotated 148 x 200 mm */
1112 wxPAPER_A6_ROTATED, /* A6 Rotated 148 x 105 mm */
1113 wxPAPER_JENV_KAKU2_ROTATED, /* Japanese Envelope Kaku #2 Rotated */
1114 wxPAPER_JENV_KAKU3_ROTATED, /* Japanese Envelope Kaku #3 Rotated */
1115 wxPAPER_JENV_CHOU3_ROTATED, /* Japanese Envelope Chou #3 Rotated */
1116 wxPAPER_JENV_CHOU4_ROTATED, /* Japanese Envelope Chou #4 Rotated */
1117 wxPAPER_B6_JIS, /* B6 (JIS) 128 x 182 mm */
1118 wxPAPER_B6_JIS_ROTATED, /* B6 (JIS) Rotated 182 x 128 mm */
1119 wxPAPER_12X11, /* 12 x 11 in */
1120 wxPAPER_JENV_YOU4, /* Japanese Envelope You #4 */
1121 wxPAPER_JENV_YOU4_ROTATED, /* Japanese Envelope You #4 Rotated */
1122 wxPAPER_P16K, /* PRC 16K 146 x 215 mm */
1123 wxPAPER_P32K, /* PRC 32K 97 x 151 mm */
1124 wxPAPER_P32KBIG, /* PRC 32K(Big) 97 x 151 mm */
1125 wxPAPER_PENV_1, /* PRC Envelope #1 102 x 165 mm */
1126 wxPAPER_PENV_2, /* PRC Envelope #2 102 x 176 mm */
1127 wxPAPER_PENV_3, /* PRC Envelope #3 125 x 176 mm */
1128 wxPAPER_PENV_4, /* PRC Envelope #4 110 x 208 mm */
1129 wxPAPER_PENV_5, /* PRC Envelope #5 110 x 220 mm */
1130 wxPAPER_PENV_6, /* PRC Envelope #6 120 x 230 mm */
1131 wxPAPER_PENV_7, /* PRC Envelope #7 160 x 230 mm */
1132 wxPAPER_PENV_8, /* PRC Envelope #8 120 x 309 mm */
1133 wxPAPER_PENV_9, /* PRC Envelope #9 229 x 324 mm */
1134 wxPAPER_PENV_10, /* PRC Envelope #10 324 x 458 mm */
1135 wxPAPER_P16K_ROTATED, /* PRC 16K Rotated */
1136 wxPAPER_P32K_ROTATED, /* PRC 32K Rotated */
1137 wxPAPER_P32KBIG_ROTATED, /* PRC 32K(Big) Rotated */
1138 wxPAPER_PENV_1_ROTATED, /* PRC Envelope #1 Rotated 165 x 102 mm */
1139 wxPAPER_PENV_2_ROTATED, /* PRC Envelope #2 Rotated 176 x 102 mm */
1140 wxPAPER_PENV_3_ROTATED, /* PRC Envelope #3 Rotated 176 x 125 mm */
1141 wxPAPER_PENV_4_ROTATED, /* PRC Envelope #4 Rotated 208 x 110 mm */
1142 wxPAPER_PENV_5_ROTATED, /* PRC Envelope #5 Rotated 220 x 110 mm */
1143 wxPAPER_PENV_6_ROTATED, /* PRC Envelope #6 Rotated 230 x 120 mm */
1144 wxPAPER_PENV_7_ROTATED, /* PRC Envelope #7 Rotated 230 x 160 mm */
1145 wxPAPER_PENV_8_ROTATED, /* PRC Envelope #8 Rotated 309 x 120 mm */
1146 wxPAPER_PENV_9_ROTATED, /* PRC Envelope #9 Rotated 324 x 229 mm */
1147 wxPAPER_PENV_10_ROTATED /* PRC Envelope #10 Rotated 458 x 324 m */
1148
cf694132
RD
1149} wxPaperSize ;
1150
bb0054cd
RD
1151typedef enum {
1152 wxDUPLEX_SIMPLEX, // Non-duplex
1153 wxDUPLEX_HORIZONTAL,
1154 wxDUPLEX_VERTICAL
1155} wxDuplexMode;
1156
cf694132
RD
1157
1158
e9159fe8
RD
1159// menu and toolbar item kinds
1160enum wxItemKind
1161{
addd64ee 1162 wxITEM_SEPARATOR,
546bfbea
VS
1163 wxITEM_NORMAL,
1164 wxITEM_CHECK,
1165 wxITEM_RADIO,
1166 wxITEM_MAX
e9159fe8
RD
1167};
1168
64e8a1f0 1169
23bed520
RD
1170enum wxHitTest
1171{
1172 wxHT_NOWHERE,
1173
1174 // scrollbar
1175 wxHT_SCROLLBAR_FIRST = wxHT_NOWHERE,
1176 wxHT_SCROLLBAR_ARROW_LINE_1, // left or upper arrow to scroll by line
1177 wxHT_SCROLLBAR_ARROW_LINE_2, // right or down
1178 wxHT_SCROLLBAR_ARROW_PAGE_1, // left or upper arrow to scroll by page
1179 wxHT_SCROLLBAR_ARROW_PAGE_2, // right or down
1180 wxHT_SCROLLBAR_THUMB, // on the thumb
1181 wxHT_SCROLLBAR_BAR_1, // bar to the left/above the thumb
1182 wxHT_SCROLLBAR_BAR_2, // bar to the right/below the thumb
1183 wxHT_SCROLLBAR_LAST,
1184
1185 // window
1186 wxHT_WINDOW_OUTSIDE, // not in this window at all
1187 wxHT_WINDOW_INSIDE, // in the client area
1188 wxHT_WINDOW_VERT_SCROLLBAR, // on the vertical scrollbar
1189 wxHT_WINDOW_HORZ_SCROLLBAR, // on the horizontal scrollbar
1190 wxHT_WINDOW_CORNER, // on the corner between 2 scrollbars
1191
1192 wxHT_MAX
1193};
1194
1195
3ef86e32 1196
a780a8dc 1197enum wxKeyModifier
3ef86e32 1198{
a780a8dc
RD
1199 wxMOD_NONE,
1200 wxMOD_ALT,
1201 wxMOD_CONTROL,
1202 wxMOD_ALTGR,
1203 wxMOD_SHIFT,
1204 wxMOD_META,
1205 wxMOD_WIN,
1206 wxMOD_CMD,
1207 wxMOD_ALL
3ef86e32
RD
1208};
1209
1210
1211enum wxUpdateUI
1212{
1213 wxUPDATE_UI_NONE = 0x0000,
1214 wxUPDATE_UI_RECURSE = 0x0001,
1215 wxUPDATE_UI_FROMIDLE = 0x0002 // Invoked from On(Internal)Idle
1216};
1217
1218
994453b8
RD
1219enum wxLayoutDirection
1220{
1221 wxLayout_Default,
1222 wxLayout_LeftToRight,
1223 wxLayout_RightToLeft
1224};
1225
1226
23bed520 1227
7bf85405
RD
1228//---------------------------------------------------------------------------
1229