1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface definitions for lots of little stuff that
4 // don't deserve their own file. ;-)
8 // Created: 18-June-1999
10 // Copyright: (c) 2003 by Total Control Software
11 // Licence: wxWindows license
12 /////////////////////////////////////////////////////////////////////////////
17 //---------------------------------------------------------------------------
23 MustHaveApp(wxToolTip);
25 class wxToolTip : public wxObject {
27 wxToolTip(const wxString &tip);
29 void SetTip(const wxString& tip);
31 // *** Not in the "public" interface void SetWindow(wxWindow *win);
32 wxWindow *GetWindow();
34 static void Enable(bool flag);
35 static void SetDelay(long milliseconds);
39 //---------------------------------------------------------------------------
45 wxCaret(wxWindow* window, const wxSize& size);
51 wxPoint GetPosition();
53 void, GetPosition(int *OUTPUT, int *OUTPUT),
54 "GetPositionTuple() -> (x,y)",
59 void, GetSize( int *OUTPUT, int *OUTPUT ),
60 "GetSizeTuple() -> (width, height)",
64 wxWindow *GetWindow();
65 %name(MoveXY)void Move(int x, int y);
66 void Move(const wxPoint& pt);
67 %name(SetSizeWH) void SetSize(int width, int height);
68 void SetSize(const wxSize& size);
69 void Show(int show = True);
72 %pythoncode { def __nonzero__(self): return self.IsOk() }
76 int wxCaret_GetBlinkTime() {
77 return wxCaret::GetBlinkTime();
80 void wxCaret_SetBlinkTime(int milliseconds) {
81 wxCaret::SetBlinkTime(milliseconds);
85 //---------------------------------------------------------------------------
87 MustHaveApp(wxBusyCursor);
91 wxBusyCursor(wxCursor* cursor = wxHOURGLASS_CURSOR);
95 //---------------------------------------------------------------------------
97 MustHaveApp(wxWindowDisabler);
99 class wxWindowDisabler {
101 wxWindowDisabler(wxWindow *winToSkip = NULL);
105 //---------------------------------------------------------------------------
107 MustHaveApp(wxBusyInfo);
109 class wxBusyInfo : public wxObject {
111 wxBusyInfo(const wxString& message);
116 //---------------------------------------------------------------------------
119 // wxStopWatch: measure time intervals with up to 1ms resolution
123 // ctor starts the stop watch
126 // start the stop watch at the moment t0
127 void Start(long t0 = 0);
129 // pause the stop watch
135 // get elapsed time since the last Start() in milliseconds
141 //---------------------------------------------------------------------------
143 class wxFileHistory : public wxObject
146 wxFileHistory(int maxFiles = 9);
150 void AddFileToHistory(const wxString& file);
151 void RemoveFileFromHistory(int i);
152 int GetMaxFiles() const;
153 void UseMenu(wxMenu *menu);
155 // Remove menu from the list (MDI child may be closing)
156 void RemoveMenu(wxMenu *menu);
158 void Load(wxConfigBase& config);
159 void Save(wxConfigBase& config);
161 void AddFilesToMenu();
162 %name(AddFilesToThisMenu)void AddFilesToMenu(wxMenu* menu);
165 wxString GetHistoryFile(int i) const;
167 int GetCount() const;
168 %pythoncode { GetNoHistoryFiles = GetCount }
173 //---------------------------------------------------------------------------
176 #include <wx/snglinst.h>
179 class wxSingleInstanceChecker
182 // like Create() but no error checking (dangerous!)
183 wxSingleInstanceChecker(const wxString& name,
184 const wxString& path = wxPyEmptyString);
186 // default ctor, use Create() after it
187 %name(PreSingleInstanceChecker) wxSingleInstanceChecker();
189 ~wxSingleInstanceChecker();
192 // name must be given and be as unique as possible, it is used as the mutex
193 // name under Win32 and the lock file name under Unix -
194 // wxTheApp->GetAppName() may be a good value for this parameter
196 // path is optional and is ignored under Win32 and used as the directory to
197 // create the lock file in under Unix (default is wxGetHomeDir())
199 // returns False if initialization failed, it doesn't mean that another
200 // instance is running - use IsAnotherRunning() to check it
201 bool Create(const wxString& name, const wxString& path = wxPyEmptyString);
203 // is another copy of this program already running?
204 bool IsAnotherRunning() const;
207 //---------------------------------------------------------------------------
214 #include <wx/msw/private.h>
215 #include <wx/dynload.h>
222 void wxDrawWindowOnDC(wxWindow* window, const wxDC& dc, int method)
229 // This one only partially works. Appears to be an undocumented
230 // "standard" convention that not all widgets adhear to. For
231 // example, for some widgets backgrounds or non-client areas may
233 ::SendMessage(GetHwndOf(window), WM_PAINT, (long)GetHdcOf(dc), 0);
237 // This one works much better, except for on XP. On Win2k nearly
238 // all widgets and their children are captured correctly[**]. On
239 // XP with Themes activated most native widgets draw only
240 // partially, if at all. Without themes it works just like on
243 // ** For example the radio buttons in a wxRadioBox are not its
244 // children by default, but you can capture it via the panel
245 // instead, or change RADIOBTN_PARENT_IS_RADIOBOX in radiobox.cpp.
246 ::SendMessage(GetHwndOf(window), WM_PRINT, (long)GetHdcOf(dc),
247 PRF_CLIENT | PRF_NONCLIENT | PRF_CHILDREN |
248 PRF_ERASEBKGND | PRF_OWNED );
252 // This one is only defined in the latest SDK and is only
253 // available on XP. MSDN says it is similar to sending WM_PRINT
254 // so I expect that it will work similar to the above. Since it
255 // is avaialble only on XP, it can't be compiled like this and
256 // will have to be loaded dynamically.
257 // //::PrintWindow(GetHwndOf(window), GetHdcOf(dc), 0); //break;
262 // Use PrintWindow if available, or fallback to WM_PRINT
263 // otherwise. Unfortunately using PrintWindow is even worse than
264 // WM_PRINT. For most native widgets nothing is drawn to the dc
265 // at all, with or without Themes.
266 typedef BOOL (WINAPI *PrintWindow_t)(HWND, HDC, UINT);
267 static bool s_triedToLoad = False;
268 static PrintWindow_t pfnPrintWindow = NULL;
269 if ( !s_triedToLoad )
272 s_triedToLoad = True;
273 wxDynamicLibrary dllUser32(_T("user32.dll"));
274 if ( dllUser32.IsLoaded() )
276 wxLogNull nolog; // Don't report errors here
277 pfnPrintWindow = (PrintWindow_t)dllUser32.GetSymbol(_T("PrintWindow"));
282 printf("Using PrintWindow\n");
283 pfnPrintWindow(GetHwndOf(window), GetHdcOf(dc), 0);
287 printf("Using WM_PRINT\n");
288 ::SendMessage(GetHwndOf(window), WM_PRINT, (long)GetHdcOf(dc),
289 PRF_CLIENT | PRF_NONCLIENT | PRF_CHILDREN | PRF_ERASEBKGND | PRF_OWNED );
297 //---------------------------------------------------------------------------
298 //---------------------------------------------------------------------------