]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/misc2.i
Added wxProcess_Open and etc.
[wxWidgets.git] / wxPython / src / misc2.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: misc2.i
3 // Purpose: Definitions of miscelaneous functions and classes that need
4 // to know about wxWindow. (So they can't be in misc.i or an
5 // import loop will happen.)
6 //
7 // Author: Robin Dunn
8 //
9 // Created: 18-June-1999
10 // RCS-ID: $Id$
11 // Copyright: (c) 1998 by Total Control Software
12 // Licence: wxWindows license
13 /////////////////////////////////////////////////////////////////////////////
14
15 %module misc2
16
17 %{
18 #include "helpers.h"
19 #include "pyistream.h"
20 #include <wx/resource.h>
21 #include <wx/tooltip.h>
22 #include <wx/caret.h>
23 #include <wx/tipdlg.h>
24 #include <wx/process.h>
25
26 #if wxUSE_JOYSTICK || defined(__WXMSW__)
27 #include <wx/joystick.h>
28 #endif
29
30 #if wxUSE_WAVE || defined(__WXMSW__)
31 #include <wx/wave.h>
32 #endif
33
34 #include <wx/mimetype.h>
35 %}
36
37 //----------------------------------------------------------------------
38
39 %include typemaps.i
40 %include my_typemaps.i
41
42 // Import some definitions of other classes, etc.
43 %import _defs.i
44 %import windows.i
45 %import misc.i
46 %import gdi.i
47 %import events.i
48 %import streams.i
49 %import utils.i
50
51
52 //----------------------------------------------------------------------
53
54 %{
55 // Put some wx default wxChar* values into wxStrings.
56 DECLARE_DEF_STRING(FileSelectorPromptStr);
57 DECLARE_DEF_STRING(FileSelectorDefaultWildcardStr);
58 DECLARE_DEF_STRING(DirSelectorPromptStr);
59 static const wxString wxPyEmptyString(wxT(""));
60 %}
61
62 //---------------------------------------------------------------------------
63 // Dialog Functions
64
65 wxString wxFileSelector(const wxString& message = wxPyFileSelectorPromptStr,
66 const wxString& default_path = wxPyEmptyString,
67 const wxString& default_filename = wxPyEmptyString,
68 const wxString& default_extension = wxPyEmptyString,
69 const wxString& wildcard = wxPyFileSelectorDefaultWildcardStr,
70 int flags = 0,
71 wxWindow *parent = NULL,
72 int x = -1, int y = -1);
73
74 // Ask for filename to load
75 wxString wxLoadFileSelector(const wxString& what,
76 const wxString& extension,
77 const wxString& default_name = wxPyEmptyString,
78 wxWindow *parent = NULL);
79
80 // Ask for filename to save
81 wxString wxSaveFileSelector(const wxString& what,
82 const wxString& extension,
83 const wxString& default_name = wxPyEmptyString,
84 wxWindow *parent = NULL);
85
86
87 wxString wxDirSelector(const wxString& message = wxPyDirSelectorPromptStr,
88 const wxString& defaultPath = wxPyEmptyString,
89 long style = wxDD_DEFAULT_STYLE,
90 const wxPoint& pos = wxDefaultPosition,
91 wxWindow *parent = NULL);
92
93 wxString wxGetTextFromUser(const wxString& message,
94 const wxString& caption = wxPyEmptyString,
95 const wxString& default_value = wxPyEmptyString,
96 wxWindow *parent = NULL,
97 int x = -1, int y = -1,
98 bool centre = TRUE);
99
100 wxString wxGetPasswordFromUser(const wxString& message,
101 const wxString& caption = wxPyEmptyString,
102 const wxString& default_value = wxPyEmptyString,
103 wxWindow *parent = NULL);
104
105
106 // TODO: Need to custom wrap this one...
107 // int wxGetMultipleChoice(char* message, char* caption,
108 // int LCOUNT, char** choices,
109 // int nsel, int *selection,
110 // wxWindow *parent = NULL, int x = -1, int y = -1,
111 // bool centre = TRUE, int width=150, int height=200);
112
113
114 wxString wxGetSingleChoice(const wxString& message, const wxString& caption,
115 int LCOUNT, wxString* choices,
116 wxWindow *parent = NULL,
117 int x = -1, int y = -1,
118 bool centre = TRUE,
119 int width=150, int height=200);
120
121 int wxGetSingleChoiceIndex(const wxString& message, const wxString& caption,
122 int LCOUNT, wxString* choices,
123 wxWindow *parent = NULL,
124 int x = -1, int y = -1,
125 bool centre = TRUE,
126 int width=150, int height=200);
127
128
129 int wxMessageBox(const wxString& message,
130 const wxString& caption = wxPyEmptyString,
131 int style = wxOK | wxCENTRE,
132 wxWindow *parent = NULL,
133 int x = -1, int y = -1);
134
135 long wxGetNumberFromUser(const wxString& message,
136 const wxString& prompt,
137 const wxString& caption,
138 long value,
139 long min = 0, long max = 100,
140 wxWindow *parent = NULL,
141 const wxPoint& pos = wxDefaultPosition);
142
143 //---------------------------------------------------------------------------
144 // GDI Functions
145
146 bool wxColourDisplay();
147
148 int wxDisplayDepth();
149 int wxGetDisplayDepth();
150
151 void wxDisplaySize(int* OUTPUT, int* OUTPUT);
152 wxSize wxGetDisplaySize();
153
154 void wxDisplaySizeMM(int* OUTPUT, int* OUTPUT);
155 wxSize wxGetDisplaySizeMM();
156
157 void wxClientDisplayRect(int *OUTPUT, int *OUTPUT, int *OUTPUT, int *OUTPUT);
158 wxRect wxGetClientDisplayRect();
159
160 void wxSetCursor(wxCursor& cursor);
161
162 //----------------------------------------------------------------------
163 // Miscellaneous functions
164
165 void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR);
166 wxWindow * wxGetActiveWindow();
167
168 wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt);
169 wxWindow* wxFindWindowAtPoint(const wxPoint& pt);
170
171 #ifdef __WXMSW__
172 bool wxCheckForInterrupt(wxWindow *wnd);
173 void wxFlushEvents();
174 #endif
175
176 wxWindow* wxGetTopLevelParent(wxWindow *win);
177
178 //---------------------------------------------------------------------------
179 // Resource System
180
181 bool wxResourceAddIdentifier(char* name, int value);
182 void wxResourceClear(void);
183 wxBitmap wxResourceCreateBitmap(char* resource);
184 wxIcon wxResourceCreateIcon(char* resource);
185 wxMenuBar * wxResourceCreateMenuBar(char* resource);
186 int wxResourceGetIdentifier(char* name);
187 bool wxResourceParseData(char* resource, wxResourceTable *table = NULL);
188 bool wxResourceParseFile(char* filename, wxResourceTable *table = NULL);
189 bool wxResourceParseString(char* resource, wxResourceTable *table = NULL);
190
191 //---------------------------------------------------------------------------
192 // System Settings
193
194 // possible values for wxSystemSettings::GetFont() parameter
195 //
196 enum wxSystemFont
197 {
198 wxSYS_OEM_FIXED_FONT = 10,
199 wxSYS_ANSI_FIXED_FONT,
200 wxSYS_ANSI_VAR_FONT,
201 wxSYS_SYSTEM_FONT,
202 wxSYS_DEVICE_DEFAULT_FONT,
203 wxSYS_DEFAULT_PALETTE,
204 wxSYS_SYSTEM_FIXED_FONT,
205 wxSYS_DEFAULT_GUI_FONT
206 };
207
208 // possible values for wxSystemSettings::GetColour() parameter
209 //
210 enum wxSystemColour
211 {
212 wxSYS_COLOUR_SCROLLBAR,
213 wxSYS_COLOUR_BACKGROUND,
214 wxSYS_COLOUR_DESKTOP = wxSYS_COLOUR_BACKGROUND,
215 wxSYS_COLOUR_ACTIVECAPTION,
216 wxSYS_COLOUR_INACTIVECAPTION,
217 wxSYS_COLOUR_MENU,
218 wxSYS_COLOUR_WINDOW,
219 wxSYS_COLOUR_WINDOWFRAME,
220 wxSYS_COLOUR_MENUTEXT,
221 wxSYS_COLOUR_WINDOWTEXT,
222 wxSYS_COLOUR_CAPTIONTEXT,
223 wxSYS_COLOUR_ACTIVEBORDER,
224 wxSYS_COLOUR_INACTIVEBORDER,
225 wxSYS_COLOUR_APPWORKSPACE,
226 wxSYS_COLOUR_HIGHLIGHT,
227 wxSYS_COLOUR_HIGHLIGHTTEXT,
228 wxSYS_COLOUR_BTNFACE,
229 wxSYS_COLOUR_3DFACE = wxSYS_COLOUR_BTNFACE,
230 wxSYS_COLOUR_BTNSHADOW,
231 wxSYS_COLOUR_3DSHADOW = wxSYS_COLOUR_BTNSHADOW,
232 wxSYS_COLOUR_GRAYTEXT,
233 wxSYS_COLOUR_BTNTEXT,
234 wxSYS_COLOUR_INACTIVECAPTIONTEXT,
235 wxSYS_COLOUR_BTNHIGHLIGHT,
236 wxSYS_COLOUR_BTNHILIGHT = wxSYS_COLOUR_BTNHIGHLIGHT,
237 wxSYS_COLOUR_3DHIGHLIGHT = wxSYS_COLOUR_BTNHIGHLIGHT,
238 wxSYS_COLOUR_3DHILIGHT = wxSYS_COLOUR_BTNHIGHLIGHT,
239 wxSYS_COLOUR_3DDKSHADOW,
240 wxSYS_COLOUR_3DLIGHT,
241 wxSYS_COLOUR_INFOTEXT,
242 wxSYS_COLOUR_INFOBK,
243 wxSYS_COLOUR_LISTBOX,
244 wxSYS_COLOUR_HOTLIGHT,
245 wxSYS_COLOUR_GRADIENTACTIVECAPTION,
246 wxSYS_COLOUR_GRADIENTINACTIVECAPTION,
247 wxSYS_COLOUR_MENUHILIGHT,
248 wxSYS_COLOUR_MENUBAR,
249
250 wxSYS_COLOUR_MAX
251 };
252
253 // possible values for wxSystemSettings::GetMetric() parameter
254 //
255 enum wxSystemMetric
256 {
257 wxSYS_MOUSE_BUTTONS = 1,
258 wxSYS_BORDER_X,
259 wxSYS_BORDER_Y,
260 wxSYS_CURSOR_X,
261 wxSYS_CURSOR_Y,
262 wxSYS_DCLICK_X,
263 wxSYS_DCLICK_Y,
264 wxSYS_DRAG_X,
265 wxSYS_DRAG_Y,
266 wxSYS_EDGE_X,
267 wxSYS_EDGE_Y,
268 wxSYS_HSCROLL_ARROW_X,
269 wxSYS_HSCROLL_ARROW_Y,
270 wxSYS_HTHUMB_X,
271 wxSYS_ICON_X,
272 wxSYS_ICON_Y,
273 wxSYS_ICONSPACING_X,
274 wxSYS_ICONSPACING_Y,
275 wxSYS_WINDOWMIN_X,
276 wxSYS_WINDOWMIN_Y,
277 wxSYS_SCREEN_X,
278 wxSYS_SCREEN_Y,
279 wxSYS_FRAMESIZE_X,
280 wxSYS_FRAMESIZE_Y,
281 wxSYS_SMALLICON_X,
282 wxSYS_SMALLICON_Y,
283 wxSYS_HSCROLL_Y,
284 wxSYS_VSCROLL_X,
285 wxSYS_VSCROLL_ARROW_X,
286 wxSYS_VSCROLL_ARROW_Y,
287 wxSYS_VTHUMB_Y,
288 wxSYS_CAPTION_Y,
289 wxSYS_MENU_Y,
290 wxSYS_NETWORK_PRESENT,
291 wxSYS_PENWINDOWS_PRESENT,
292 wxSYS_SHOW_SOUNDS,
293 wxSYS_SWAP_BUTTONS
294 };
295
296 // possible values for wxSystemSettings::HasFeature() parameter
297 enum wxSystemFeature
298 {
299 wxSYS_CAN_DRAW_FRAME_DECORATIONS = 1,
300 wxSYS_CAN_ICONIZE_FRAME
301 };
302
303 enum wxSystemScreenType
304 {
305 wxSYS_SCREEN_NONE = 0, // not yet defined
306
307 wxSYS_SCREEN_TINY, // <
308 wxSYS_SCREEN_PDA, // >= 320x240
309 wxSYS_SCREEN_SMALL, // >= 640x480
310 wxSYS_SCREEN_DESKTOP // >= 800x600
311 };
312
313
314 class wxSystemSettings {
315 public:
316 // get a standard system colour
317 static wxColour GetColour(wxSystemColour index);
318
319 // get a standard system font
320 static wxFont GetFont(wxSystemFont index);
321
322 // get a system-dependent metric
323 static int GetMetric(wxSystemMetric index);
324
325 // return true if the port has certain feature
326 static bool HasFeature(wxSystemFeature index);
327
328 // Get system screen design (desktop, pda, ..) used for
329 // laying out various dialogs.
330 static wxSystemScreenType GetScreenType();
331
332 // Override default.
333 static void SetScreenType( wxSystemScreenType screen );
334
335 };
336
337
338
339 //---------------------------------------------------------------------------
340 // wxToolTip
341
342 class wxToolTip : public wxObject {
343 public:
344 wxToolTip(const wxString &tip);
345
346 void SetTip(const wxString& tip);
347 wxString GetTip();
348 // *** Not in the "public" interface void SetWindow(wxWindow *win);
349 wxWindow *GetWindow();
350
351 static void Enable(bool flag);
352 static void SetDelay(long milliseconds);
353 };
354
355 //----------------------------------------------------------------------
356
357 class wxCaret {
358 public:
359 wxCaret(wxWindow* window, const wxSize& size);
360 ~wxCaret();
361
362 bool IsOk();
363 bool IsVisible();
364 %name(GetPositionTuple)void GetPosition(int *OUTPUT, int *OUTPUT);
365 wxPoint GetPosition();
366 %name(GetSizeTuple)void GetSize(int *OUTPUT, int *OUTPUT);
367 wxSize GetSize();
368 wxWindow *GetWindow();
369 %name(MoveXY)void Move(int x, int y);
370 void Move(const wxPoint& pt);
371 %name(SetSizeWH) void SetSize(int width, int height);
372 void SetSize(const wxSize& size);
373 void Show(int show = TRUE);
374 void Hide();
375 };
376
377 %inline %{
378 int wxCaret_GetBlinkTime() {
379 return wxCaret::GetBlinkTime();
380 }
381
382 void wxCaret_SetBlinkTime(int milliseconds) {
383 wxCaret::SetBlinkTime(milliseconds);
384 }
385 %}
386
387 //----------------------------------------------------------------------
388
389 class wxBusyCursor {
390 public:
391 wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR);
392 ~wxBusyCursor();
393 };
394
395 //----------------------------------------------------------------------
396
397 class wxWindowDisabler {
398 public:
399 wxWindowDisabler(wxWindow *winToSkip = NULL);
400 ~wxWindowDisabler();
401 };
402
403 //----------------------------------------------------------------------
404
405 bool wxSafeYield(wxWindow* win=NULL);
406 void wxPostEvent(wxEvtHandler *dest, wxEvent& event);
407 void wxWakeUpIdle();
408
409
410 #ifdef __WXMSW__
411 void wxWakeUpMainThread();
412 #endif
413
414 void wxMutexGuiEnter();
415 void wxMutexGuiLeave();
416
417
418 class wxMutexGuiLocker {
419 public:
420 wxMutexGuiLocker();
421 ~wxMutexGuiLocker();
422 };
423
424
425 %inline %{
426 bool wxThread_IsMain() {
427 #ifdef WXP_WITH_THREAD
428 return wxThread::IsMain();
429 #else
430 return TRUE;
431 #endif
432 }
433 %}
434
435 //----------------------------------------------------------------------
436
437
438 class wxTipProvider
439 {
440 public:
441 // wxTipProvider(size_t currentTip); **** Abstract base class
442 ~wxTipProvider();
443
444 virtual wxString GetTip() = 0;
445 size_t GetCurrentTip();
446
447 };
448
449
450 // The C++ version of wxPyTipProvider
451 %{
452 class wxPyTipProvider : public wxTipProvider {
453 public:
454 wxPyTipProvider(size_t currentTip)
455 : wxTipProvider(currentTip) {}
456
457 DEC_PYCALLBACK_STRING__pure(GetTip);
458
459 PYPRIVATE;
460 };
461
462 IMP_PYCALLBACK_STRING__pure( wxPyTipProvider, wxTipProvider, GetTip);
463
464 %}
465
466
467 // Now let SWIG know about it
468 class wxPyTipProvider : public wxTipProvider {
469 public:
470 wxPyTipProvider(size_t currentTip);
471 };
472
473
474
475 bool wxShowTip(wxWindow *parent, wxTipProvider *tipProvider, bool showAtStartup = TRUE);
476 %new wxTipProvider * wxCreateFileTipProvider(const wxString& filename, size_t currentTip);
477
478
479 //----------------------------------------------------------------------
480
481 %{
482 #include <wx/generic/dragimgg.h>
483 %}
484
485 %name (wxDragImage) class wxGenericDragImage : public wxObject
486 {
487 public:
488
489 wxGenericDragImage(const wxBitmap& image,
490 const wxCursor& cursor = wxNullCursor);
491 %name(wxDragIcon)wxGenericDragImage(const wxIcon& image,
492 const wxCursor& cursor = wxNullCursor);
493 %name(wxDragString)wxGenericDragImage(const wxString& str,
494 const wxCursor& cursor = wxNullCursor);
495 %name(wxDragTreeItem)wxGenericDragImage(const wxTreeCtrl& treeCtrl, wxTreeItemId& id);
496 %name(wxDragListItem)wxGenericDragImage(const wxListCtrl& listCtrl, long id);
497
498 ~wxGenericDragImage();
499
500 void SetBackingBitmap(wxBitmap* bitmap);
501 bool BeginDrag(const wxPoint& hotspot, wxWindow* window,
502 bool fullScreen = FALSE, wxRect* rect = NULL);
503
504 %name(BeginDrag2) bool BeginDrag(const wxPoint& hotspot, wxWindow* window,
505 wxWindow* fullScreenRect);
506
507 bool EndDrag();
508 bool Move(const wxPoint& pt);
509 bool Show();
510 bool Hide();
511
512 wxRect GetImageRect(const wxPoint& pos) const;
513 bool RedrawImage(const wxPoint& oldPos, const wxPoint& newPos,
514 bool eraseOld, bool drawNew);
515 };
516
517
518 //----------------------------------------------------------------------
519
520 class wxPyTimer : public wxObject {
521 public:
522 wxPyTimer(PyObject* notify);
523 ~wxPyTimer();
524 int GetInterval();
525 bool IsOneShot();
526 bool IsRunning();
527 void SetOwner(wxEvtHandler *owner, int id = -1);
528 void Start(int milliseconds=-1, int oneShot=FALSE);
529 void Stop();
530 };
531
532
533 class wxStopWatch
534 {
535 public:
536 // ctor starts the stop watch
537 wxStopWatch();
538 ~wxStopWatch();
539 void Start(long t = 0);
540 void Pause();
541 void Resume();
542
543 // get elapsed time since the last Start() or Pause() in milliseconds
544 long Time() const;
545 };
546
547
548 //----------------------------------------------------------------------
549 //----------------------------------------------------------------------
550
551
552 enum
553 {
554 wxLOG_FatalError, // program can't continue, abort immediately
555 wxLOG_Error, // a serious error, user must be informed about it
556 wxLOG_Warning, // user is normally informed about it but may be ignored
557 wxLOG_Message, // normal message (i.e. normal output of a non GUI app)
558 wxLOG_Info, // informational message (a.k.a. 'Verbose')
559 wxLOG_Status, // informational: might go to the status line of GUI app
560 wxLOG_Debug, // never shown to the user, disabled in release mode
561 wxLOG_Trace, // trace messages are also only enabled in debug mode
562 wxLOG_Progress, // used for progress indicator (not yet)
563 wxLOG_User = 100 // user defined levels start here
564 };
565
566 #define wxTRACE_MemAlloc "memalloc" // trace memory allocation (new/delete)
567 #define wxTRACE_Messages "messages" // trace window messages/X callbacks
568 #define wxTRACE_ResAlloc "resalloc" // trace GDI resource allocation
569 #define wxTRACE_RefCount "refcount" // trace various ref counting operations
570
571 #ifdef __WXMSW__
572 #define wxTRACE_OleCalls "ole" // OLE interface calls
573 #endif
574
575 enum {
576 wxTraceMemAlloc,
577 wxTraceMessages,
578 wxTraceResAlloc,
579 wxTraceRefCount,
580
581 #ifdef __WXMSW__
582 wxTraceOleCalls,
583 #endif
584 };
585
586
587
588 class wxLog
589 {
590 public:
591 wxLog();
592
593 static bool IsEnabled();
594 static bool EnableLogging(bool doIt = TRUE);
595 static void OnLog(unsigned long level, const wxString& szString, int t=0);
596
597 virtual void Flush();
598 bool HasPendingMessages() const;
599
600 static void FlushActive();
601 static wxLog *GetActiveTarget();
602 static wxLog *SetActiveTarget(wxLog *pLogger);
603
604 static void Suspend();
605 static void Resume();
606
607 static void SetVerbose(bool bVerbose = TRUE);
608
609 static void DontCreateOnDemand();
610 static void SetTraceMask(long ulMask);
611 static void AddTraceMask(const wxString& str);
612 static void RemoveTraceMask(const wxString& str);
613 static void ClearTraceMasks();
614
615 static void SetTimestamp(const wxString& ts);
616 static const wxString& GetTimestamp();
617
618 bool GetVerbose() const;
619
620 static unsigned long GetTraceMask();
621 static bool IsAllowedTraceMask(const wxString& mask);
622
623 // static void TimeStamp(wxString *str);
624 %addmethods {
625 wxString TimeStamp() {
626 wxString msg;
627 wxLog::TimeStamp(&msg);
628 return msg;
629 }
630 }
631
632 };
633
634
635 class wxLogStderr : public wxLog
636 {
637 public:
638 wxLogStderr(/* TODO: FILE *fp = (FILE *) NULL*/);
639 };
640
641
642 class wxLogTextCtrl : public wxLog
643 {
644 public:
645 wxLogTextCtrl(wxTextCtrl *pTextCtrl);
646 };
647
648
649 class wxLogGui : public wxLog
650 {
651 public:
652 wxLogGui();
653 };
654
655 class wxLogWindow : public wxLog
656 {
657 public:
658 wxLogWindow(wxFrame *pParent, // the parent frame (can be NULL)
659 const wxString& szTitle, // the title of the frame
660 bool bShow = TRUE, // show window immediately?
661 bool bPassToOld = TRUE); // pass log messages to the old target?
662
663 void Show(bool bShow = TRUE);
664 wxFrame *GetFrame() const;
665 wxLog *GetOldLog() const;
666 bool IsPassingMessages() const;
667 void PassMessages(bool bDoPass);
668 };
669
670
671 class wxLogChain : public wxLog
672 {
673 public:
674 wxLogChain(wxLog *logger);
675 void SetLog(wxLog *logger);
676 void PassMessages(bool bDoPass);
677 bool IsPassingMessages();
678 wxLog *GetOldLog();
679 };
680
681
682 unsigned long wxSysErrorCode();
683 const wxString wxSysErrorMsg(unsigned long nErrCode = 0);
684 void wxLogFatalError(const wxString& msg);
685 void wxLogError(const wxString& msg);
686 void wxLogWarning(const wxString& msg);
687 void wxLogMessage(const wxString& msg);
688 void wxLogInfo(const wxString& msg);
689 void wxLogVerbose(const wxString& msg);
690 void wxLogStatus(const wxString& msg);
691 %name(wxLogStatusFrame)void wxLogStatus(wxFrame *pFrame, const wxString& msg);
692 void wxLogSysError(const wxString& msg);
693
694 void wxLogTrace(const wxString& msg);
695 %name(wxLogTraceMask)void wxLogTrace(const wxString& mask, const wxString& msg);
696
697 void wxLogGeneric(unsigned long level, const wxString& msg);
698
699 // wxLogFatalError helper: show the (fatal) error to the user in a safe way,
700 // i.e. without using wxMessageBox() for example because it could crash
701 void wxSafeShowMessage(const wxString& title, const wxString& text);
702
703
704
705 // Suspress logging while an instance of this class exists
706 class wxLogNull
707 {
708 public:
709 wxLogNull();
710 ~wxLogNull();
711 };
712
713
714
715
716 %{
717 // A wxLog class that can be derived from in wxPython
718 class wxPyLog : public wxLog {
719 public:
720 wxPyLog() : wxLog() {}
721
722 virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t) {
723 bool found;
724 wxPyBeginBlockThreads();
725 if ((found = wxPyCBH_findCallback(m_myInst, "DoLog"))) {
726 PyObject* s = wx2PyString(szString);
727 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(iOi)", level, s, t));
728 Py_DECREF(s);
729 }
730 wxPyEndBlockThreads();
731 if (! found)
732 wxLog::DoLog(level, szString, t);
733 }
734
735 virtual void DoLogString(const wxChar *szString, time_t t) {
736 bool found;
737 wxPyBeginBlockThreads();
738 if ((found = wxPyCBH_findCallback(m_myInst, "DoLogString"))) {
739 PyObject* s = wx2PyString(szString);
740 wxPyCBH_callCallback(m_myInst, Py_BuildValue("(Oi)", s, t));
741 Py_DECREF(s);
742 }
743 wxPyEndBlockThreads();
744 if (! found)
745 wxLog::DoLogString(szString, t);
746 }
747
748 PYPRIVATE;
749 };
750 %}
751
752 // Now tell SWIG about it
753 class wxPyLog : public wxLog {
754 public:
755 wxPyLog();
756 void _setCallbackInfo(PyObject* self, PyObject* _class);
757 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyLog)"
758 %addmethods { void Destroy() { delete self; } }
759
760 };
761
762
763 //----------------------------------------------------------------------
764
765
766 enum {
767 /* event type */
768 wxEVT_END_PROCESS
769 };
770
771
772 enum wxKillError
773 {
774 wxKILL_OK, // no error
775 wxKILL_BAD_SIGNAL, // no such signal
776 wxKILL_ACCESS_DENIED, // permission denied
777 wxKILL_NO_PROCESS, // no such process
778 wxKILL_ERROR // another, unspecified error
779 };
780
781
782 class wxProcessEvent : public wxEvent {
783 public:
784 wxProcessEvent(int id = 0, int pid = 0, int exitcode = 0);
785 int GetPid();
786 int GetExitCode();
787 int m_pid, m_exitcode;
788 };
789
790
791
792
793 %{ // C++ version of wxProcess derived class
794
795 class wxPyProcess : public wxProcess {
796 public:
797 wxPyProcess(wxEvtHandler *parent = NULL, int id = -1)
798 : wxProcess(parent, id)
799 {}
800
801 DEC_PYCALLBACK_VOID_INTINT(OnTerminate);
802
803 PYPRIVATE;
804 };
805
806 IMP_PYCALLBACK_VOID_INTINT( wxPyProcess, wxProcess, OnTerminate);
807
808 %}
809
810
811 %name(wxProcess)class wxPyProcess : public wxEvtHandler {
812 public:
813 // kill the process with the given PID
814 static wxKillError Kill(int pid, wxSignal sig = wxSIGTERM);
815
816 // test if the given process exists
817 static bool Exists(int pid);
818
819 // this function replaces the standard popen() one: it launches a process
820 // asynchronously and allows the caller to get the streams connected to its
821 // std{in|out|err}
822 //
823 // on error NULL is returned, in any case the process object will be
824 // deleted automatically when the process terminates and should *not* be
825 // deleted by the caller
826 static wxPyProcess *Open(const wxString& cmd);
827
828
829
830 wxPyProcess(wxEvtHandler *parent = NULL, int id = -1);
831 %addmethods { void Destroy() { delete self; } }
832
833 void _setCallbackInfo(PyObject* self, PyObject* _class);
834 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxProcess)"
835
836 void base_OnTerminate(int pid, int status);
837
838 void Redirect();
839 bool IsRedirected();
840 void Detach();
841
842 wxInputStream *GetInputStream();
843 wxInputStream *GetErrorStream();
844 wxOutputStream *GetOutputStream();
845
846 void CloseOutput();
847 };
848
849
850 enum
851 {
852 // execute the process asynchronously
853 wxEXEC_ASYNC = 0,
854
855 // execute it synchronously, i.e. wait until it finishes
856 wxEXEC_SYNC = 1,
857
858 // under Windows, don't hide the child even if it's IO is redirected (this
859 // is done by default)
860 wxEXEC_NOHIDE = 2,
861
862 // under Unix, if the process is the group leader then killing -pid kills
863 // all children as well as pid
864 wxEXEC_MAKE_GROUP_LEADER = 4
865 };
866
867
868 long wxExecute(const wxString& command,
869 int flags = wxEXEC_ASYNC,
870 wxPyProcess *process = NULL);
871
872 //----------------------------------------------------------------------
873
874
875 // Which joystick? Same as Windows ids so no conversion necessary.
876 enum
877 {
878 wxJOYSTICK1,
879 wxJOYSTICK2
880 };
881
882 // Which button is down?
883 enum
884 {
885 wxJOY_BUTTON_ANY,
886 wxJOY_BUTTON1,
887 wxJOY_BUTTON2,
888 wxJOY_BUTTON3,
889 wxJOY_BUTTON4,
890 };
891
892
893 %{
894 #if !wxUSE_JOYSTICK && !defined(__WXMSW__)
895 // A C++ stub class for wxJoystick for platforms that don't have it.
896 class wxJoystick : public wxObject {
897 public:
898 wxJoystick(int joystick = wxJOYSTICK1) {
899 wxPyBeginBlockThreads();
900 PyErr_SetString(PyExc_NotImplementedError, "wxJoystick is not available on this platform.");
901 wxPyEndBlockThreads();
902 }
903 wxPoint GetPosition() { return wxPoint(-1,-1); }
904 int GetZPosition() { return -1; }
905 int GetButtonState() { return -1; }
906 int GetPOVPosition() { return -1; }
907 int GetPOVCTSPosition() { return -1; }
908 int GetRudderPosition() { return -1; }
909 int GetUPosition() { return -1; }
910 int GetVPosition() { return -1; }
911 int GetMovementThreshold() { return -1; }
912 void SetMovementThreshold(int threshold) {}
913
914 bool IsOk(void) { return FALSE; }
915 int GetNumberJoysticks() { return -1; }
916 int GetManufacturerId() { return -1; }
917 int GetProductId() { return -1; }
918 wxString GetProductName() { return ""; }
919 int GetXMin() { return -1; }
920 int GetYMin() { return -1; }
921 int GetZMin() { return -1; }
922 int GetXMax() { return -1; }
923 int GetYMax() { return -1; }
924 int GetZMax() { return -1; }
925 int GetNumberButtons() { return -1; }
926 int GetNumberAxes() { return -1; }
927 int GetMaxButtons() { return -1; }
928 int GetMaxAxes() { return -1; }
929 int GetPollingMin() { return -1; }
930 int GetPollingMax() { return -1; }
931 int GetRudderMin() { return -1; }
932 int GetRudderMax() { return -1; }
933 int GetUMin() { return -1; }
934 int GetUMax() { return -1; }
935 int GetVMin() { return -1; }
936 int GetVMax() { return -1; }
937
938 bool HasRudder() { return FALSE; }
939 bool HasZ() { return FALSE; }
940 bool HasU() { return FALSE; }
941 bool HasV() { return FALSE; }
942 bool HasPOV() { return FALSE; }
943 bool HasPOV4Dir() { return FALSE; }
944 bool HasPOVCTS() { return FALSE; }
945
946 bool SetCapture(wxWindow* win, int pollingFreq = 0) { return FALSE; }
947 bool ReleaseCapture() { return FALSE; }
948 };
949 #endif
950 %}
951
952
953 class wxJoystick : public wxObject {
954 public:
955 wxJoystick(int joystick = wxJOYSTICK1);
956 ~wxJoystick();
957
958 wxPoint GetPosition();
959 int GetZPosition();
960 int GetButtonState();
961 int GetPOVPosition();
962 int GetPOVCTSPosition();
963 int GetRudderPosition();
964 int GetUPosition();
965 int GetVPosition();
966 int GetMovementThreshold();
967 void SetMovementThreshold(int threshold) ;
968
969 bool IsOk(void);
970 int GetNumberJoysticks();
971 int GetManufacturerId();
972 int GetProductId();
973 wxString GetProductName();
974 int GetXMin();
975 int GetYMin();
976 int GetZMin();
977 int GetXMax();
978 int GetYMax();
979 int GetZMax();
980 int GetNumberButtons();
981 int GetNumberAxes();
982 int GetMaxButtons();
983 int GetMaxAxes();
984 int GetPollingMin();
985 int GetPollingMax();
986 int GetRudderMin();
987 int GetRudderMax();
988 int GetUMin();
989 int GetUMax();
990 int GetVMin();
991 int GetVMax();
992
993 bool HasRudder();
994 bool HasZ();
995 bool HasU();
996 bool HasV();
997 bool HasPOV();
998 bool HasPOV4Dir();
999 bool HasPOVCTS();
1000
1001 bool SetCapture(wxWindow* win, int pollingFreq = 0);
1002 bool ReleaseCapture();
1003 };
1004
1005 //----------------------------------------------------------------------
1006
1007 %{
1008 #if !wxUSE_WAVE
1009 // A C++ stub class for wxWave for platforms that don't have it.
1010 class wxWave : public wxObject
1011 {
1012 public:
1013 wxWave(const wxString& fileName, bool isResource = FALSE) {
1014 wxPyBeginBlockThreads();
1015 PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
1016 wxPyEndBlockThreads();
1017 }
1018 wxWave(int size, const wxByte* data) {
1019 wxPyBeginBlockThreads();
1020 PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
1021 wxPyEndBlockThreads();
1022 }
1023
1024 ~wxWave() {}
1025
1026 bool IsOk() const { return FALSE; }
1027 bool Play(bool async = TRUE, bool looped = FALSE) const { return FALSE; }
1028 };
1029
1030 #endif
1031 %}
1032
1033 class wxWave : public wxObject
1034 {
1035 public:
1036 wxWave(const wxString& fileName, bool isResource = FALSE);
1037 ~wxWave();
1038
1039 bool IsOk() const;
1040 bool Play(bool async = TRUE, bool looped = FALSE) const;
1041 };
1042
1043 %new wxWave* wxWaveData(const wxString& data);
1044 %{ // Implementations of some alternate "constructors"
1045 wxWave* wxWaveData(const wxString& data) {
1046 return new wxWave(data.Len(), (wxByte*)data.c_str());
1047 }
1048 %}
1049
1050
1051 //----------------------------------------------------------------------
1052
1053 enum wxMailcapStyle
1054 {
1055 wxMAILCAP_STANDARD = 1,
1056 wxMAILCAP_NETSCAPE = 2,
1057 wxMAILCAP_KDE = 4,
1058 wxMAILCAP_GNOME = 8,
1059
1060 wxMAILCAP_ALL = 15
1061 };
1062
1063
1064
1065 class wxFileTypeInfo
1066 {
1067 public:
1068 // ctors
1069 // a normal item
1070 wxFileTypeInfo(const char* mimeType,
1071 const char* openCmd,
1072 const char* printCmd,
1073 const char* desc);
1074
1075
1076 // the array elements correspond to the parameters of the ctor above in
1077 // the same order
1078 %name(wxFileTypeInfoSequence)wxFileTypeInfo(const wxArrayString& sArray);
1079
1080 // invalid item - use this to terminate the array passed to
1081 // wxMimeTypesManager::AddFallbacks
1082 %name(wxNullFileTypeInfo)wxFileTypeInfo();
1083
1084
1085 // test if this object can be used
1086 bool IsValid() const;
1087
1088 // setters
1089 // set the icon info
1090 void SetIcon(const wxString& iconFile, int iconIndex = 0);
1091
1092 // set the short desc
1093 void SetShortDesc(const wxString& shortDesc);
1094
1095 // accessors
1096 // get the MIME type
1097 const wxString& GetMimeType() const;
1098 // get the open command
1099 const wxString& GetOpenCommand() const;
1100 // get the print command
1101 const wxString& GetPrintCommand() const;
1102 // get the short description (only used under Win32 so far)
1103 const wxString& GetShortDesc() const;
1104 // get the long, user visible description
1105 const wxString& GetDescription() const;
1106
1107
1108 // get the array of all extensions
1109 //const wxArrayString& GetExtensions() const;
1110 %addmethods {
1111 PyObject* GetExtensions() {
1112 wxArrayString& arr = (wxArrayString&)self->GetExtensions();
1113 return wxArrayString2PyList_helper(arr);
1114 }
1115 }
1116
1117 int GetExtensionsCount() const;
1118
1119 // get the icon info
1120 const wxString& GetIconFile() const;
1121 int GetIconIndex() const;
1122 };
1123
1124
1125
1126
1127 class wxFileType
1128 {
1129 public:
1130
1131 // TODO: Make a wxPyMessageParameters with virtual GetParamValue...
1132
1133 // An object of this class must be passed to Get{Open|Print}Command. The
1134 // default implementation is trivial and doesn't know anything at all about
1135 // parameters, only filename and MIME type are used (so it's probably ok for
1136 // Windows where %{param} is not used anyhow)
1137 class MessageParameters
1138 {
1139 public:
1140 // ctors
1141 MessageParameters(const wxString& filename=wxPyEmptyString,
1142 const wxString& mimetype=wxPyEmptyString);
1143
1144 // accessors (called by GetOpenCommand)
1145 // filename
1146 const wxString& GetFileName() const;
1147 // mime type
1148 const wxString& GetMimeType() const;;
1149
1150 // override this function in derived class
1151 virtual wxString GetParamValue(const wxString& name) const;
1152
1153 // virtual dtor as in any base class
1154 virtual ~MessageParameters();
1155 };
1156
1157
1158 // ctor from static data
1159 wxFileType(const wxFileTypeInfo& ftInfo);
1160
1161 // return the MIME type for this file type
1162 %addmethods {
1163 PyObject* GetMimeType() {
1164 wxString str;
1165 if (self->GetMimeType(&str)) {
1166 #if wxUSE_UNICODE
1167 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1168 #else
1169 return PyString_FromStringAndSize(str.c_str(), str.Len());
1170 #endif
1171 }
1172 else
1173 RETURN_NONE();
1174 }
1175 PyObject* GetMimeTypes() {
1176 wxArrayString arr;
1177 if (self->GetMimeTypes(arr))
1178 return wxArrayString2PyList_helper(arr);
1179 else
1180 RETURN_NONE();
1181 }
1182 }
1183
1184
1185 // Get all extensions associated with this file type
1186 %addmethods {
1187 PyObject* GetExtensions() {
1188 wxArrayString arr;
1189 if (self->GetExtensions(arr))
1190 return wxArrayString2PyList_helper(arr);
1191 else
1192 RETURN_NONE();
1193 }
1194 }
1195
1196
1197 %addmethods {
1198 // Get the icon corresponding to this file type
1199 %new wxIcon* GetIcon() {
1200 wxIcon icon;
1201 if (self->GetIcon(&icon))
1202 return new wxIcon(icon);
1203 else
1204 return NULL;
1205 }
1206
1207 // Get the icon corresponding to this file type, the name of the file
1208 // where this icon resides, and its index in this file if applicable.
1209 PyObject* GetIconInfo() {
1210 wxIcon icon;
1211 wxString iconFile;
1212 int iconIndex;
1213 if (self->GetIcon(&icon, &iconFile, &iconIndex)) {
1214 wxPyBeginBlockThreads();
1215 PyObject* tuple = PyTuple_New(3);
1216 PyTuple_SetItem(tuple, 0, wxPyConstructObject(new wxIcon(icon),
1217 "wxIcon", TRUE));
1218 #if wxUSE_UNICODE
1219 PyTuple_SetItem(tuple, 1, PyUnicode_FromUnicode(iconFile.c_str(), iconFile.Len()));
1220 #else
1221 PyTuple_SetItem(tuple, 1, PyString_FromStringAndSize(iconFile.c_str(), iconFile.Len()));
1222 #endif
1223 PyTuple_SetItem(tuple, 2, PyInt_FromLong(iconIndex));
1224 wxPyEndBlockThreads();
1225 return tuple;
1226 }
1227 else
1228 RETURN_NONE();
1229 }
1230 }
1231
1232 %addmethods {
1233 // get a brief file type description ("*.txt" => "text document")
1234 PyObject* GetDescription() {
1235 wxString str;
1236 if (self->GetDescription(&str)) {
1237 #if wxUSE_UNICODE
1238 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1239 #else
1240 return PyString_FromStringAndSize(str.c_str(), str.Len());
1241 #endif
1242 } else
1243 RETURN_NONE();
1244 }
1245 }
1246
1247
1248 // get the command to open/execute the file of given type
1249 %addmethods {
1250 PyObject* GetOpenCommand(const wxString& filename,
1251 const wxString& mimetype=wxPyEmptyString) {
1252 wxString str;
1253 if (self->GetOpenCommand(&str, wxFileType::MessageParameters(filename, mimetype))) {
1254 #if wxUSE_UNICODE
1255 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1256 #else
1257 return PyString_FromStringAndSize(str.c_str(), str.Len());
1258 #endif
1259 } else
1260 RETURN_NONE();
1261 }
1262 }
1263
1264
1265 // get the command to print the file of given type
1266 %addmethods {
1267 PyObject* GetPrintCommand(const wxString& filename,
1268 const wxString& mimetype=wxPyEmptyString) {
1269 wxString str;
1270 if (self->GetPrintCommand(&str, wxFileType::MessageParameters(filename, mimetype))) {
1271 #if wxUSE_UNICODE
1272 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1273 #else
1274 return PyString_FromStringAndSize(str.c_str(), str.Len());
1275 #endif
1276 } else
1277 RETURN_NONE();
1278 }
1279 }
1280
1281
1282 // Get all commands defined for this file type
1283 %addmethods {
1284 PyObject* GetAllCommands(const wxString& filename,
1285 const wxString& mimetype=wxPyEmptyString) {
1286 wxArrayString verbs;
1287 wxArrayString commands;
1288 if (self->GetAllCommands(&verbs, &commands,
1289 wxFileType::MessageParameters(filename, mimetype))) {
1290 wxPyBeginBlockThreads();
1291 PyObject* tuple = PyTuple_New(2);
1292 PyTuple_SetItem(tuple, 0, wxArrayString2PyList_helper(verbs));
1293 PyTuple_SetItem(tuple, 1, wxArrayString2PyList_helper(commands));
1294 wxPyEndBlockThreads();
1295 return tuple;
1296 }
1297 else
1298 RETURN_NONE();
1299 }
1300 }
1301
1302
1303 // set an arbitrary command, ask confirmation if it already exists and
1304 // overwriteprompt is TRUE
1305 bool SetCommand(const wxString& cmd, const wxString& verb,
1306 bool overwriteprompt = TRUE);
1307
1308 bool SetDefaultIcon(const wxString& cmd = wxPyEmptyString, int index = 0);
1309
1310
1311 // remove the association for this filetype from the system MIME database:
1312 // notice that it will only work if the association is defined in the user
1313 // file/registry part, we will never modify the system-wide settings
1314 bool Unassociate();
1315
1316 // operations
1317 // expand a string in the format of GetOpenCommand (which may contain
1318 // '%s' and '%t' format specificators for the file name and mime type
1319 // and %{param} constructions).
1320 static wxString ExpandCommand(const wxString& command,
1321 const MessageParameters& params);
1322
1323 // dtor (not virtual, shouldn't be derived from)
1324 ~wxFileType();
1325
1326 };
1327
1328
1329
1330
1331 class wxMimeTypesManager
1332 {
1333 public:
1334 // static helper functions
1335 // -----------------------
1336
1337 // check if the given MIME type is the same as the other one: the
1338 // second argument may contain wildcards ('*'), but not the first. If
1339 // the types are equal or if the mimeType matches wildcard the function
1340 // returns TRUE, otherwise it returns FALSE
1341 static bool IsOfType(const wxString& mimeType, const wxString& wildcard);
1342
1343 // ctor
1344 wxMimeTypesManager();
1345
1346 // loads data from standard files according to the mailcap styles
1347 // specified: this is a bitwise OR of wxMailcapStyle values
1348 //
1349 // use the extraDir parameter if you want to look for files in another
1350 // directory
1351 void Initialize(int mailcapStyle = wxMAILCAP_STANDARD,
1352 const wxString& extraDir = wxPyEmptyString);
1353
1354 // and this function clears all the data from the manager
1355 void ClearData();
1356
1357 // Database lookup: all functions return a pointer to wxFileType object
1358 // whose methods may be used to query it for the information you're
1359 // interested in. If the return value is !NULL, caller is responsible for
1360 // deleting it.
1361 // get file type from file extension
1362 %new wxFileType *GetFileTypeFromExtension(const wxString& ext);
1363
1364 // get file type from MIME type (in format <category>/<format>)
1365 %new wxFileType *GetFileTypeFromMimeType(const wxString& mimeType);
1366
1367 // other operations: return TRUE if there were no errors or FALSE if there
1368 // were some unreckognized entries (the good entries are always read anyhow)
1369 //
1370
1371 // read in additional file (the standard ones are read automatically)
1372 // in mailcap format (see mimetype.cpp for description)
1373 //
1374 // 'fallback' parameter may be set to TRUE to avoid overriding the
1375 // settings from other, previously parsed, files by this one: normally,
1376 // the files read most recently would override the older files, but with
1377 // fallback == TRUE this won't happen
1378 bool ReadMailcap(const wxString& filename, bool fallback = FALSE);
1379
1380 // read in additional file in mime.types format
1381 bool ReadMimeTypes(const wxString& filename);
1382
1383 // enumerate all known MIME types
1384 %addmethods {
1385 PyObject* EnumAllFileTypes() {
1386 wxArrayString arr;
1387 self->EnumAllFileTypes(arr);
1388 return wxArrayString2PyList_helper(arr);
1389 }
1390 }
1391
1392 // these functions can be used to provide default values for some of the
1393 // MIME types inside the program itself (you may also use
1394 // ReadMailcap(filenameWithDefaultTypes, TRUE /* use as fallback */) to
1395 // achieve the same goal, but this requires having this info in a file).
1396 //
1397 void AddFallback(const wxFileTypeInfo& ft);
1398
1399
1400 // create or remove associations
1401
1402 // create a new association using the fields of wxFileTypeInfo (at least
1403 // the MIME type and the extension should be set)
1404 // if the other fields are empty, the existing values should be left alone
1405 %new wxFileType *Associate(const wxFileTypeInfo& ftInfo);
1406
1407 // undo Associate()
1408 bool Unassociate(wxFileType *ft) ;
1409
1410 // dtor (not virtual, shouldn't be derived from)
1411 ~wxMimeTypesManager();
1412 };
1413
1414
1415 %readonly
1416 %{
1417 #if 0
1418 %}
1419 extern wxMimeTypesManager* wxTheMimeTypesManager;
1420 %{
1421 #endif
1422 %}
1423 %readwrite
1424
1425 //----------------------------------------------------------------------
1426
1427 %{
1428 #include <wx/artprov.h>
1429
1430 DECLARE_DEF_STRING(ART_OTHER);
1431
1432 %}
1433
1434 // Art clients
1435 #define wxART_TOOLBAR "toolbar_C"
1436 #define wxART_MENU "menu_C"
1437 #define wxART_FRAME_ICON "frame_icon_C"
1438
1439 #define wxART_CMN_DIALOG "cmn_dialog_C"
1440 #define wxART_HELP_BROWSER "help_browser_C"
1441 #define wxART_MESSAGE_BOX "message_box_C"
1442
1443 #define wxART_OTHER "other_C"
1444
1445 // Art IDs
1446 #define wxART_ADD_BOOKMARK "add_bookmark"
1447 #define wxART_DEL_BOOKMARK "del_bookmark"
1448 #define wxART_HELP_SIDE_PANEL "help_side_panel"
1449 #define wxART_HELP_SETTINGS "help_settings"
1450 #define wxART_HELP_BOOK "help_book"
1451 #define wxART_HELP_FOLDER "help_folder"
1452 #define wxART_HELP_PAGE "help_page"
1453 #define wxART_GO_BACK "go_back"
1454 #define wxART_GO_FORWARD "go_forward"
1455 #define wxART_GO_UP "go_up"
1456 #define wxART_GO_DOWN "go_down"
1457 #define wxART_GO_TO_PARENT "go_to_parent"
1458 #define wxART_GO_HOME "go_home"
1459 #define wxART_FILE_OPEN "file_open"
1460 #define wxART_PRINT "print"
1461 #define wxART_HELP "help"
1462 #define wxART_TIP "tip"
1463 #define wxART_REPORT_VIEW "report_view"
1464 #define wxART_LIST_VIEW "list_view"
1465 #define wxART_NEW_DIR "new_dir"
1466 #define wxART_FOLDER "folder"
1467 #define wxART_GO_DIR_UP "go_dir_up"
1468 #define wxART_EXECUTABLE_FILE "executable_file"
1469 #define wxART_NORMAL_FILE "normal_file"
1470 #define wxART_TICK_MARK "tick"
1471 #define wxART_CROSS_MARK "cross"
1472 #define wxART_ERROR "error"
1473 #define wxART_QUESTION "question"
1474 #define wxART_WARNING "warning"
1475 #define wxART_INFORMATION "information"
1476
1477
1478 %{ // Python aware wxArtProvider
1479 class wxPyArtProvider : public wxArtProvider {
1480 public:
1481
1482 virtual wxBitmap CreateBitmap(const wxArtID& id,
1483 const wxArtClient& client,
1484 const wxSize& size) {
1485 wxBitmap rval = wxNullBitmap;
1486 wxPyBeginBlockThreads();
1487 if ((wxPyCBH_findCallback(m_myInst, "CreateBitmap"))) {
1488 PyObject* so = wxPyConstructObject((void*)&size, "wxSize", 0);
1489 PyObject* ro;
1490 wxBitmap* ptr;
1491 PyObject* s1, *s2;
1492 s1 = wx2PyString(id);
1493 s2 = wx2PyString(client);
1494 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OOO)", s1, s2, so));
1495 Py_DECREF(so);
1496 Py_DECREF(s1);
1497 Py_DECREF(s2);
1498 if (ro) {
1499 if (!SWIG_GetPtrObj(ro, (void**)&ptr, "_wxBitmap_p"))
1500 rval = *ptr;
1501 Py_DECREF(ro);
1502 }
1503 }
1504 wxPyEndBlockThreads();
1505 return rval;
1506 }
1507
1508 PYPRIVATE;
1509 };
1510 %}
1511
1512 // The one for SWIG to see
1513 %name(wxArtProvider) class wxPyArtProvider : public wxObject
1514 {
1515 public:
1516 wxPyArtProvider();
1517
1518 void _setCallbackInfo(PyObject* self, PyObject* _class);
1519 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxArtProvider)"
1520
1521 // Add new provider to the top of providers stack.
1522 static void PushProvider(wxPyArtProvider *provider);
1523
1524 // Remove latest added provider and delete it.
1525 static bool PopProvider();
1526
1527 // Remove provider. The provider must have been added previously!
1528 // The provider is _not_ deleted.
1529 static bool RemoveProvider(wxPyArtProvider *provider);
1530
1531 // Query the providers for bitmap with given ID and return it. Return
1532 // wxNullBitmap if no provider provides it.
1533 static wxBitmap GetBitmap(const wxString& id,
1534 const wxString& client = wxPyART_OTHER,
1535 const wxSize& size = wxDefaultSize);
1536
1537 // Query the providers for icon with given ID and return it. Return
1538 // wxNullIcon if no provider provides it.
1539 static wxIcon GetIcon(const wxString& id,
1540 const wxString& client = wxPyART_OTHER,
1541 const wxSize& size = wxDefaultSize);
1542
1543 // Destroy caches & all providers
1544 static void CleanUpProviders();
1545 };
1546
1547
1548 //----------------------------------------------------------------------
1549
1550 %{
1551 #include <wx/docview.h>
1552 %}
1553
1554 class wxFileHistory : public wxObject
1555 {
1556 public:
1557 wxFileHistory(int maxFiles = 9);
1558 ~wxFileHistory();
1559
1560 // Operations
1561 void AddFileToHistory(const wxString& file);
1562 void RemoveFileFromHistory(int i);
1563 int GetMaxFiles() const;
1564 void UseMenu(wxMenu *menu);
1565
1566 // Remove menu from the list (MDI child may be closing)
1567 void RemoveMenu(wxMenu *menu);
1568
1569 void Load(wxConfigBase& config);
1570 void Save(wxConfigBase& config);
1571
1572 void AddFilesToMenu();
1573 %name(AddFilesToThisMenu)void AddFilesToMenu(wxMenu* menu);
1574
1575 // Accessors
1576 wxString GetHistoryFile(int i) const;
1577
1578 // A synonym for GetNoHistoryFiles
1579 int GetCount() const;
1580 int GetNoHistoryFiles() const;
1581
1582 };
1583
1584 //----------------------------------------------------------------------
1585 //----------------------------------------------------------------------
1586
1587 // %{
1588 // #if wxUSE_UNICODE
1589 // #define ADD_STRING(dict, str) \
1590 // wxString tmp##str(str); \
1591 // PyDict_SetItemString(dict, #str, \
1592 // PyUnicode_FromUnicode(tmp##str.c_str(), tmp##str.Len()))
1593 // #else
1594 // #define ADD_STRING(dict, str) \
1595 // PyDict_SetItemString(d, #str, PyString_FromString(str))
1596 // #endif
1597 // %}
1598
1599
1600 %init %{
1601 wxPyPtrTypeMap_Add("wxDragImage", "wxGenericDragImage");
1602 wxPyPtrTypeMap_Add("wxProcess", "wxPyProcess");
1603 wxPyPtrTypeMap_Add("wxArtProvider", "wxPyArtProvider");
1604
1605 %}
1606
1607 //----------------------------------------------------------------------
1608