1 /////////////////////////////////////////////////////////////////////////////
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.)
9 // Created: 18-June-1999
11 // Copyright: (c) 1998 by Total Control Software
12 // Licence: wxWindows license
13 /////////////////////////////////////////////////////////////////////////////
19 #include "pyistream.h"
20 #include <wx/resource.h>
21 #include <wx/tooltip.h>
23 #include <wx/tipdlg.h>
24 #include <wx/process.h>
26 #if wxUSE_JOYSTICK || defined(__WXMSW__)
27 #include <wx/joystick.h>
30 #if wxUSE_WAVE || defined(__WXMSW__)
34 #include <wx/mimetype.h>
37 //----------------------------------------------------------------------
40 %include my_typemaps.i
42 // Import some definitions of other classes, etc.
52 //----------------------------------------------------------------------
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(""));
62 //---------------------------------------------------------------------------
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,
71 wxWindow *parent = NULL,
72 int x = -1, int y = -1);
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);
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);
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);
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,
100 wxString wxGetPasswordFromUser(const wxString& message,
101 const wxString& caption = wxPyEmptyString,
102 const wxString& default_value = wxPyEmptyString,
103 wxWindow *parent = NULL);
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);
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,
119 int width=150, int height=200);
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,
126 int width=150, int height=200);
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);
135 long wxGetNumberFromUser(const wxString& message,
136 const wxString& prompt,
137 const wxString& caption,
139 long min = 0, long max = 100,
140 wxWindow *parent = NULL,
141 const wxPoint& pos = wxDefaultPosition);
143 //---------------------------------------------------------------------------
146 bool wxColourDisplay();
148 int wxDisplayDepth();
149 int wxGetDisplayDepth();
151 void wxDisplaySize(int* OUTPUT, int* OUTPUT);
152 wxSize wxGetDisplaySize();
154 void wxDisplaySizeMM(int* OUTPUT, int* OUTPUT);
155 wxSize wxGetDisplaySizeMM();
157 void wxClientDisplayRect(int *OUTPUT, int *OUTPUT, int *OUTPUT, int *OUTPUT);
158 wxRect wxGetClientDisplayRect();
160 void wxSetCursor(wxCursor& cursor);
162 //----------------------------------------------------------------------
163 // Miscellaneous functions
165 void wxBeginBusyCursor(wxCursor *cursor = wxHOURGLASS_CURSOR);
166 wxWindow * wxGetActiveWindow();
168 wxWindow* wxGenericFindWindowAtPoint(const wxPoint& pt);
169 wxWindow* wxFindWindowAtPoint(const wxPoint& pt);
172 bool wxCheckForInterrupt(wxWindow *wnd);
173 void wxFlushEvents();
176 wxWindow* wxGetTopLevelParent(wxWindow *win);
178 //---------------------------------------------------------------------------
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);
191 //---------------------------------------------------------------------------
194 // possible values for wxSystemSettings::GetFont() parameter
198 wxSYS_OEM_FIXED_FONT = 10,
199 wxSYS_ANSI_FIXED_FONT,
202 wxSYS_DEVICE_DEFAULT_FONT,
203 wxSYS_DEFAULT_PALETTE,
204 wxSYS_SYSTEM_FIXED_FONT,
205 wxSYS_DEFAULT_GUI_FONT
208 // possible values for wxSystemSettings::GetColour() parameter
212 wxSYS_COLOUR_SCROLLBAR,
213 wxSYS_COLOUR_BACKGROUND,
214 wxSYS_COLOUR_DESKTOP = wxSYS_COLOUR_BACKGROUND,
215 wxSYS_COLOUR_ACTIVECAPTION,
216 wxSYS_COLOUR_INACTIVECAPTION,
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,
243 wxSYS_COLOUR_LISTBOX,
244 wxSYS_COLOUR_HOTLIGHT,
245 wxSYS_COLOUR_GRADIENTACTIVECAPTION,
246 wxSYS_COLOUR_GRADIENTINACTIVECAPTION,
247 wxSYS_COLOUR_MENUHILIGHT,
248 wxSYS_COLOUR_MENUBAR,
253 // possible values for wxSystemSettings::GetMetric() parameter
257 wxSYS_MOUSE_BUTTONS = 1,
268 wxSYS_HSCROLL_ARROW_X,
269 wxSYS_HSCROLL_ARROW_Y,
285 wxSYS_VSCROLL_ARROW_X,
286 wxSYS_VSCROLL_ARROW_Y,
290 wxSYS_NETWORK_PRESENT,
291 wxSYS_PENWINDOWS_PRESENT,
296 // possible values for wxSystemSettings::HasFeature() parameter
299 wxSYS_CAN_DRAW_FRAME_DECORATIONS = 1,
300 wxSYS_CAN_ICONIZE_FRAME
303 enum wxSystemScreenType
305 wxSYS_SCREEN_NONE = 0, // not yet defined
307 wxSYS_SCREEN_TINY, // <
308 wxSYS_SCREEN_PDA, // >= 320x240
309 wxSYS_SCREEN_SMALL, // >= 640x480
310 wxSYS_SCREEN_DESKTOP // >= 800x600
314 class wxSystemSettings {
316 // get a standard system colour
317 static wxColour GetColour(wxSystemColour index);
319 // get a standard system font
320 static wxFont GetFont(wxSystemFont index);
322 // get a system-dependent metric
323 static int GetMetric(wxSystemMetric index);
325 // return true if the port has certain feature
326 static bool HasFeature(wxSystemFeature index);
328 // Get system screen design (desktop, pda, ..) used for
329 // laying out various dialogs.
330 static wxSystemScreenType GetScreenType();
333 static void SetScreenType( wxSystemScreenType screen );
339 //---------------------------------------------------------------------------
342 class wxToolTip : public wxObject {
344 wxToolTip(const wxString &tip);
346 void SetTip(const wxString& tip);
348 // *** Not in the "public" interface void SetWindow(wxWindow *win);
349 wxWindow *GetWindow();
351 static void Enable(bool flag);
352 static void SetDelay(long milliseconds);
355 //----------------------------------------------------------------------
359 wxCaret(wxWindow* window, const wxSize& size);
364 %name(GetPositionTuple)void GetPosition(int *OUTPUT, int *OUTPUT);
365 wxPoint GetPosition();
366 %name(GetSizeTuple)void GetSize(int *OUTPUT, int *OUTPUT);
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);
378 int wxCaret_GetBlinkTime() {
379 return wxCaret::GetBlinkTime();
382 void wxCaret_SetBlinkTime(int milliseconds) {
383 wxCaret::SetBlinkTime(milliseconds);
387 //----------------------------------------------------------------------
391 wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR);
395 //----------------------------------------------------------------------
397 class wxWindowDisabler {
399 wxWindowDisabler(wxWindow *winToSkip = NULL);
403 //----------------------------------------------------------------------
405 bool wxSafeYield(wxWindow* win=NULL);
406 void wxPostEvent(wxEvtHandler *dest, wxEvent& event);
411 void wxWakeUpMainThread();
414 void wxMutexGuiEnter();
415 void wxMutexGuiLeave();
418 class wxMutexGuiLocker {
426 bool wxThread_IsMain() {
427 #ifdef WXP_WITH_THREAD
428 return wxThread::IsMain();
435 //----------------------------------------------------------------------
441 // wxTipProvider(size_t currentTip); **** Abstract base class
444 virtual wxString GetTip() = 0;
445 size_t GetCurrentTip();
450 // The C++ version of wxPyTipProvider
452 class wxPyTipProvider : public wxTipProvider {
454 wxPyTipProvider(size_t currentTip)
455 : wxTipProvider(currentTip) {}
457 DEC_PYCALLBACK_STRING__pure(GetTip);
462 IMP_PYCALLBACK_STRING__pure( wxPyTipProvider, wxTipProvider, GetTip);
467 // Now let SWIG know about it
468 class wxPyTipProvider : public wxTipProvider {
470 wxPyTipProvider(size_t currentTip);
475 bool wxShowTip(wxWindow *parent, wxTipProvider *tipProvider, bool showAtStartup = TRUE);
476 %new wxTipProvider * wxCreateFileTipProvider(const wxString& filename, size_t currentTip);
479 //----------------------------------------------------------------------
482 #include <wx/generic/dragimgg.h>
485 %name (wxDragImage) class wxGenericDragImage : public wxObject
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);
498 ~wxGenericDragImage();
500 void SetBackingBitmap(wxBitmap* bitmap);
501 bool BeginDrag(const wxPoint& hotspot, wxWindow* window,
502 bool fullScreen = FALSE, wxRect* rect = NULL);
504 %name(BeginDrag2) bool BeginDrag(const wxPoint& hotspot, wxWindow* window,
505 wxWindow* fullScreenRect);
508 bool Move(const wxPoint& pt);
512 wxRect GetImageRect(const wxPoint& pos) const;
513 bool RedrawImage(const wxPoint& oldPos, const wxPoint& newPos,
514 bool eraseOld, bool drawNew);
518 //----------------------------------------------------------------------
520 class wxPyTimer : public wxObject {
522 wxPyTimer(PyObject* notify);
527 void SetOwner(wxEvtHandler *owner, int id = -1);
528 void Start(int milliseconds=-1, int oneShot=FALSE);
536 // ctor starts the stop watch
539 void Start(long t = 0);
543 // get elapsed time since the last Start() or Pause() in milliseconds
548 //----------------------------------------------------------------------
549 //----------------------------------------------------------------------
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
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
572 #define wxTRACE_OleCalls "ole" // OLE interface calls
593 static bool IsEnabled();
594 static bool EnableLogging(bool doIt = TRUE);
595 static void OnLog(unsigned long level, const wxString& szString, int t=0);
597 virtual void Flush();
598 bool HasPendingMessages() const;
600 static void FlushActive();
601 static wxLog *GetActiveTarget();
602 static wxLog *SetActiveTarget(wxLog *pLogger);
604 static void Suspend();
605 static void Resume();
607 static void SetVerbose(bool bVerbose = TRUE);
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();
615 static void SetTimestamp(const wxString& ts);
616 static const wxString& GetTimestamp();
618 bool GetVerbose() const;
620 static unsigned long GetTraceMask();
621 static bool IsAllowedTraceMask(const wxString& mask);
623 // static void TimeStamp(wxString *str);
625 wxString TimeStamp() {
627 wxLog::TimeStamp(&msg);
635 class wxLogStderr : public wxLog
638 wxLogStderr(/* TODO: FILE *fp = (FILE *) NULL*/);
642 class wxLogTextCtrl : public wxLog
645 wxLogTextCtrl(wxTextCtrl *pTextCtrl);
649 class wxLogGui : public wxLog
655 class wxLogWindow : public wxLog
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?
663 void Show(bool bShow = TRUE);
664 wxFrame *GetFrame() const;
665 wxLog *GetOldLog() const;
666 bool IsPassingMessages() const;
667 void PassMessages(bool bDoPass);
671 class wxLogChain : public wxLog
674 wxLogChain(wxLog *logger);
675 void SetLog(wxLog *logger);
676 void PassMessages(bool bDoPass);
677 bool IsPassingMessages();
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);
694 void wxLogTrace(const wxString& msg);
695 %name(wxLogTraceMask)void wxLogTrace(const wxString& mask, const wxString& msg);
697 void wxLogGeneric(unsigned long level, const wxString& msg);
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);
705 // Suspress logging while an instance of this class exists
717 // A wxLog class that can be derived from in wxPython
718 class wxPyLog : public wxLog {
720 wxPyLog() : wxLog() {}
722 virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t) {
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));
730 wxPyEndBlockThreads();
732 wxLog::DoLog(level, szString, t);
735 virtual void DoLogString(const wxChar *szString, time_t t) {
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));
743 wxPyEndBlockThreads();
745 wxLog::DoLogString(szString, t);
752 // Now tell SWIG about it
753 class wxPyLog : public wxLog {
756 void _setCallbackInfo(PyObject* self, PyObject* _class);
757 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxPyLog)"
758 %addmethods { void Destroy() { delete self; } }
763 //----------------------------------------------------------------------
772 class wxProcessEvent : public wxEvent {
774 wxProcessEvent(int id = 0, int pid = 0, int exitcode = 0);
777 int m_pid, m_exitcode;
783 %{ // C++ version of wxProcess derived class
785 class wxPyProcess : public wxProcess {
787 wxPyProcess(wxEvtHandler *parent = NULL, int id = -1)
788 : wxProcess(parent, id)
791 DEC_PYCALLBACK_VOID_INTINT(OnTerminate);
796 IMP_PYCALLBACK_VOID_INTINT( wxPyProcess, wxProcess, OnTerminate);
801 %name(wxProcess)class wxPyProcess : public wxEvtHandler {
803 wxPyProcess(wxEvtHandler *parent = NULL, int id = -1);
804 %addmethods { void Destroy() { delete self; } }
806 void _setCallbackInfo(PyObject* self, PyObject* _class);
807 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxProcess)"
809 void base_OnTerminate(int pid, int status);
815 wxInputStream *GetInputStream();
816 wxInputStream *GetErrorStream();
817 wxOutputStream *GetOutputStream();
825 // execute the process asynchronously
828 // execute it synchronously, i.e. wait until it finishes
831 // under Windows, don't hide the child even if it's IO is redirected (this
832 // is done by default)
835 // under Unix, if the process is the group leader then killing -pid kills
836 // all children as well as pid
837 wxEXEC_MAKE_GROUP_LEADER = 4
841 long wxExecute(const wxString& command,
842 int flags = wxEXEC_ASYNC,
843 wxPyProcess *process = NULL);
845 //----------------------------------------------------------------------
848 // Which joystick? Same as Windows ids so no conversion necessary.
855 // Which button is down?
867 #if !wxUSE_JOYSTICK && !defined(__WXMSW__)
868 // A C++ stub class for wxJoystick for platforms that don't have it.
869 class wxJoystick : public wxObject {
871 wxJoystick(int joystick = wxJOYSTICK1) {
872 wxPyBeginBlockThreads();
873 PyErr_SetString(PyExc_NotImplementedError, "wxJoystick is not available on this platform.");
874 wxPyEndBlockThreads();
876 wxPoint GetPosition() { return wxPoint(-1,-1); }
877 int GetZPosition() { return -1; }
878 int GetButtonState() { return -1; }
879 int GetPOVPosition() { return -1; }
880 int GetPOVCTSPosition() { return -1; }
881 int GetRudderPosition() { return -1; }
882 int GetUPosition() { return -1; }
883 int GetVPosition() { return -1; }
884 int GetMovementThreshold() { return -1; }
885 void SetMovementThreshold(int threshold) {}
887 bool IsOk(void) { return FALSE; }
888 int GetNumberJoysticks() { return -1; }
889 int GetManufacturerId() { return -1; }
890 int GetProductId() { return -1; }
891 wxString GetProductName() { return ""; }
892 int GetXMin() { return -1; }
893 int GetYMin() { return -1; }
894 int GetZMin() { return -1; }
895 int GetXMax() { return -1; }
896 int GetYMax() { return -1; }
897 int GetZMax() { return -1; }
898 int GetNumberButtons() { return -1; }
899 int GetNumberAxes() { return -1; }
900 int GetMaxButtons() { return -1; }
901 int GetMaxAxes() { return -1; }
902 int GetPollingMin() { return -1; }
903 int GetPollingMax() { return -1; }
904 int GetRudderMin() { return -1; }
905 int GetRudderMax() { return -1; }
906 int GetUMin() { return -1; }
907 int GetUMax() { return -1; }
908 int GetVMin() { return -1; }
909 int GetVMax() { return -1; }
911 bool HasRudder() { return FALSE; }
912 bool HasZ() { return FALSE; }
913 bool HasU() { return FALSE; }
914 bool HasV() { return FALSE; }
915 bool HasPOV() { return FALSE; }
916 bool HasPOV4Dir() { return FALSE; }
917 bool HasPOVCTS() { return FALSE; }
919 bool SetCapture(wxWindow* win, int pollingFreq = 0) { return FALSE; }
920 bool ReleaseCapture() { return FALSE; }
926 class wxJoystick : public wxObject {
928 wxJoystick(int joystick = wxJOYSTICK1);
931 wxPoint GetPosition();
933 int GetButtonState();
934 int GetPOVPosition();
935 int GetPOVCTSPosition();
936 int GetRudderPosition();
939 int GetMovementThreshold();
940 void SetMovementThreshold(int threshold) ;
943 int GetNumberJoysticks();
944 int GetManufacturerId();
946 wxString GetProductName();
953 int GetNumberButtons();
974 bool SetCapture(wxWindow* win, int pollingFreq = 0);
975 bool ReleaseCapture();
978 //----------------------------------------------------------------------
982 // A C++ stub class for wxWave for platforms that don't have it.
983 class wxWave : public wxObject
986 wxWave(const wxString& fileName, bool isResource = FALSE) {
987 wxPyBeginBlockThreads();
988 PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
989 wxPyEndBlockThreads();
991 wxWave(int size, const wxByte* data) {
992 wxPyBeginBlockThreads();
993 PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
994 wxPyEndBlockThreads();
999 bool IsOk() const { return FALSE; }
1000 bool Play(bool async = TRUE, bool looped = FALSE) const { return FALSE; }
1006 class wxWave : public wxObject
1009 wxWave(const wxString& fileName, bool isResource = FALSE);
1013 bool Play(bool async = TRUE, bool looped = FALSE) const;
1016 %new wxWave* wxWaveData(const wxString& data);
1017 %{ // Implementations of some alternate "constructors"
1018 wxWave* wxWaveData(const wxString& data) {
1019 return new wxWave(data.Len(), (wxByte*)data.c_str());
1024 //----------------------------------------------------------------------
1028 wxMAILCAP_STANDARD = 1,
1029 wxMAILCAP_NETSCAPE = 2,
1031 wxMAILCAP_GNOME = 8,
1038 class wxFileTypeInfo
1043 wxFileTypeInfo(const char* mimeType,
1044 const char* openCmd,
1045 const char* printCmd,
1049 // the array elements correspond to the parameters of the ctor above in
1051 %name(wxFileTypeInfoSequence)wxFileTypeInfo(const wxArrayString& sArray);
1053 // invalid item - use this to terminate the array passed to
1054 // wxMimeTypesManager::AddFallbacks
1055 %name(wxNullFileTypeInfo)wxFileTypeInfo();
1058 // test if this object can be used
1059 bool IsValid() const;
1062 // set the icon info
1063 void SetIcon(const wxString& iconFile, int iconIndex = 0);
1065 // set the short desc
1066 void SetShortDesc(const wxString& shortDesc);
1069 // get the MIME type
1070 const wxString& GetMimeType() const;
1071 // get the open command
1072 const wxString& GetOpenCommand() const;
1073 // get the print command
1074 const wxString& GetPrintCommand() const;
1075 // get the short description (only used under Win32 so far)
1076 const wxString& GetShortDesc() const;
1077 // get the long, user visible description
1078 const wxString& GetDescription() const;
1081 // get the array of all extensions
1082 //const wxArrayString& GetExtensions() const;
1084 PyObject* GetExtensions() {
1085 wxArrayString& arr = (wxArrayString&)self->GetExtensions();
1086 return wxArrayString2PyList_helper(arr);
1090 int GetExtensionsCount() const;
1092 // get the icon info
1093 const wxString& GetIconFile() const;
1094 int GetIconIndex() const;
1104 // TODO: Make a wxPyMessageParameters with virtual GetParamValue...
1106 // An object of this class must be passed to Get{Open|Print}Command. The
1107 // default implementation is trivial and doesn't know anything at all about
1108 // parameters, only filename and MIME type are used (so it's probably ok for
1109 // Windows where %{param} is not used anyhow)
1110 class MessageParameters
1114 MessageParameters(const wxString& filename=wxPyEmptyString,
1115 const wxString& mimetype=wxPyEmptyString);
1117 // accessors (called by GetOpenCommand)
1119 const wxString& GetFileName() const;
1121 const wxString& GetMimeType() const;;
1123 // override this function in derived class
1124 virtual wxString GetParamValue(const wxString& name) const;
1126 // virtual dtor as in any base class
1127 virtual ~MessageParameters();
1131 // ctor from static data
1132 wxFileType(const wxFileTypeInfo& ftInfo);
1134 // return the MIME type for this file type
1136 PyObject* GetMimeType() {
1138 if (self->GetMimeType(&str)) {
1140 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1142 return PyString_FromStringAndSize(str.c_str(), str.Len());
1148 PyObject* GetMimeTypes() {
1150 if (self->GetMimeTypes(arr))
1151 return wxArrayString2PyList_helper(arr);
1158 // Get all extensions associated with this file type
1160 PyObject* GetExtensions() {
1162 if (self->GetExtensions(arr))
1163 return wxArrayString2PyList_helper(arr);
1171 // Get the icon corresponding to this file type
1172 %new wxIcon* GetIcon() {
1174 if (self->GetIcon(&icon))
1175 return new wxIcon(icon);
1180 // Get the icon corresponding to this file type, the name of the file
1181 // where this icon resides, and its index in this file if applicable.
1182 PyObject* GetIconInfo() {
1186 if (self->GetIcon(&icon, &iconFile, &iconIndex)) {
1187 wxPyBeginBlockThreads();
1188 PyObject* tuple = PyTuple_New(3);
1189 PyTuple_SetItem(tuple, 0, wxPyConstructObject(new wxIcon(icon),
1192 PyTuple_SetItem(tuple, 1, PyUnicode_FromUnicode(iconFile.c_str(), iconFile.Len()));
1194 PyTuple_SetItem(tuple, 1, PyString_FromStringAndSize(iconFile.c_str(), iconFile.Len()));
1196 PyTuple_SetItem(tuple, 2, PyInt_FromLong(iconIndex));
1197 wxPyEndBlockThreads();
1206 // get a brief file type description ("*.txt" => "text document")
1207 PyObject* GetDescription() {
1209 if (self->GetDescription(&str)) {
1211 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1213 return PyString_FromStringAndSize(str.c_str(), str.Len());
1221 // get the command to open/execute the file of given type
1223 PyObject* GetOpenCommand(const wxString& filename,
1224 const wxString& mimetype=wxPyEmptyString) {
1226 if (self->GetOpenCommand(&str, wxFileType::MessageParameters(filename, mimetype))) {
1228 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1230 return PyString_FromStringAndSize(str.c_str(), str.Len());
1238 // get the command to print the file of given type
1240 PyObject* GetPrintCommand(const wxString& filename,
1241 const wxString& mimetype=wxPyEmptyString) {
1243 if (self->GetPrintCommand(&str, wxFileType::MessageParameters(filename, mimetype))) {
1245 return PyUnicode_FromUnicode(str.c_str(), str.Len());
1247 return PyString_FromStringAndSize(str.c_str(), str.Len());
1255 // Get all commands defined for this file type
1257 PyObject* GetAllCommands(const wxString& filename,
1258 const wxString& mimetype=wxPyEmptyString) {
1259 wxArrayString verbs;
1260 wxArrayString commands;
1261 if (self->GetAllCommands(&verbs, &commands,
1262 wxFileType::MessageParameters(filename, mimetype))) {
1263 wxPyBeginBlockThreads();
1264 PyObject* tuple = PyTuple_New(2);
1265 PyTuple_SetItem(tuple, 0, wxArrayString2PyList_helper(verbs));
1266 PyTuple_SetItem(tuple, 1, wxArrayString2PyList_helper(commands));
1267 wxPyEndBlockThreads();
1276 // set an arbitrary command, ask confirmation if it already exists and
1277 // overwriteprompt is TRUE
1278 bool SetCommand(const wxString& cmd, const wxString& verb,
1279 bool overwriteprompt = TRUE);
1281 bool SetDefaultIcon(const wxString& cmd = wxPyEmptyString, int index = 0);
1284 // remove the association for this filetype from the system MIME database:
1285 // notice that it will only work if the association is defined in the user
1286 // file/registry part, we will never modify the system-wide settings
1290 // expand a string in the format of GetOpenCommand (which may contain
1291 // '%s' and '%t' format specificators for the file name and mime type
1292 // and %{param} constructions).
1293 static wxString ExpandCommand(const wxString& command,
1294 const MessageParameters& params);
1296 // dtor (not virtual, shouldn't be derived from)
1304 class wxMimeTypesManager
1307 // static helper functions
1308 // -----------------------
1310 // check if the given MIME type is the same as the other one: the
1311 // second argument may contain wildcards ('*'), but not the first. If
1312 // the types are equal or if the mimeType matches wildcard the function
1313 // returns TRUE, otherwise it returns FALSE
1314 static bool IsOfType(const wxString& mimeType, const wxString& wildcard);
1317 wxMimeTypesManager();
1319 // loads data from standard files according to the mailcap styles
1320 // specified: this is a bitwise OR of wxMailcapStyle values
1322 // use the extraDir parameter if you want to look for files in another
1324 void Initialize(int mailcapStyle = wxMAILCAP_STANDARD,
1325 const wxString& extraDir = wxPyEmptyString);
1327 // and this function clears all the data from the manager
1330 // Database lookup: all functions return a pointer to wxFileType object
1331 // whose methods may be used to query it for the information you're
1332 // interested in. If the return value is !NULL, caller is responsible for
1334 // get file type from file extension
1335 %new wxFileType *GetFileTypeFromExtension(const wxString& ext);
1337 // get file type from MIME type (in format <category>/<format>)
1338 %new wxFileType *GetFileTypeFromMimeType(const wxString& mimeType);
1340 // other operations: return TRUE if there were no errors or FALSE if there
1341 // were some unreckognized entries (the good entries are always read anyhow)
1344 // read in additional file (the standard ones are read automatically)
1345 // in mailcap format (see mimetype.cpp for description)
1347 // 'fallback' parameter may be set to TRUE to avoid overriding the
1348 // settings from other, previously parsed, files by this one: normally,
1349 // the files read most recently would override the older files, but with
1350 // fallback == TRUE this won't happen
1351 bool ReadMailcap(const wxString& filename, bool fallback = FALSE);
1353 // read in additional file in mime.types format
1354 bool ReadMimeTypes(const wxString& filename);
1356 // enumerate all known MIME types
1358 PyObject* EnumAllFileTypes() {
1360 self->EnumAllFileTypes(arr);
1361 return wxArrayString2PyList_helper(arr);
1365 // these functions can be used to provide default values for some of the
1366 // MIME types inside the program itself (you may also use
1367 // ReadMailcap(filenameWithDefaultTypes, TRUE /* use as fallback */) to
1368 // achieve the same goal, but this requires having this info in a file).
1370 void AddFallback(const wxFileTypeInfo& ft);
1373 // create or remove associations
1375 // create a new association using the fields of wxFileTypeInfo (at least
1376 // the MIME type and the extension should be set)
1377 // if the other fields are empty, the existing values should be left alone
1378 %new wxFileType *Associate(const wxFileTypeInfo& ftInfo);
1381 bool Unassociate(wxFileType *ft) ;
1383 // dtor (not virtual, shouldn't be derived from)
1384 ~wxMimeTypesManager();
1392 extern wxMimeTypesManager* wxTheMimeTypesManager;
1398 //----------------------------------------------------------------------
1401 #include <wx/artprov.h>
1403 DECLARE_DEF_STRING(ART_OTHER);
1408 #define wxART_TOOLBAR "toolbar_C"
1409 #define wxART_MENU "menu_C"
1410 #define wxART_FRAME_ICON "frame_icon_C"
1412 #define wxART_CMN_DIALOG "cmn_dialog_C"
1413 #define wxART_HELP_BROWSER "help_browser_C"
1414 #define wxART_MESSAGE_BOX "message_box_C"
1416 #define wxART_OTHER "other_C"
1419 #define wxART_ADD_BOOKMARK "add_bookmark"
1420 #define wxART_DEL_BOOKMARK "del_bookmark"
1421 #define wxART_HELP_SIDE_PANEL "help_side_panel"
1422 #define wxART_HELP_SETTINGS "help_settings"
1423 #define wxART_HELP_BOOK "help_book"
1424 #define wxART_HELP_FOLDER "help_folder"
1425 #define wxART_HELP_PAGE "help_page"
1426 #define wxART_GO_BACK "go_back"
1427 #define wxART_GO_FORWARD "go_forward"
1428 #define wxART_GO_UP "go_up"
1429 #define wxART_GO_DOWN "go_down"
1430 #define wxART_GO_TO_PARENT "go_to_parent"
1431 #define wxART_GO_HOME "go_home"
1432 #define wxART_FILE_OPEN "file_open"
1433 #define wxART_PRINT "print"
1434 #define wxART_HELP "help"
1435 #define wxART_TIP "tip"
1436 #define wxART_REPORT_VIEW "report_view"
1437 #define wxART_LIST_VIEW "list_view"
1438 #define wxART_NEW_DIR "new_dir"
1439 #define wxART_FOLDER "folder"
1440 #define wxART_GO_DIR_UP "go_dir_up"
1441 #define wxART_EXECUTABLE_FILE "executable_file"
1442 #define wxART_NORMAL_FILE "normal_file"
1443 #define wxART_TICK_MARK "tick"
1444 #define wxART_CROSS_MARK "cross"
1445 #define wxART_ERROR "error"
1446 #define wxART_QUESTION "question"
1447 #define wxART_WARNING "warning"
1448 #define wxART_INFORMATION "information"
1451 %{ // Python aware wxArtProvider
1452 class wxPyArtProvider : public wxArtProvider {
1455 virtual wxBitmap CreateBitmap(const wxArtID& id,
1456 const wxArtClient& client,
1457 const wxSize& size) {
1458 wxBitmap rval = wxNullBitmap;
1459 wxPyBeginBlockThreads();
1460 if ((wxPyCBH_findCallback(m_myInst, "CreateBitmap"))) {
1461 PyObject* so = wxPyConstructObject((void*)&size, "wxSize", 0);
1465 s1 = wx2PyString(id);
1466 s2 = wx2PyString(client);
1467 ro = wxPyCBH_callCallbackObj(m_myInst, Py_BuildValue("(OOO)", s1, s2, so));
1472 if (!SWIG_GetPtrObj(ro, (void**)&ptr, "_wxBitmap_p"))
1477 wxPyEndBlockThreads();
1485 // The one for SWIG to see
1486 %name(wxArtProvider) class wxPyArtProvider : public wxObject
1491 void _setCallbackInfo(PyObject* self, PyObject* _class);
1492 %pragma(python) addtomethod = "__init__:self._setCallbackInfo(self, wxArtProvider)"
1494 // Add new provider to the top of providers stack.
1495 static void PushProvider(wxPyArtProvider *provider);
1497 // Remove latest added provider and delete it.
1498 static bool PopProvider();
1500 // Remove provider. The provider must have been added previously!
1501 // The provider is _not_ deleted.
1502 static bool RemoveProvider(wxPyArtProvider *provider);
1504 // Query the providers for bitmap with given ID and return it. Return
1505 // wxNullBitmap if no provider provides it.
1506 static wxBitmap GetBitmap(const wxString& id,
1507 const wxString& client = wxPyART_OTHER,
1508 const wxSize& size = wxDefaultSize);
1510 // Query the providers for icon with given ID and return it. Return
1511 // wxNullIcon if no provider provides it.
1512 static wxIcon GetIcon(const wxString& id,
1513 const wxString& client = wxPyART_OTHER,
1514 const wxSize& size = wxDefaultSize);
1516 // Destroy caches & all providers
1517 static void CleanUpProviders();
1521 //----------------------------------------------------------------------
1524 #include <wx/docview.h>
1527 class wxFileHistory : public wxObject
1530 wxFileHistory(int maxFiles = 9);
1534 void AddFileToHistory(const wxString& file);
1535 void RemoveFileFromHistory(int i);
1536 int GetMaxFiles() const;
1537 void UseMenu(wxMenu *menu);
1539 // Remove menu from the list (MDI child may be closing)
1540 void RemoveMenu(wxMenu *menu);
1542 void Load(wxConfigBase& config);
1543 void Save(wxConfigBase& config);
1545 void AddFilesToMenu();
1546 %name(AddFilesToThisMenu)void AddFilesToMenu(wxMenu* menu);
1549 wxString GetHistoryFile(int i) const;
1551 // A synonym for GetNoHistoryFiles
1552 int GetCount() const;
1553 int GetNoHistoryFiles() const;
1557 //----------------------------------------------------------------------
1558 //----------------------------------------------------------------------
1561 // #if wxUSE_UNICODE
1562 // #define ADD_STRING(dict, str) \
1563 // wxString tmp##str(str); \
1564 // PyDict_SetItemString(dict, #str, \
1565 // PyUnicode_FromUnicode(tmp##str.c_str(), tmp##str.Len()))
1567 // #define ADD_STRING(dict, str) \
1568 // PyDict_SetItemString(d, #str, PyString_FromString(str))
1574 wxPyPtrTypeMap_Add("wxDragImage", "wxGenericDragImage");
1575 wxPyPtrTypeMap_Add("wxProcess", "wxPyProcess");
1576 wxPyPtrTypeMap_Add("wxArtProvider", "wxPyArtProvider");
1580 //----------------------------------------------------------------------