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"
75 #include "wx/statusbr.h"
81 #include "wx/msw/wince/time.h"
85 #include "wx/mac/private.h"
87 #include "InternetConfig.h"
91 #if !defined(__MWERKS__) && !defined(__WXWINCE__)
92 #include <sys/types.h>
96 #if defined(__WXMSW__)
97 #include "wx/msw/private.h"
98 #include "wx/msw/registry.h"
99 #include <shellapi.h> // needed for SHELLEXECUTEINFO
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 bool wxIsPlatformLittleEndian()
292 // Are we little or big endian? This method is from Harbison & Steele.
296 char c
[sizeof(long)];
305 * Class to make it easier to specify platform-dependent values
308 wxArrayInt
* wxPlatform::sm_customPlatforms
= NULL
;
310 void wxPlatform::Copy(const wxPlatform
& platform
)
312 m_longValue
= platform
.m_longValue
;
313 m_doubleValue
= platform
.m_doubleValue
;
314 m_stringValue
= platform
.m_stringValue
;
317 wxPlatform
wxPlatform::If(int platform
, long value
)
320 return wxPlatform(value
);
325 wxPlatform
wxPlatform::IfNot(int platform
, long value
)
328 return wxPlatform(value
);
333 wxPlatform
& wxPlatform::ElseIf(int platform
, long value
)
340 wxPlatform
& wxPlatform::ElseIfNot(int platform
, long value
)
347 wxPlatform
wxPlatform::If(int platform
, double value
)
350 return wxPlatform(value
);
355 wxPlatform
wxPlatform::IfNot(int platform
, double value
)
358 return wxPlatform(value
);
363 wxPlatform
& wxPlatform::ElseIf(int platform
, double value
)
366 m_doubleValue
= value
;
370 wxPlatform
& wxPlatform::ElseIfNot(int platform
, double value
)
373 m_doubleValue
= value
;
377 wxPlatform
wxPlatform::If(int platform
, const wxString
& value
)
380 return wxPlatform(value
);
385 wxPlatform
wxPlatform::IfNot(int platform
, const wxString
& value
)
388 return wxPlatform(value
);
393 wxPlatform
& wxPlatform::ElseIf(int platform
, const wxString
& value
)
396 m_stringValue
= value
;
400 wxPlatform
& wxPlatform::ElseIfNot(int platform
, const wxString
& value
)
403 m_stringValue
= value
;
407 wxPlatform
& wxPlatform::Else(long value
)
413 wxPlatform
& wxPlatform::Else(double value
)
415 m_doubleValue
= value
;
419 wxPlatform
& wxPlatform::Else(const wxString
& value
)
421 m_stringValue
= value
;
425 void wxPlatform::AddPlatform(int platform
)
427 if (!sm_customPlatforms
)
428 sm_customPlatforms
= new wxArrayInt
;
429 sm_customPlatforms
->Add(platform
);
432 void wxPlatform::ClearPlatforms()
434 delete sm_customPlatforms
;
435 sm_customPlatforms
= NULL
;
438 /// Function for testing current platform
440 bool wxPlatform::Is(int platform
)
443 if (platform
== wxOS_WINDOWS
)
447 if (platform
== wxOS_WINDOWS_CE
)
453 // FIXME: wxWinPocketPC and wxWinSmartPhone are unknown symbols
455 #if defined(__WXWINCE__) && defined(__POCKETPC__)
456 if (platform
== wxWinPocketPC
)
459 #if defined(__WXWINCE__) && defined(__SMARTPHONE__)
460 if (platform
== wxWinSmartPhone
)
467 if (platform
== wxPORT_GTK
)
471 if (platform
== wxPORT_MAC
)
475 if (platform
== wxPORT_X11
)
479 if (platform
== wxOS_UNIX
)
483 if (platform
== wxPORT_MGL
)
487 if (platform
== wxOS_OS2
)
491 if (platform
== wxPORT_PM
)
495 if (platform
== wxPORT_MAC
)
499 if (sm_customPlatforms
&& sm_customPlatforms
->Index(platform
) != wxNOT_FOUND
)
505 // ----------------------------------------------------------------------------
506 // network and user id functions
507 // ----------------------------------------------------------------------------
509 // Get Full RFC822 style email address
510 bool wxGetEmailAddress(wxChar
*address
, int maxSize
)
512 wxString email
= wxGetEmailAddress();
516 wxStrncpy(address
, email
, maxSize
- 1);
517 address
[maxSize
- 1] = wxT('\0');
522 wxString
wxGetEmailAddress()
526 wxString host
= wxGetFullHostName();
529 wxString user
= wxGetUserId();
532 email
<< user
<< wxT('@') << host
;
539 wxString
wxGetUserId()
541 static const int maxLoginLen
= 256; // FIXME arbitrary number
544 bool ok
= wxGetUserId(wxStringBuffer(buf
, maxLoginLen
), maxLoginLen
);
552 wxString
wxGetUserName()
554 static const int maxUserNameLen
= 1024; // FIXME arbitrary number
557 bool ok
= wxGetUserName(wxStringBuffer(buf
, maxUserNameLen
), maxUserNameLen
);
565 wxString
wxGetHostName()
567 static const size_t hostnameSize
= 257;
570 bool ok
= wxGetHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
578 wxString
wxGetFullHostName()
580 static const size_t hostnameSize
= 257;
583 bool ok
= wxGetFullHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
591 wxString
wxGetHomeDir()
601 wxString
wxGetCurrentDir()
608 ok
= getcwd(dir
.GetWriteBuf(len
+ 1), len
) != NULL
;
613 if ( errno
!= ERANGE
)
615 wxLogSysError(_T("Failed to get current directory"));
617 return wxEmptyString
;
621 // buffer was too small, retry with a larger one
633 // ----------------------------------------------------------------------------
635 // ----------------------------------------------------------------------------
637 // wxDoExecuteWithCapture() helper: reads an entire stream into one array
639 // returns true if ok, false if error
641 static bool ReadAll(wxInputStream
*is
, wxArrayString
& output
)
643 wxCHECK_MSG( is
, false, _T("NULL stream in wxExecute()?") );
645 // the stream could be already at EOF or in wxSTREAM_BROKEN_PIPE state
648 wxTextInputStream
tis(*is
);
653 wxString line
= tis
.ReadLine();
669 #endif // wxUSE_STREAMS
671 // this is a private function because it hasn't a clean interface: the first
672 // array is passed by reference, the second by pointer - instead we have 2
673 // public versions of wxExecute() below
674 static long wxDoExecuteWithCapture(const wxString
& command
,
675 wxArrayString
& output
,
676 wxArrayString
* error
,
679 // create a wxProcess which will capture the output
680 wxProcess
*process
= new wxProcess
;
683 long rc
= wxExecute(command
, wxEXEC_SYNC
| flags
, process
);
688 if ( !ReadAll(process
->GetInputStream(), output
) )
693 if ( !ReadAll(process
->GetErrorStream(), *error
) )
701 #endif // wxUSE_STREAMS/!wxUSE_STREAMS
708 long wxExecute(const wxString
& command
, wxArrayString
& output
, int flags
)
710 return wxDoExecuteWithCapture(command
, output
, NULL
, flags
);
713 long wxExecute(const wxString
& command
,
714 wxArrayString
& output
,
715 wxArrayString
& error
,
718 return wxDoExecuteWithCapture(command
, output
, &error
, flags
);
721 // ----------------------------------------------------------------------------
722 // Launch default browser
723 // ----------------------------------------------------------------------------
725 bool wxLaunchDefaultBrowser(const wxString
& urlOrig
, int flags
)
729 // set the scheme of url to http if it does not have one
730 wxString
url(urlOrig
);
731 if ( !wxURI(url
).HasScheme() )
732 url
.Prepend(wxT("http://"));
734 #if defined(__WXMSW__)
737 if ( flags
& wxBROWSER_NEW_WINDOW
)
739 // ShellExecuteEx() opens the URL in an existing window by default so
740 // we can't use it if we need a new window
741 wxRegKey
key(wxRegKey::HKCR
, url
.BeforeFirst(':') + _T("\\shell\\open"));
744 wxRegKey
keyDDE(key
, wxT("DDEExec"));
745 if ( keyDDE
.Exists() )
747 const wxString ddeTopic
= wxRegKey(keyDDE
, wxT("topic"));
749 // we only know the syntax of WWW_OpenURL DDE request for IE,
750 // optimistically assume that all other browsers are compatible
753 bool ok
= ddeTopic
== wxT("WWW_OpenURL");
756 ddeCmd
= keyDDE
.QueryDefaultValue();
757 ok
= !ddeCmd
.empty();
762 // for WWW_OpenURL, the index of the window to open the URL
763 // in is -1 (meaning "current") by default, replace it with
764 // 0 which means "new" (see KB article 160957)
765 ok
= ddeCmd
.Replace(wxT("-1"), wxT("0"),
766 false /* only first occurence */) == 1;
771 // and also replace the parameters: the topic should
772 // contain a placeholder for the URL
773 ok
= ddeCmd
.Replace(wxT("%1"), url
, false) == 1;
778 // try to send it the DDE request now but ignore the errors
781 const wxString ddeServer
= wxRegKey(keyDDE
, wxT("application"));
782 if ( wxExecuteDDE(ddeServer
, ddeTopic
, ddeCmd
) )
785 // this is not necessarily an error: maybe browser is
786 // simply not running, but no matter, in any case we're
787 // going to launch it using ShellExecuteEx() below now and
788 // we shouldn't try to open a new window if we open a new
796 WinStruct
<SHELLEXECUTEINFO
> sei
;
797 sei
.lpFile
= url
.c_str();
798 sei
.lpVerb
= _T("open");
799 sei
.nShow
= SW_SHOWNORMAL
;
801 ::ShellExecuteEx(&sei
);
803 const int nResult
= (int) sei
.hInstApp
;
805 // Firefox returns file not found for some reason, so make an exception
807 if ( nResult
> 32 || nResult
== SE_ERR_FNF
)
810 // Log something if SE_ERR_FNF happens
811 if ( nResult
== SE_ERR_FNF
)
812 wxLogDebug(wxT("SE_ERR_FNF from ShellExecute -- maybe FireFox?"));
813 #endif // __WXDEBUG__
816 #elif defined(__WXMAC__)
822 err
= ICStart(&inst
, 'STKA'); // put your app creator code here
826 err
= ICFindConfigFile(inst
, 0, NULL
);
830 ConstStr255Param hint
= 0;
832 endSel
= url
.length();
833 err
= ICLaunchURL(inst
, hint
, url
.fn_str(), endSel
, &startSel
, &endSel
);
835 wxLogDebug(wxT("ICLaunchURL error %d"), (int) err
);
842 wxLogDebug(wxT("ICStart error %d"), (int) err
);
850 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(_T("html"));
854 ft
->GetMimeType(&mt
);
856 ok
= ft
->GetOpenCommand(&cmd
, wxFileType::MessageParameters(url
));
860 if ( !ok
|| cmd
.empty() )
862 // fallback to checking for the BROWSER environment variable
863 cmd
= wxGetenv(wxT("BROWSER"));
865 cmd
<< _T(' ') << url
;
868 ok
= ( !cmd
.empty() && wxExecute(cmd
) );
872 // no file type for HTML extension
873 wxLogError(_T("No default application configured for HTML files."));
875 #endif // !wxUSE_MIMETYPE && !__WXMSW__
877 wxLogSysError(_T("Failed to open URL \"%s\" in default browser."),
883 // ----------------------------------------------------------------------------
884 // wxApp::Yield() wrappers for backwards compatibility
885 // ----------------------------------------------------------------------------
889 return wxTheApp
&& wxTheApp
->Yield();
892 bool wxYieldIfNeeded()
894 return wxTheApp
&& wxTheApp
->Yield(true);
899 // ============================================================================
900 // GUI-only functions from now on
901 // ============================================================================
906 static long wxCurrentId
= 100;
910 // skip the part of IDs space that contains hard-coded values:
911 if (wxCurrentId
== wxID_LOWEST
)
912 wxCurrentId
= wxID_HIGHEST
+ 1;
914 return wxCurrentId
++;
918 wxGetCurrentId(void) { return wxCurrentId
; }
921 wxRegisterId (long id
)
923 if (id
>= wxCurrentId
)
924 wxCurrentId
= id
+ 1;
927 // ----------------------------------------------------------------------------
928 // Menu accelerators related functions
929 // ----------------------------------------------------------------------------
931 wxChar
*wxStripMenuCodes(const wxChar
*in
, wxChar
*out
)
934 wxString s
= wxMenuItem::GetLabelFromText(in
);
937 wxString s
= wxStripMenuCodes(str
);
938 #endif // wxUSE_MENUS
941 // go smash their buffer if it's not big enough - I love char * params
942 memcpy(out
, s
.c_str(), s
.length() * sizeof(wxChar
));
946 // MYcopystring - for easier search...
947 out
= new wxChar
[s
.length() + 1];
948 wxStrcpy(out
, s
.c_str());
954 wxString
wxStripMenuCodes(const wxString
& in
, int flags
)
956 wxASSERT_MSG( flags
, _T("this is useless to call without any flags") );
960 size_t len
= in
.length();
963 for ( size_t n
= 0; n
< len
; n
++ )
966 if ( (flags
& wxStrip_Mnemonics
) && ch
== _T('&') )
968 // skip it, it is used to introduce the accel char (or to quote
969 // itself in which case it should still be skipped): note that it
970 // can't be the last character of the string
973 wxLogDebug(_T("Invalid menu string '%s'"), in
.c_str());
977 // use the next char instead
981 else if ( (flags
& wxStrip_Accel
) && ch
== _T('\t') )
983 // everything after TAB is accel string, exit the loop
993 // ----------------------------------------------------------------------------
994 // Window search functions
995 // ----------------------------------------------------------------------------
998 * If parent is non-NULL, look through children for a label or title
999 * matching the specified string. If NULL, look through all top-level windows.
1004 wxFindWindowByLabel (const wxString
& title
, wxWindow
* parent
)
1006 return wxWindow::FindWindowByLabel( title
, parent
);
1011 * If parent is non-NULL, look through children for a name
1012 * matching the specified string. If NULL, look through all top-level windows.
1017 wxFindWindowByName (const wxString
& name
, wxWindow
* parent
)
1019 return wxWindow::FindWindowByName( name
, parent
);
1022 // Returns menu item id or wxNOT_FOUND if none.
1024 wxFindMenuItemId (wxFrame
* frame
, const wxString
& menuString
, const wxString
& itemString
)
1027 wxMenuBar
*menuBar
= frame
->GetMenuBar ();
1029 return menuBar
->FindMenuItem (menuString
, itemString
);
1030 #endif // wxUSE_MENUS
1035 // Try to find the deepest child that contains 'pt'.
1036 // We go backwards, to try to allow for controls that are spacially
1037 // within other controls, but are still siblings (e.g. buttons within
1038 // static boxes). Static boxes are likely to be created _before_ controls
1039 // that sit inside them.
1040 wxWindow
* wxFindWindowAtPoint(wxWindow
* win
, const wxPoint
& pt
)
1042 if (!win
->IsShown())
1045 // Hack for wxNotebook case: at least in wxGTK, all pages
1046 // claim to be shown, so we must only deal with the selected one.
1048 if (win
->IsKindOf(CLASSINFO(wxNotebook
)))
1050 wxNotebook
* nb
= (wxNotebook
*) win
;
1051 int sel
= nb
->GetSelection();
1054 wxWindow
* child
= nb
->GetPage(sel
);
1055 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
1062 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetLast();
1065 wxWindow
* child
= node
->GetData();
1066 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
1069 node
= node
->GetPrevious();
1072 wxPoint pos
= win
->GetPosition();
1073 wxSize sz
= win
->GetSize();
1074 if ( !win
->IsTopLevel() && win
->GetParent() )
1076 pos
= win
->GetParent()->ClientToScreen(pos
);
1079 wxRect
rect(pos
, sz
);
1080 if (rect
.Contains(pt
))
1086 wxWindow
* wxGenericFindWindowAtPoint(const wxPoint
& pt
)
1088 // Go backwards through the list since windows
1089 // on top are likely to have been appended most
1091 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetLast();
1094 wxWindow
* win
= node
->GetData();
1095 wxWindow
* found
= wxFindWindowAtPoint(win
, pt
);
1098 node
= node
->GetPrevious();
1103 // ----------------------------------------------------------------------------
1105 // ----------------------------------------------------------------------------
1108 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
1109 * since otherwise the generic code may be pulled in unnecessarily.
1114 int wxMessageBox(const wxString
& message
, const wxString
& caption
, long style
,
1115 wxWindow
*parent
, int WXUNUSED(x
), int WXUNUSED(y
) )
1117 long decorated_style
= style
;
1119 if ( ( style
& ( wxICON_EXCLAMATION
| wxICON_HAND
| wxICON_INFORMATION
| wxICON_QUESTION
) ) == 0 )
1121 decorated_style
|= ( style
& wxYES
) ? wxICON_QUESTION
: wxICON_INFORMATION
;
1124 wxMessageDialog
dialog(parent
, message
, caption
, decorated_style
);
1126 int ans
= dialog
.ShowModal();
1139 wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") );
1144 #endif // wxUSE_MSGDLG
1148 wxString
wxGetTextFromUser(const wxString
& message
, const wxString
& caption
,
1149 const wxString
& defaultValue
, wxWindow
*parent
,
1150 wxCoord x
, wxCoord y
, bool centre
)
1153 long style
= wxTextEntryDialogStyle
;
1160 wxTextEntryDialog
dialog(parent
, message
, caption
, defaultValue
, style
, wxPoint(x
, y
));
1162 if (dialog
.ShowModal() == wxID_OK
)
1164 str
= dialog
.GetValue();
1170 wxString
wxGetPasswordFromUser(const wxString
& message
,
1171 const wxString
& caption
,
1172 const wxString
& defaultValue
,
1174 wxCoord x
, wxCoord y
, bool centre
)
1177 long style
= wxTextEntryDialogStyle
;
1184 wxPasswordEntryDialog
dialog(parent
, message
, caption
, defaultValue
,
1185 style
, wxPoint(x
, y
));
1186 if ( dialog
.ShowModal() == wxID_OK
)
1188 str
= dialog
.GetValue();
1194 #endif // wxUSE_TEXTDLG
1198 wxColour
wxGetColourFromUser(wxWindow
*parent
, const wxColour
& colInit
, const wxString
& caption
)
1201 data
.SetChooseFull(true);
1204 data
.SetColour((wxColour
&)colInit
); // const_cast
1208 wxColourDialog
dialog(parent
, &data
);
1209 if (!caption
.empty())
1210 dialog
.SetTitle(caption
);
1211 if ( dialog
.ShowModal() == wxID_OK
)
1213 colRet
= dialog
.GetColourData().GetColour();
1215 //else: leave it invalid
1220 #endif // wxUSE_COLOURDLG
1224 wxFont
wxGetFontFromUser(wxWindow
*parent
, const wxFont
& fontInit
, const wxString
& caption
)
1227 if ( fontInit
.Ok() )
1229 data
.SetInitialFont(fontInit
);
1233 wxFontDialog
dialog(parent
, data
);
1234 if (!caption
.empty())
1235 dialog
.SetTitle(caption
);
1236 if ( dialog
.ShowModal() == wxID_OK
)
1238 fontRet
= dialog
.GetFontData().GetChosenFont();
1240 //else: leave it invalid
1245 #endif // wxUSE_FONTDLG
1247 // ----------------------------------------------------------------------------
1248 // wxSafeYield and supporting functions
1249 // ----------------------------------------------------------------------------
1251 void wxEnableTopLevelWindows(bool enable
)
1253 wxWindowList::compatibility_iterator node
;
1254 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1255 node
->GetData()->Enable(enable
);
1258 wxWindowDisabler::wxWindowDisabler(wxWindow
*winToSkip
)
1260 // remember the top level windows which were already disabled, so that we
1261 // don't reenable them later
1262 m_winDisabled
= NULL
;
1264 wxWindowList::compatibility_iterator node
;
1265 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1267 wxWindow
*winTop
= node
->GetData();
1268 if ( winTop
== winToSkip
)
1271 // we don't need to disable the hidden or already disabled windows
1272 if ( winTop
->IsEnabled() && winTop
->IsShown() )
1278 if ( !m_winDisabled
)
1280 m_winDisabled
= new wxWindowList
;
1283 m_winDisabled
->Append(winTop
);
1288 wxWindowDisabler::~wxWindowDisabler()
1290 wxWindowList::compatibility_iterator node
;
1291 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1293 wxWindow
*winTop
= node
->GetData();
1294 if ( !m_winDisabled
|| !m_winDisabled
->Find(winTop
) )
1298 //else: had been already disabled, don't reenable
1301 delete m_winDisabled
;
1304 // Yield to other apps/messages and disable user input to all windows except
1306 bool wxSafeYield(wxWindow
*win
, bool onlyIfNeeded
)
1308 wxWindowDisabler
wd(win
);
1312 rc
= wxYieldIfNeeded();
1319 // Don't synthesize KeyUp events holding down a key and producing KeyDown
1320 // events with autorepeat. On by default and always on in wxMSW. wxGTK version
1323 bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag
) )
1325 return true; // detectable auto-repeat is the only mode MSW supports