1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/utilscmn.cpp
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 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/string.h"
35 #include "wx/window.h"
38 #include "wx/msgdlg.h"
39 #include "wx/textdlg.h"
40 #include "wx/textctrl.h" // for wxTE_PASSWORD
42 #include "wx/menuitem.h"
48 #include "wx/apptrait.h"
50 #include "wx/process.h"
51 #include "wx/txtstrm.h"
53 #include "wx/mimetype.h"
54 #include "wx/config.h"
56 #if defined(__WXWINCE__) && wxUSE_DATETIME
57 #include "wx/datetime.h"
65 #if !wxONLY_WATCOM_EARLIER_THAN(1,4)
66 #if !(defined(_MSC_VER) && (_MSC_VER > 800))
72 #include "wx/colordlg.h"
73 #include "wx/fontdlg.h"
74 #include "wx/notebook.h"
76 #include "wx/statusbr.h"
82 #include "wx/msw/wince/time.h"
86 #include "wx/mac/private.h"
88 #include "InternetConfig.h"
92 #if !defined(__MWERKS__) && !defined(__WXWINCE__)
93 #include <sys/types.h>
97 #if defined(__WXMSW__)
98 #include "wx/msw/private.h"
99 #include "wx/msw/registry.h"
104 // ----------------------------------------------------------------------------
106 // ----------------------------------------------------------------------------
108 // ============================================================================
110 // ============================================================================
112 #if WXWIN_COMPATIBILITY_2_4
115 copystring (const wxChar
*s
)
117 if (s
== NULL
) s
= wxEmptyString
;
118 size_t len
= wxStrlen (s
) + 1;
120 wxChar
*news
= new wxChar
[len
];
121 memcpy (news
, s
, len
* sizeof(wxChar
)); // Should be the fastest
126 #endif // WXWIN_COMPATIBILITY_2_4
128 // ----------------------------------------------------------------------------
129 // String <-> Number conversions (deprecated)
130 // ----------------------------------------------------------------------------
132 #if WXWIN_COMPATIBILITY_2_4
134 WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxFloatToStringStr
= wxT("%.2f");
135 WXDLLIMPEXP_DATA_BASE(const wxChar
*) wxDoubleToStringStr
= wxT("%.2f");
138 StringToFloat (const wxChar
*s
, float *number
)
140 if (s
&& *s
&& number
)
141 *number
= (float) wxStrtod (s
, (wxChar
**) NULL
);
145 StringToDouble (const wxChar
*s
, double *number
)
147 if (s
&& *s
&& number
)
148 *number
= wxStrtod (s
, (wxChar
**) NULL
);
152 FloatToString (float number
, const wxChar
*fmt
)
154 static wxChar buf
[256];
156 wxSprintf (buf
, fmt
, number
);
161 DoubleToString (double number
, const wxChar
*fmt
)
163 static wxChar buf
[256];
165 wxSprintf (buf
, fmt
, number
);
170 StringToInt (const wxChar
*s
, int *number
)
172 if (s
&& *s
&& number
)
173 *number
= (int) wxStrtol (s
, (wxChar
**) NULL
, 10);
177 StringToLong (const wxChar
*s
, long *number
)
179 if (s
&& *s
&& number
)
180 *number
= wxStrtol (s
, (wxChar
**) NULL
, 10);
184 IntToString (int number
)
186 static wxChar buf
[20];
188 wxSprintf (buf
, wxT("%d"), number
);
193 LongToString (long number
)
195 static wxChar buf
[20];
197 wxSprintf (buf
, wxT("%ld"), number
);
201 #endif // WXWIN_COMPATIBILITY_2_4
203 // Array used in DecToHex conversion routine.
204 static wxChar hexArray
[] = wxT("0123456789ABCDEF");
206 // Convert 2-digit hex number to decimal
207 int wxHexToDec(const wxString
& buf
)
209 int firstDigit
, secondDigit
;
211 if (buf
.GetChar(0) >= wxT('A'))
212 firstDigit
= buf
.GetChar(0) - wxT('A') + 10;
214 firstDigit
= buf
.GetChar(0) - wxT('0');
216 if (buf
.GetChar(1) >= wxT('A'))
217 secondDigit
= buf
.GetChar(1) - wxT('A') + 10;
219 secondDigit
= buf
.GetChar(1) - wxT('0');
221 return (firstDigit
& 0xF) * 16 + (secondDigit
& 0xF );
224 // Convert decimal integer to 2-character hex string
225 void wxDecToHex(int dec
, wxChar
*buf
)
227 int firstDigit
= (int)(dec
/16.0);
228 int secondDigit
= (int)(dec
- (firstDigit
*16.0));
229 buf
[0] = hexArray
[firstDigit
];
230 buf
[1] = hexArray
[secondDigit
];
234 // Convert decimal integer to 2-character hex string
235 wxString
wxDecToHex(int dec
)
238 wxDecToHex(dec
, buf
);
239 return wxString(buf
);
242 // ----------------------------------------------------------------------------
244 // ----------------------------------------------------------------------------
246 // Return the current date/time
251 wxDateTime now
= wxDateTime::Now();
254 return wxEmptyString
;
257 time_t now
= time((time_t *) NULL
);
258 char *date
= ctime(&now
);
260 return wxString::FromAscii(date
);
264 void wxUsleep(unsigned long milliseconds
)
266 wxMilliSleep(milliseconds
);
269 const wxChar
*wxGetInstallPrefix()
273 if ( wxGetEnv(wxT("WXPREFIX"), &prefix
) )
274 return prefix
.c_str();
276 #ifdef wxINSTALL_PREFIX
277 return wxT(wxINSTALL_PREFIX
);
279 return wxEmptyString
;
283 wxString
wxGetDataDir()
285 wxString dir
= wxGetInstallPrefix();
286 dir
<< wxFILE_SEP_PATH
<< wxT("share") << wxFILE_SEP_PATH
<< wxT("wx");
290 int wxGetOsVersion(int *verMaj
, int *verMin
)
292 // we want this function to work even if there is no wxApp
293 wxConsoleAppTraits traitsConsole
;
294 wxAppTraits
*traits
= wxTheApp
? wxTheApp
->GetTraits() : NULL
;
296 traits
= &traitsConsole
;
298 wxToolkitInfo
& info
= traits
->GetToolkitInfo();
300 *verMaj
= info
.versionMajor
;
302 *verMin
= info
.versionMinor
;
307 * Class to make it easier to specify platform-dependent values
310 wxArrayInt
* wxPlatform::sm_customPlatforms
= NULL
;
312 void wxPlatform::Copy(const wxPlatform
& platform
)
314 m_longValue
= platform
.m_longValue
;
315 m_doubleValue
= platform
.m_doubleValue
;
316 m_stringValue
= platform
.m_stringValue
;
319 wxPlatform
wxPlatform::If(int platform
, long value
)
322 return wxPlatform(value
);
327 wxPlatform
wxPlatform::IfNot(int platform
, long value
)
330 return wxPlatform(value
);
335 wxPlatform
& wxPlatform::ElseIf(int platform
, long value
)
342 wxPlatform
& wxPlatform::ElseIfNot(int platform
, long value
)
349 wxPlatform
wxPlatform::If(int platform
, double value
)
352 return wxPlatform(value
);
357 wxPlatform
wxPlatform::IfNot(int platform
, double value
)
360 return wxPlatform(value
);
365 wxPlatform
& wxPlatform::ElseIf(int platform
, double value
)
368 m_doubleValue
= value
;
372 wxPlatform
& wxPlatform::ElseIfNot(int platform
, double value
)
375 m_doubleValue
= value
;
379 wxPlatform
wxPlatform::If(int platform
, const wxString
& value
)
382 return wxPlatform(value
);
387 wxPlatform
wxPlatform::IfNot(int platform
, const wxString
& value
)
390 return wxPlatform(value
);
395 wxPlatform
& wxPlatform::ElseIf(int platform
, const wxString
& value
)
398 m_stringValue
= value
;
402 wxPlatform
& wxPlatform::ElseIfNot(int platform
, const wxString
& value
)
405 m_stringValue
= value
;
409 wxPlatform
& wxPlatform::Else(long value
)
415 wxPlatform
& wxPlatform::Else(double value
)
417 m_doubleValue
= value
;
421 wxPlatform
& wxPlatform::Else(const wxString
& value
)
423 m_stringValue
= value
;
427 void wxPlatform::AddPlatform(int platform
)
429 if (!sm_customPlatforms
)
430 sm_customPlatforms
= new wxArrayInt
;
431 sm_customPlatforms
->Add(platform
);
434 void wxPlatform::ClearPlatforms()
436 delete sm_customPlatforms
;
437 sm_customPlatforms
= NULL
;
440 /// Function for testing current platform
442 bool wxPlatform::Is(int platform
)
445 if (platform
== wxMSW
)
449 if (platform
== wxWinCE
)
452 #if defined(__WXWINCE__) && defined(__POCKETPC__)
453 if (platform
== wxWinPocketPC
)
456 #if defined(__WXWINCE__) && defined(__SMARTPHONE__)
457 if (platform
== wxWinSmartphone
)
461 if (platform
== wxGTK
)
465 if (platform
== wxMac
)
469 if (platform
== wxX11
)
473 if (platform
== wxUnix
)
477 if (platform
== wxMGL
)
481 if (platform
== wxOS2
)
485 if (platform
== wxCocoa
)
489 if (sm_customPlatforms
&& sm_customPlatforms
->Index(platform
) != wxNOT_FOUND
)
495 // ----------------------------------------------------------------------------
496 // network and user id functions
497 // ----------------------------------------------------------------------------
499 // Get Full RFC822 style email address
500 bool wxGetEmailAddress(wxChar
*address
, int maxSize
)
502 wxString email
= wxGetEmailAddress();
506 wxStrncpy(address
, email
, maxSize
- 1);
507 address
[maxSize
- 1] = wxT('\0');
512 wxString
wxGetEmailAddress()
516 wxString host
= wxGetFullHostName();
519 wxString user
= wxGetUserId();
522 email
<< user
<< wxT('@') << host
;
529 wxString
wxGetUserId()
531 static const int maxLoginLen
= 256; // FIXME arbitrary number
534 bool ok
= wxGetUserId(wxStringBuffer(buf
, maxLoginLen
), maxLoginLen
);
542 wxString
wxGetUserName()
544 static const int maxUserNameLen
= 1024; // FIXME arbitrary number
547 bool ok
= wxGetUserName(wxStringBuffer(buf
, maxUserNameLen
), maxUserNameLen
);
555 wxString
wxGetHostName()
557 static const size_t hostnameSize
= 257;
560 bool ok
= wxGetHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
568 wxString
wxGetFullHostName()
570 static const size_t hostnameSize
= 257;
573 bool ok
= wxGetFullHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
581 wxString
wxGetHomeDir()
591 wxString
wxGetCurrentDir()
598 ok
= getcwd(dir
.GetWriteBuf(len
+ 1), len
) != NULL
;
603 if ( errno
!= ERANGE
)
605 wxLogSysError(_T("Failed to get current directory"));
607 return wxEmptyString
;
611 // buffer was too small, retry with a larger one
623 // ----------------------------------------------------------------------------
625 // ----------------------------------------------------------------------------
627 // wxDoExecuteWithCapture() helper: reads an entire stream into one array
629 // returns true if ok, false if error
631 static bool ReadAll(wxInputStream
*is
, wxArrayString
& output
)
633 wxCHECK_MSG( is
, false, _T("NULL stream in wxExecute()?") );
635 // the stream could be already at EOF or in wxSTREAM_BROKEN_PIPE state
638 wxTextInputStream
tis(*is
);
643 wxString line
= tis
.ReadLine();
659 #endif // wxUSE_STREAMS
661 // this is a private function because it hasn't a clean interface: the first
662 // array is passed by reference, the second by pointer - instead we have 2
663 // public versions of wxExecute() below
664 static long wxDoExecuteWithCapture(const wxString
& command
,
665 wxArrayString
& output
,
666 wxArrayString
* error
,
669 // create a wxProcess which will capture the output
670 wxProcess
*process
= new wxProcess
;
673 long rc
= wxExecute(command
, wxEXEC_SYNC
| flags
, process
);
678 if ( !ReadAll(process
->GetInputStream(), output
) )
683 if ( !ReadAll(process
->GetErrorStream(), *error
) )
691 #endif // wxUSE_STREAMS/!wxUSE_STREAMS
698 long wxExecute(const wxString
& command
, wxArrayString
& output
, int flags
)
700 return wxDoExecuteWithCapture(command
, output
, NULL
, flags
);
703 long wxExecute(const wxString
& command
,
704 wxArrayString
& output
,
705 wxArrayString
& error
,
708 return wxDoExecuteWithCapture(command
, output
, &error
, flags
);
711 // ----------------------------------------------------------------------------
712 // Launch default browser
713 // ----------------------------------------------------------------------------
715 bool wxLaunchDefaultBrowser(const wxString
& urlOrig
, int flags
)
719 // set the scheme of url to http if it does not have one
720 wxString
url(urlOrig
);
721 if ( !wxURI(url
).HasScheme() )
722 url
.Prepend(wxT("http://"));
724 #if defined(__WXMSW__)
727 if ( flags
& wxBROWSER_NEW_WINDOW
)
729 // ShellExecuteEx() opens the URL in an existing window by default so
730 // we can't use it if we need a new window
731 wxRegKey
key(wxRegKey::HKCR
, url
.BeforeFirst(':') + _T("\\shell\\open"));
734 wxRegKey
keyDDE(key
, wxT("DDEExec"));
735 if ( keyDDE
.Exists() )
737 const wxString ddeTopic
= wxRegKey(keyDDE
, wxT("topic"));
739 // we only know the syntax of WWW_OpenURL DDE request for IE,
740 // optimistically assume that all other browsers are compatible
743 bool ok
= ddeTopic
== wxT("WWW_OpenURL");
746 ddeCmd
= keyDDE
.QueryDefaultValue();
747 ok
= !ddeCmd
.empty();
752 // for WWW_OpenURL, the index of the window to open the URL
753 // in is -1 (meaning "current") by default, replace it with
754 // 0 which means "new" (see KB article 160957)
755 ok
= ddeCmd
.Replace(wxT("-1"), wxT("0"),
756 false /* only first occurence */) == 1;
761 // and also replace the parameters: the topic should
762 // contain a placeholder for the URL
763 ok
= ddeCmd
.Replace(wxT("%1"), url
, false) == 1;
768 // try to send it the DDE request now but ignore the errors
771 const wxString ddeServer
= wxRegKey(keyDDE
, wxT("application"));
772 if ( wxExecuteDDE(ddeServer
, ddeTopic
, ddeCmd
) )
775 // this is not necessarily an error: maybe browser is
776 // simply not running, but no matter, in any case we're
777 // going to launch it using ShellExecuteEx() below now and
778 // we shouldn't try to open a new window if we open a new
786 WinStruct
<SHELLEXECUTEINFO
> sei
;
787 sei
.lpFile
= url
.c_str();
788 sei
.lpVerb
= _T("open");
789 sei
.nShow
= SW_SHOWNORMAL
;
791 ::ShellExecuteEx(&sei
);
793 const int nResult
= (int) sei
.hInstApp
;
795 // Firefox returns file not found for some reason, so make an exception
797 if ( nResult
> 32 || nResult
== SE_ERR_FNF
)
800 // Log something if SE_ERR_FNF happens
801 if ( nResult
== SE_ERR_FNF
)
802 wxLogDebug(wxT("SE_ERR_FNF from ShellExecute -- maybe FireFox?"));
803 #endif // __WXDEBUG__
806 #elif defined(__WXMAC__)
812 err
= ICStart(&inst
, 'STKA'); // put your app creator code here
816 err
= ICFindConfigFile(inst
, 0, NULL
);
820 ConstStr255Param hint
= 0;
822 endSel
= url
.Length();
823 err
= ICLaunchURL(inst
, hint
, url
.fn_str(), endSel
, &startSel
, &endSel
);
825 wxLogDebug(wxT("ICLaunchURL error %d"), (int) err
);
832 wxLogDebug(wxT("ICStart error %d"), (int) err
);
840 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(_T("html"));
844 ft
->GetMimeType(&mt
);
846 ok
= ft
->GetOpenCommand(&cmd
, wxFileType::MessageParameters(url
));
850 if ( !ok
|| cmd
.empty() )
852 // fallback to checking for the BROWSER environment variable
853 cmd
= wxGetenv(wxT("BROWSER"));
855 cmd
<< _T(' ') << url
;
858 ok
= ( !cmd
.empty() && wxExecute(cmd
) );
862 // no file type for HTML extension
863 wxLogError(_T("No default application configured for HTML files."));
865 #endif // !wxUSE_MIMETYPE && !__WXMSW__
867 wxLogSysError(_T("Failed to open URL \"%s\" in default browser."),
873 // ----------------------------------------------------------------------------
874 // wxApp::Yield() wrappers for backwards compatibility
875 // ----------------------------------------------------------------------------
879 return wxTheApp
&& wxTheApp
->Yield();
882 bool wxYieldIfNeeded()
884 return wxTheApp
&& wxTheApp
->Yield(true);
889 // ============================================================================
890 // GUI-only functions from now on
891 // ============================================================================
896 static long wxCurrentId
= 100;
900 // skip the part of IDs space that contains hard-coded values:
901 if (wxCurrentId
== wxID_LOWEST
)
902 wxCurrentId
= wxID_HIGHEST
+ 1;
904 return wxCurrentId
++;
908 wxGetCurrentId(void) { return wxCurrentId
; }
911 wxRegisterId (long id
)
913 if (id
>= wxCurrentId
)
914 wxCurrentId
= id
+ 1;
919 // ----------------------------------------------------------------------------
920 // Menu accelerators related functions
921 // ----------------------------------------------------------------------------
923 wxChar
*wxStripMenuCodes(const wxChar
*in
, wxChar
*out
)
925 wxString s
= wxMenuItem::GetLabelFromText(in
);
928 // go smash their buffer if it's not big enough - I love char * params
929 memcpy(out
, s
.c_str(), s
.length() * sizeof(wxChar
));
933 // MYcopystring - for easier search...
934 out
= new wxChar
[s
.length() + 1];
935 wxStrcpy(out
, s
.c_str());
941 wxString
wxStripMenuCodes(const wxString
& in
)
945 size_t len
= in
.length();
948 for ( size_t n
= 0; n
< len
; n
++ )
953 // skip it, it is used to introduce the accel char (or to quote
954 // itself in which case it should still be skipped): note that it
955 // can't be the last character of the string
958 wxLogDebug(_T("Invalid menu string '%s'"), in
.c_str());
962 // use the next char instead
966 else if ( ch
== _T('\t') )
968 // everything after TAB is accel string, exit the loop
978 #endif // wxUSE_MENUS
980 // ----------------------------------------------------------------------------
981 // Window search functions
982 // ----------------------------------------------------------------------------
985 * If parent is non-NULL, look through children for a label or title
986 * matching the specified string. If NULL, look through all top-level windows.
991 wxFindWindowByLabel (const wxString
& title
, wxWindow
* parent
)
993 return wxWindow::FindWindowByLabel( title
, parent
);
998 * If parent is non-NULL, look through children for a name
999 * matching the specified string. If NULL, look through all top-level windows.
1004 wxFindWindowByName (const wxString
& name
, wxWindow
* parent
)
1006 return wxWindow::FindWindowByName( name
, parent
);
1009 // Returns menu item id or wxNOT_FOUND if none.
1011 wxFindMenuItemId (wxFrame
* frame
, const wxString
& menuString
, const wxString
& itemString
)
1014 wxMenuBar
*menuBar
= frame
->GetMenuBar ();
1016 return menuBar
->FindMenuItem (menuString
, itemString
);
1017 #endif // wxUSE_MENUS
1022 // Try to find the deepest child that contains 'pt'.
1023 // We go backwards, to try to allow for controls that are spacially
1024 // within other controls, but are still siblings (e.g. buttons within
1025 // static boxes). Static boxes are likely to be created _before_ controls
1026 // that sit inside them.
1027 wxWindow
* wxFindWindowAtPoint(wxWindow
* win
, const wxPoint
& pt
)
1029 if (!win
->IsShown())
1032 // Hack for wxNotebook case: at least in wxGTK, all pages
1033 // claim to be shown, so we must only deal with the selected one.
1035 if (win
->IsKindOf(CLASSINFO(wxNotebook
)))
1037 wxNotebook
* nb
= (wxNotebook
*) win
;
1038 int sel
= nb
->GetSelection();
1041 wxWindow
* child
= nb
->GetPage(sel
);
1042 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
1049 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetLast();
1052 wxWindow
* child
= node
->GetData();
1053 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
1056 node
= node
->GetPrevious();
1059 wxPoint pos
= win
->GetPosition();
1060 wxSize sz
= win
->GetSize();
1061 if (win
->GetParent())
1063 pos
= win
->GetParent()->ClientToScreen(pos
);
1066 wxRect
rect(pos
, sz
);
1067 if (rect
.Inside(pt
))
1073 wxWindow
* wxGenericFindWindowAtPoint(const wxPoint
& pt
)
1075 // Go backwards through the list since windows
1076 // on top are likely to have been appended most
1078 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetLast();
1081 wxWindow
* win
= node
->GetData();
1082 wxWindow
* found
= wxFindWindowAtPoint(win
, pt
);
1085 node
= node
->GetPrevious();
1090 // ----------------------------------------------------------------------------
1092 // ----------------------------------------------------------------------------
1095 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
1096 * since otherwise the generic code may be pulled in unnecessarily.
1101 int wxMessageBox(const wxString
& message
, const wxString
& caption
, long style
,
1102 wxWindow
*parent
, int WXUNUSED(x
), int WXUNUSED(y
) )
1104 long decorated_style
= style
;
1106 if ( ( style
& ( wxICON_EXCLAMATION
| wxICON_HAND
| wxICON_INFORMATION
| wxICON_QUESTION
) ) == 0 )
1108 decorated_style
|= ( style
& wxYES
) ? wxICON_QUESTION
: wxICON_INFORMATION
;
1111 wxMessageDialog
dialog(parent
, message
, caption
, decorated_style
);
1113 int ans
= dialog
.ShowModal();
1126 wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") );
1131 #endif // wxUSE_MSGDLG
1135 wxString
wxGetTextFromUser(const wxString
& message
, const wxString
& caption
,
1136 const wxString
& defaultValue
, wxWindow
*parent
,
1137 wxCoord x
, wxCoord y
, bool centre
)
1140 long style
= wxTextEntryDialogStyle
;
1147 wxTextEntryDialog
dialog(parent
, message
, caption
, defaultValue
, style
, wxPoint(x
, y
));
1149 if (dialog
.ShowModal() == wxID_OK
)
1151 str
= dialog
.GetValue();
1157 wxString
wxGetPasswordFromUser(const wxString
& message
,
1158 const wxString
& caption
,
1159 const wxString
& defaultValue
,
1161 wxCoord x
, wxCoord y
, bool centre
)
1164 long style
= wxTextEntryDialogStyle
;
1171 wxPasswordEntryDialog
dialog(parent
, message
, caption
, defaultValue
,
1172 style
, wxPoint(x
, y
));
1173 if ( dialog
.ShowModal() == wxID_OK
)
1175 str
= dialog
.GetValue();
1181 #endif // wxUSE_TEXTDLG
1185 wxColour
wxGetColourFromUser(wxWindow
*parent
, const wxColour
& colInit
, const wxString
& caption
)
1188 data
.SetChooseFull(true);
1191 data
.SetColour((wxColour
&)colInit
); // const_cast
1195 wxColourDialog
dialog(parent
, &data
);
1196 if (!caption
.IsEmpty())
1197 dialog
.SetTitle(caption
);
1198 if ( dialog
.ShowModal() == wxID_OK
)
1200 colRet
= dialog
.GetColourData().GetColour();
1202 //else: leave it invalid
1207 #endif // wxUSE_COLOURDLG
1211 wxFont
wxGetFontFromUser(wxWindow
*parent
, const wxFont
& fontInit
, const wxString
& caption
)
1214 if ( fontInit
.Ok() )
1216 data
.SetInitialFont(fontInit
);
1220 wxFontDialog
dialog(parent
, data
);
1221 if (!caption
.IsEmpty())
1222 dialog
.SetTitle(caption
);
1223 if ( dialog
.ShowModal() == wxID_OK
)
1225 fontRet
= dialog
.GetFontData().GetChosenFont();
1227 //else: leave it invalid
1232 #endif // wxUSE_FONTDLG
1234 // ----------------------------------------------------------------------------
1235 // wxSafeYield and supporting functions
1236 // ----------------------------------------------------------------------------
1238 void wxEnableTopLevelWindows(bool enable
)
1240 wxWindowList::compatibility_iterator node
;
1241 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1242 node
->GetData()->Enable(enable
);
1245 wxWindowDisabler::wxWindowDisabler(wxWindow
*winToSkip
)
1247 // remember the top level windows which were already disabled, so that we
1248 // don't reenable them later
1249 m_winDisabled
= NULL
;
1251 wxWindowList::compatibility_iterator node
;
1252 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1254 wxWindow
*winTop
= node
->GetData();
1255 if ( winTop
== winToSkip
)
1258 // we don't need to disable the hidden or already disabled windows
1259 if ( winTop
->IsEnabled() && winTop
->IsShown() )
1265 if ( !m_winDisabled
)
1267 m_winDisabled
= new wxWindowList
;
1270 m_winDisabled
->Append(winTop
);
1275 wxWindowDisabler::~wxWindowDisabler()
1277 wxWindowList::compatibility_iterator node
;
1278 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1280 wxWindow
*winTop
= node
->GetData();
1281 if ( !m_winDisabled
|| !m_winDisabled
->Find(winTop
) )
1285 //else: had been already disabled, don't reenable
1288 delete m_winDisabled
;
1291 // Yield to other apps/messages and disable user input to all windows except
1293 bool wxSafeYield(wxWindow
*win
, bool onlyIfNeeded
)
1295 wxWindowDisabler
wd(win
);
1299 rc
= wxYieldIfNeeded();
1306 // Don't synthesize KeyUp events holding down a key and producing KeyDown
1307 // events with autorepeat. On by default and always on in wxMSW. wxGTK version
1310 bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag
) )
1312 return true; // detectable auto-repeat is the only mode MSW supports