1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Miscellaneous utility functions and classes
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) && !defined(__EMX__)
21 // Some older compilers (such as EMX) cannot handle
22 // #pragma interface/implementation correctly, iff
23 // #pragma implementation is used in _two_ translation
24 // units (as created by e.g. event.cpp compiled for
25 // libwx_base and event.cpp compiled for libwx_gui_core).
26 // So we must not use those pragmas for those compilers in
28 #pragma implementation "utils.h"
31 // For compilers that support precompilation, includes "wx.h".
32 #include "wx/wxprec.h"
40 #include "wx/string.h"
46 #include "wx/window.h"
49 #include "wx/msgdlg.h"
50 #include "wx/textdlg.h"
51 #include "wx/textctrl.h" // for wxTE_PASSWORD
53 #include "wx/menuitem.h"
59 #include "wx/apptrait.h"
61 #include "wx/process.h"
62 #include "wx/txtstrm.h"
64 #include "wx/mimetype.h"
65 #include "wx/config.h"
67 #if defined(__WXWINCE__) && wxUSE_DATETIME
68 #include "wx/datetime.h"
76 #if !defined(__WATCOMC__)
77 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
83 #include "wx/colordlg.h"
84 #include "wx/fontdlg.h"
85 #include "wx/notebook.h"
87 #include "wx/statusbr.h"
93 #include "wx/msw/wince/time.h"
96 #if !defined(__MWERKS__) && !defined(__WXWINCE__)
97 #include <sys/types.h>
101 #if defined(__WXMSW__)
102 #include "wx/msw/private.h"
107 // ----------------------------------------------------------------------------
109 // ----------------------------------------------------------------------------
111 #if WXWIN_COMPATIBILITY_2_2
112 const wxChar
*wxInternalErrorStr
= wxT("wxWidgets Internal Error");
113 const wxChar
*wxFatalErrorStr
= wxT("wxWidgets Fatal Error");
114 #endif // WXWIN_COMPATIBILITY_2_2
116 // ============================================================================
118 // ============================================================================
120 #if WXWIN_COMPATIBILITY_2_4
123 copystring (const wxChar
*s
)
125 if (s
== NULL
) s
= wxEmptyString
;
126 size_t len
= wxStrlen (s
) + 1;
128 wxChar
*news
= new wxChar
[len
];
129 memcpy (news
, s
, len
* sizeof(wxChar
)); // Should be the fastest
134 #endif // WXWIN_COMPATIBILITY_2_4
136 // ----------------------------------------------------------------------------
137 // String <-> Number conversions (deprecated)
138 // ----------------------------------------------------------------------------
140 #if WXWIN_COMPATIBILITY_2_4
142 WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxFloatToStringStr
= wxT("%.2f");
143 WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxDoubleToStringStr
= wxT("%.2f");
146 StringToFloat (const wxChar
*s
, float *number
)
148 if (s
&& *s
&& number
)
149 *number
= (float) wxStrtod (s
, (wxChar
**) NULL
);
153 StringToDouble (const wxChar
*s
, double *number
)
155 if (s
&& *s
&& number
)
156 *number
= wxStrtod (s
, (wxChar
**) NULL
);
160 FloatToString (float number
, const wxChar
*fmt
)
162 static wxChar buf
[256];
164 wxSprintf (buf
, fmt
, number
);
169 DoubleToString (double number
, const wxChar
*fmt
)
171 static wxChar buf
[256];
173 wxSprintf (buf
, fmt
, number
);
178 StringToInt (const wxChar
*s
, int *number
)
180 if (s
&& *s
&& number
)
181 *number
= (int) wxStrtol (s
, (wxChar
**) NULL
, 10);
185 StringToLong (const wxChar
*s
, long *number
)
187 if (s
&& *s
&& number
)
188 *number
= wxStrtol (s
, (wxChar
**) NULL
, 10);
192 IntToString (int number
)
194 static wxChar buf
[20];
196 wxSprintf (buf
, wxT("%d"), number
);
201 LongToString (long number
)
203 static wxChar buf
[20];
205 wxSprintf (buf
, wxT("%ld"), number
);
209 #endif // WXWIN_COMPATIBILITY_2_4
211 // Array used in DecToHex conversion routine.
212 static wxChar hexArray
[] = wxT("0123456789ABCDEF");
214 // Convert 2-digit hex number to decimal
215 int wxHexToDec(const wxString
& buf
)
217 int firstDigit
, secondDigit
;
219 if (buf
.GetChar(0) >= wxT('A'))
220 firstDigit
= buf
.GetChar(0) - wxT('A') + 10;
222 firstDigit
= buf
.GetChar(0) - wxT('0');
224 if (buf
.GetChar(1) >= wxT('A'))
225 secondDigit
= buf
.GetChar(1) - wxT('A') + 10;
227 secondDigit
= buf
.GetChar(1) - wxT('0');
229 return (firstDigit
& 0xF) * 16 + (secondDigit
& 0xF );
232 // Convert decimal integer to 2-character hex string
233 void wxDecToHex(int dec
, wxChar
*buf
)
235 int firstDigit
= (int)(dec
/16.0);
236 int secondDigit
= (int)(dec
- (firstDigit
*16.0));
237 buf
[0] = hexArray
[firstDigit
];
238 buf
[1] = hexArray
[secondDigit
];
242 // Convert decimal integer to 2-character hex string
243 wxString
wxDecToHex(int dec
)
246 wxDecToHex(dec
, buf
);
247 return wxString(buf
);
250 // ----------------------------------------------------------------------------
252 // ----------------------------------------------------------------------------
254 // Return the current date/time
259 wxDateTime now
= wxDateTime::Now();
262 return wxEmptyString
;
265 time_t now
= time((time_t *) NULL
);
266 char *date
= ctime(&now
);
268 return wxString::FromAscii(date
);
272 void wxUsleep(unsigned long milliseconds
)
274 wxMilliSleep(milliseconds
);
277 const wxChar
*wxGetInstallPrefix()
281 if ( wxGetEnv(wxT("WXPREFIX"), &prefix
) )
282 return prefix
.c_str();
284 #ifdef wxINSTALL_PREFIX
285 return wxT(wxINSTALL_PREFIX
);
287 return wxEmptyString
;
291 wxString
wxGetDataDir()
293 wxString dir
= wxGetInstallPrefix();
294 dir
<< wxFILE_SEP_PATH
<< wxT("share") << wxFILE_SEP_PATH
<< wxT("wx");
298 int wxGetOsVersion(int *verMaj
, int *verMin
)
300 // we want this function to work even if there is no wxApp
301 wxConsoleAppTraits traitsConsole
;
302 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
304 traits
= &traitsConsole
;
306 wxToolkitInfo
& info
= traits
->GetToolkitInfo();
308 *verMaj
= info
.versionMajor
;
310 *verMin
= info
.versionMinor
;
314 // ----------------------------------------------------------------------------
315 // network and user id functions
316 // ----------------------------------------------------------------------------
318 // Get Full RFC822 style email address
319 bool wxGetEmailAddress(wxChar
*address
, int maxSize
)
321 wxString email
= wxGetEmailAddress();
325 wxStrncpy(address
, email
, maxSize
- 1);
326 address
[maxSize
- 1] = wxT('\0');
331 wxString
wxGetEmailAddress()
335 wxString host
= wxGetFullHostName();
338 wxString user
= wxGetUserId();
341 email
<< user
<< wxT('@') << host
;
348 wxString
wxGetUserId()
350 static const int maxLoginLen
= 256; // FIXME arbitrary number
353 bool ok
= wxGetUserId(wxStringBuffer(buf
, maxLoginLen
), maxLoginLen
);
361 wxString
wxGetUserName()
363 static const int maxUserNameLen
= 1024; // FIXME arbitrary number
366 bool ok
= wxGetUserName(wxStringBuffer(buf
, maxUserNameLen
), maxUserNameLen
);
374 wxString
wxGetHostName()
376 static const size_t hostnameSize
= 257;
379 bool ok
= wxGetHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
387 wxString
wxGetFullHostName()
389 static const size_t hostnameSize
= 257;
392 bool ok
= wxGetFullHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
400 wxString
wxGetHomeDir()
410 wxString
wxGetCurrentDir()
417 ok
= getcwd(dir
.GetWriteBuf(len
+ 1), len
) != NULL
;
422 if ( errno
!= ERANGE
)
424 wxLogSysError(_T("Failed to get current directory"));
426 return wxEmptyString
;
430 // buffer was too small, retry with a larger one
442 // ----------------------------------------------------------------------------
444 // ----------------------------------------------------------------------------
446 // wxDoExecuteWithCapture() helper: reads an entire stream into one array
448 // returns true if ok, false if error
450 static bool ReadAll(wxInputStream
*is
, wxArrayString
& output
)
452 wxCHECK_MSG( is
, false, _T("NULL stream in wxExecute()?") );
454 // the stream could be already at EOF or in wxSTREAM_BROKEN_PIPE state
457 wxTextInputStream
tis(*is
);
462 wxString line
= tis
.ReadLine();
478 #endif // wxUSE_STREAMS
480 // this is a private function because it hasn't a clean interface: the first
481 // array is passed by reference, the second by pointer - instead we have 2
482 // public versions of wxExecute() below
483 static long wxDoExecuteWithCapture(const wxString
& command
,
484 wxArrayString
& output
,
485 wxArrayString
* error
,
488 // create a wxProcess which will capture the output
489 wxProcess
*process
= new wxProcess
;
492 long rc
= wxExecute(command
, wxEXEC_SYNC
| flags
, process
);
497 if ( !ReadAll(process
->GetInputStream(), output
) )
502 if ( !ReadAll(process
->GetErrorStream(), *error
) )
510 #endif // wxUSE_STREAMS/!wxUSE_STREAMS
517 long wxExecute(const wxString
& command
, wxArrayString
& output
, int flags
)
519 return wxDoExecuteWithCapture(command
, output
, NULL
, flags
);
522 long wxExecute(const wxString
& command
,
523 wxArrayString
& output
,
524 wxArrayString
& error
,
527 return wxDoExecuteWithCapture(command
, output
, &error
, flags
);
530 // ----------------------------------------------------------------------------
531 // Launch default browser
532 // ----------------------------------------------------------------------------
534 bool wxLaunchDefaultBrowser(const wxString
& url
)
538 wxString finalurl
= url
;
540 //if it isn't a full url, try appending http:// to it
541 if(wxURI(url
).IsReference())
542 finalurl
= wxString(wxT("http://")) + url
;
544 #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
548 // ShellExecute() always opens in the same window,
549 // so do it manually for new window (from Mahogany)
550 wxRegKey
key(wxRegKey::HKCR
, url
.BeforeFirst(':') + wxT("\\shell\\open"));
553 wxRegKey
keyDDE(key
, wxT("DDEExec"));
554 if ( keyDDE
.Exists() )
556 wxRegKey
keyTopic(keyDDE
, wxT("topic"));
557 wxString ddeTopic
= keyTopic
.QueryDefaultValue();
559 // we only know the syntax of WWW_OpenURL DDE request
560 if ( ddeTopic
== wxT("WWW_OpenURL") )
562 wxString ddeCmd
= keyDDE
.QueryDefaultValue();
564 // this is a bit naive but should work as -1 can't appear
565 // elsewhere in the DDE topic, normally
566 if ( ddeCmd
.Replace(wxT("-1"), wxT("0"),
567 false /* only first occurence */) == 1 )
569 // and also replace the parameters
570 if ( ddeCmd
.Replace(wxT("%1"), url
, false) == 1 )
572 // magic incantation understood by wxMSW
573 command
<< wxT("WX_DDE#")
574 << wxRegKey(key
, wxT("command")).QueryDefaultValue() << wxT('#')
575 << wxRegKey(keyDDE
, wxT("application")).QueryDefaultValue()
576 << wxT('#') << ddeTopic
<< wxT('#')
584 //Try wxExecute - if it doesn't work or the regkey stuff
585 //above failed, fallback to opening the file in the same
587 if ( command
.empty() || wxExecute(command
) == -1)
589 int nResult
; //HINSTANCE error code
591 #if !defined(__WXWINCE__)
592 // CYGWIN and MINGW may have problems - so load ShellExecute
594 typedef HINSTANCE (WINAPI
*LPShellExecute
)(HWND hwnd
, const wxChar
* lpOperation
,
595 const wxChar
* lpFile
,
596 const wxChar
* lpParameters
,
597 const wxChar
* lpDirectory
,
600 HINSTANCE hShellDll
= ::LoadLibrary(wxT("shell32.dll"));
601 if(hShellDll
== NULL
)
604 LPShellExecute lpShellExecute
=
605 (LPShellExecute
) ::GetProcAddress(hShellDll
,
606 wxString::Format(wxT("ShellExecute%s"),
616 ).mb_str(wxConvLocal
)
619 if(lpShellExecute
== NULL
)
622 // Windows sometimes doesn't open the browser correctly when using mime
623 // types, so do ShellExecute - i.e. start <url> (from James Carroll)
624 nResult
= (int) (*lpShellExecute
)(NULL
, NULL
, finalurl
.c_str(),
625 NULL
, wxT(""), SW_SHOWNORMAL
);
626 // Unload Shell32.dll
627 ::FreeLibrary(hShellDll
);
629 //Windows CE does not have normal ShellExecute - but it has
630 //ShellExecuteEx all the way back to version 1.0
633 //Set up the SHELLEXECUTEINFO structure to pass to ShellExecuteEx
634 SHELLEXECUTEINFO sei
;
635 sei
.cbSize
= sizeof(SHELLEXECUTEINFO
);
640 sei
.hkeyClass
= NULL
;
648 sei
.lpDirectory
= NULL
;
649 sei
.lpFile
= finalurl
.c_str();
651 sei
.lpParameters
= NULL
;
652 sei
.lpVerb
= TEXT("open");
653 sei
.nShow
= SW_SHOWNORMAL
;
655 //Call ShellExecuteEx
656 ShellExecuteEx(&sei
);
659 nResult
= (int) sei
.hInstApp
;
662 // Hack for Firefox (returns file not found for some reason)
663 // from Angelo Mandato's wxHyperlinksCtrl
664 // HINSTANCE_ERROR == 32 (HINSTANCE_ERROR does not exist on Windows CE)
665 if (nResult
<= 32 && nResult
!= SE_ERR_FNF
)
669 // Log something if SE_ERR_FNF happens
670 if(nResult
== SE_ERR_FNF
)
671 wxLogDebug(wxT("Got SE_ERR_FNF from ShellExecute - maybe FireFox"));
678 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension (_T("html"));
681 wxLogError(_T("No default application can open .html extension"));
686 ft
->GetMimeType(&mt
);
689 bool ok
= ft
->GetOpenCommand (&cmd
, wxFileType::MessageParameters(finalurl
));
694 if( wxExecute (cmd
, wxEXEC_ASYNC
) == -1 )
696 wxLogError(_T("Failed to launch application for wxLaunchDefaultBrowser"));
702 // fallback to checking for the BROWSER environment variable
703 cmd
= wxGetenv(wxT("BROWSER"));
704 if ( cmd
.empty() || wxExecute(cmd
+ wxT(" ") + finalurl
) == -1)
709 #else // !wxUSE_MIMETYPE && !(WXMSW && wxUSE_NATIVE_CONFIG)
715 //success - hopefully
719 // ----------------------------------------------------------------------------
720 // wxApp::Yield() wrappers for backwards compatibility
721 // ----------------------------------------------------------------------------
725 return wxTheApp
&& wxTheApp
->Yield();
728 bool wxYieldIfNeeded()
730 return wxTheApp
&& wxTheApp
->Yield(true);
735 // ============================================================================
736 // GUI-only functions from now on
737 // ============================================================================
742 static long wxCurrentId
= 100;
746 // skip the part of IDs space that contains hard-coded values:
747 if (wxCurrentId
== wxID_LOWEST
)
748 wxCurrentId
= wxID_HIGHEST
+ 1;
750 return wxCurrentId
++;
754 wxGetCurrentId(void) { return wxCurrentId
; }
757 wxRegisterId (long id
)
759 if (id
>= wxCurrentId
)
760 wxCurrentId
= id
+ 1;
765 // ----------------------------------------------------------------------------
766 // Menu accelerators related functions
767 // ----------------------------------------------------------------------------
769 wxChar
*wxStripMenuCodes(const wxChar
*in
, wxChar
*out
)
771 wxString s
= wxMenuItem::GetLabelFromText(in
);
774 // go smash their buffer if it's not big enough - I love char * params
775 memcpy(out
, s
.c_str(), s
.length() * sizeof(wxChar
));
779 // MYcopystring - for easier search...
780 out
= new wxChar
[s
.length() + 1];
781 wxStrcpy(out
, s
.c_str());
787 wxString
wxStripMenuCodes(const wxString
& in
)
791 size_t len
= in
.length();
794 for ( size_t n
= 0; n
< len
; n
++ )
799 // skip it, it is used to introduce the accel char (or to quote
800 // itself in which case it should still be skipped): note that it
801 // can't be the last character of the string
804 wxLogDebug(_T("Invalid menu string '%s'"), in
.c_str());
808 // use the next char instead
812 else if ( ch
== _T('\t') )
814 // everything after TAB is accel string, exit the loop
824 #endif // wxUSE_MENUS
826 // ----------------------------------------------------------------------------
827 // Window search functions
828 // ----------------------------------------------------------------------------
831 * If parent is non-NULL, look through children for a label or title
832 * matching the specified string. If NULL, look through all top-level windows.
837 wxFindWindowByLabel (const wxString
& title
, wxWindow
* parent
)
839 return wxWindow::FindWindowByLabel( title
, parent
);
844 * If parent is non-NULL, look through children for a name
845 * matching the specified string. If NULL, look through all top-level windows.
850 wxFindWindowByName (const wxString
& name
, wxWindow
* parent
)
852 return wxWindow::FindWindowByName( name
, parent
);
855 // Returns menu item id or wxNOT_FOUND if none.
857 wxFindMenuItemId (wxFrame
* frame
, const wxString
& menuString
, const wxString
& itemString
)
860 wxMenuBar
*menuBar
= frame
->GetMenuBar ();
862 return menuBar
->FindMenuItem (menuString
, itemString
);
863 #endif // wxUSE_MENUS
868 // Try to find the deepest child that contains 'pt'.
869 // We go backwards, to try to allow for controls that are spacially
870 // within other controls, but are still siblings (e.g. buttons within
871 // static boxes). Static boxes are likely to be created _before_ controls
872 // that sit inside them.
873 wxWindow
* wxFindWindowAtPoint(wxWindow
* win
, const wxPoint
& pt
)
878 // Hack for wxNotebook case: at least in wxGTK, all pages
879 // claim to be shown, so we must only deal with the selected one.
881 if (win
->IsKindOf(CLASSINFO(wxNotebook
)))
883 wxNotebook
* nb
= (wxNotebook
*) win
;
884 int sel
= nb
->GetSelection();
887 wxWindow
* child
= nb
->GetPage(sel
);
888 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
895 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetLast();
898 wxWindow
* child
= node
->GetData();
899 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
902 node
= node
->GetPrevious();
905 wxPoint pos
= win
->GetPosition();
906 wxSize sz
= win
->GetSize();
907 if (win
->GetParent())
909 pos
= win
->GetParent()->ClientToScreen(pos
);
912 wxRect
rect(pos
, sz
);
919 wxWindow
* wxGenericFindWindowAtPoint(const wxPoint
& pt
)
921 // Go backwards through the list since windows
922 // on top are likely to have been appended most
924 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetLast();
927 wxWindow
* win
= node
->GetData();
928 wxWindow
* found
= wxFindWindowAtPoint(win
, pt
);
931 node
= node
->GetPrevious();
936 // ----------------------------------------------------------------------------
938 // ----------------------------------------------------------------------------
941 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
942 * since otherwise the generic code may be pulled in unnecessarily.
947 int wxMessageBox(const wxString
& message
, const wxString
& caption
, long style
,
948 wxWindow
*parent
, int WXUNUSED(x
), int WXUNUSED(y
) )
950 long decorated_style
= style
;
952 if ( ( style
& ( wxICON_EXCLAMATION
| wxICON_HAND
| wxICON_INFORMATION
| wxICON_QUESTION
) ) == 0 )
954 decorated_style
|= ( style
& wxYES
) ? wxICON_QUESTION
: wxICON_INFORMATION
;
957 wxMessageDialog
dialog(parent
, message
, caption
, decorated_style
);
959 int ans
= dialog
.ShowModal();
972 wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") );
977 #endif // wxUSE_MSGDLG
981 wxString
wxGetTextFromUser(const wxString
& message
, const wxString
& caption
,
982 const wxString
& defaultValue
, wxWindow
*parent
,
983 wxCoord x
, wxCoord y
, bool centre
)
986 long style
= wxTextEntryDialogStyle
;
993 wxTextEntryDialog
dialog(parent
, message
, caption
, defaultValue
, style
, wxPoint(x
, y
));
995 if (dialog
.ShowModal() == wxID_OK
)
997 str
= dialog
.GetValue();
1003 wxString
wxGetPasswordFromUser(const wxString
& message
,
1004 const wxString
& caption
,
1005 const wxString
& defaultValue
,
1007 wxCoord x
, wxCoord y
, bool centre
)
1010 long style
= wxTextEntryDialogStyle
;
1017 wxPasswordEntryDialog
dialog(parent
, message
, caption
, defaultValue
,
1018 style
, wxPoint(x
, y
));
1019 if ( dialog
.ShowModal() == wxID_OK
)
1021 str
= dialog
.GetValue();
1027 #endif // wxUSE_TEXTDLG
1031 wxColour
wxGetColourFromUser(wxWindow
*parent
, const wxColour
& colInit
)
1034 data
.SetChooseFull(true);
1037 data
.SetColour((wxColour
&)colInit
); // const_cast
1041 wxColourDialog
dialog(parent
, &data
);
1042 if ( dialog
.ShowModal() == wxID_OK
)
1044 colRet
= dialog
.GetColourData().GetColour();
1046 //else: leave it invalid
1051 #endif // wxUSE_COLOURDLG
1055 wxFont
wxGetFontFromUser(wxWindow
*parent
, const wxFont
& fontInit
)
1058 if ( fontInit
.Ok() )
1060 data
.SetInitialFont(fontInit
);
1064 wxFontDialog
dialog(parent
, data
);
1065 if ( dialog
.ShowModal() == wxID_OK
)
1067 fontRet
= dialog
.GetFontData().GetChosenFont();
1069 //else: leave it invalid
1074 #endif // wxUSE_FONTDLG
1076 // ----------------------------------------------------------------------------
1077 // wxSafeYield and supporting functions
1078 // ----------------------------------------------------------------------------
1080 void wxEnableTopLevelWindows(bool enable
)
1082 wxWindowList::compatibility_iterator node
;
1083 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1084 node
->GetData()->Enable(enable
);
1087 wxWindowDisabler::wxWindowDisabler(wxWindow
*winToSkip
)
1089 // remember the top level windows which were already disabled, so that we
1090 // don't reenable them later
1091 m_winDisabled
= NULL
;
1093 wxWindowList::compatibility_iterator node
;
1094 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1096 wxWindow
*winTop
= node
->GetData();
1097 if ( winTop
== winToSkip
)
1100 // we don't need to disable the hidden or already disabled windows
1101 if ( winTop
->IsEnabled() && winTop
->IsShown() )
1107 if ( !m_winDisabled
)
1109 m_winDisabled
= new wxWindowList
;
1112 m_winDisabled
->Append(winTop
);
1117 wxWindowDisabler::~wxWindowDisabler()
1119 wxWindowList::compatibility_iterator node
;
1120 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1122 wxWindow
*winTop
= node
->GetData();
1123 if ( !m_winDisabled
|| !m_winDisabled
->Find(winTop
) )
1127 //else: had been already disabled, don't reenable
1130 delete m_winDisabled
;
1133 // Yield to other apps/messages and disable user input to all windows except
1135 bool wxSafeYield(wxWindow
*win
, bool onlyIfNeeded
)
1137 wxWindowDisabler
wd(win
);
1141 rc
= wxYieldIfNeeded();
1148 // Don't synthesize KeyUp events holding down a key and producing KeyDown
1149 // events with autorepeat. On by default and always on in wxMSW. wxGTK version
1152 bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag
) )
1154 return true; // detectable auto-repeat is the only mode MSW supports