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
== wxPORT_OS2
)
491 if (platform
== wxPORT_MAC
)
495 if (sm_customPlatforms
&& sm_customPlatforms
->Index(platform
) != wxNOT_FOUND
)
501 // ----------------------------------------------------------------------------
502 // network and user id functions
503 // ----------------------------------------------------------------------------
505 // Get Full RFC822 style email address
506 bool wxGetEmailAddress(wxChar
*address
, int maxSize
)
508 wxString email
= wxGetEmailAddress();
512 wxStrncpy(address
, email
, maxSize
- 1);
513 address
[maxSize
- 1] = wxT('\0');
518 wxString
wxGetEmailAddress()
522 wxString host
= wxGetFullHostName();
525 wxString user
= wxGetUserId();
528 email
<< user
<< wxT('@') << host
;
535 wxString
wxGetUserId()
537 static const int maxLoginLen
= 256; // FIXME arbitrary number
540 bool ok
= wxGetUserId(wxStringBuffer(buf
, maxLoginLen
), maxLoginLen
);
548 wxString
wxGetUserName()
550 static const int maxUserNameLen
= 1024; // FIXME arbitrary number
553 bool ok
= wxGetUserName(wxStringBuffer(buf
, maxUserNameLen
), maxUserNameLen
);
561 wxString
wxGetHostName()
563 static const size_t hostnameSize
= 257;
566 bool ok
= wxGetHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
574 wxString
wxGetFullHostName()
576 static const size_t hostnameSize
= 257;
579 bool ok
= wxGetFullHostName(wxStringBuffer(buf
, hostnameSize
), hostnameSize
);
587 wxString
wxGetHomeDir()
597 wxString
wxGetCurrentDir()
604 ok
= getcwd(dir
.GetWriteBuf(len
+ 1), len
) != NULL
;
609 if ( errno
!= ERANGE
)
611 wxLogSysError(_T("Failed to get current directory"));
613 return wxEmptyString
;
617 // buffer was too small, retry with a larger one
629 // ----------------------------------------------------------------------------
631 // ----------------------------------------------------------------------------
633 // wxDoExecuteWithCapture() helper: reads an entire stream into one array
635 // returns true if ok, false if error
637 static bool ReadAll(wxInputStream
*is
, wxArrayString
& output
)
639 wxCHECK_MSG( is
, false, _T("NULL stream in wxExecute()?") );
641 // the stream could be already at EOF or in wxSTREAM_BROKEN_PIPE state
644 wxTextInputStream
tis(*is
);
649 wxString line
= tis
.ReadLine();
665 #endif // wxUSE_STREAMS
667 // this is a private function because it hasn't a clean interface: the first
668 // array is passed by reference, the second by pointer - instead we have 2
669 // public versions of wxExecute() below
670 static long wxDoExecuteWithCapture(const wxString
& command
,
671 wxArrayString
& output
,
672 wxArrayString
* error
,
675 // create a wxProcess which will capture the output
676 wxProcess
*process
= new wxProcess
;
679 long rc
= wxExecute(command
, wxEXEC_SYNC
| flags
, process
);
684 if ( !ReadAll(process
->GetInputStream(), output
) )
689 if ( !ReadAll(process
->GetErrorStream(), *error
) )
697 #endif // wxUSE_STREAMS/!wxUSE_STREAMS
704 long wxExecute(const wxString
& command
, wxArrayString
& output
, int flags
)
706 return wxDoExecuteWithCapture(command
, output
, NULL
, flags
);
709 long wxExecute(const wxString
& command
,
710 wxArrayString
& output
,
711 wxArrayString
& error
,
714 return wxDoExecuteWithCapture(command
, output
, &error
, flags
);
717 // ----------------------------------------------------------------------------
718 // Launch default browser
719 // ----------------------------------------------------------------------------
721 bool wxLaunchDefaultBrowser(const wxString
& urlOrig
, int flags
)
725 // set the scheme of url to http if it does not have one
726 wxString
url(urlOrig
);
727 if ( !wxURI(url
).HasScheme() )
728 url
.Prepend(wxT("http://"));
730 #if defined(__WXMSW__)
733 if ( flags
& wxBROWSER_NEW_WINDOW
)
735 // ShellExecuteEx() opens the URL in an existing window by default so
736 // we can't use it if we need a new window
737 wxRegKey
key(wxRegKey::HKCR
, url
.BeforeFirst(':') + _T("\\shell\\open"));
740 wxRegKey
keyDDE(key
, wxT("DDEExec"));
741 if ( keyDDE
.Exists() )
743 const wxString ddeTopic
= wxRegKey(keyDDE
, wxT("topic"));
745 // we only know the syntax of WWW_OpenURL DDE request for IE,
746 // optimistically assume that all other browsers are compatible
749 bool ok
= ddeTopic
== wxT("WWW_OpenURL");
752 ddeCmd
= keyDDE
.QueryDefaultValue();
753 ok
= !ddeCmd
.empty();
758 // for WWW_OpenURL, the index of the window to open the URL
759 // in is -1 (meaning "current") by default, replace it with
760 // 0 which means "new" (see KB article 160957)
761 ok
= ddeCmd
.Replace(wxT("-1"), wxT("0"),
762 false /* only first occurence */) == 1;
767 // and also replace the parameters: the topic should
768 // contain a placeholder for the URL
769 ok
= ddeCmd
.Replace(wxT("%1"), url
, false) == 1;
774 // try to send it the DDE request now but ignore the errors
777 const wxString ddeServer
= wxRegKey(keyDDE
, wxT("application"));
778 if ( wxExecuteDDE(ddeServer
, ddeTopic
, ddeCmd
) )
781 // this is not necessarily an error: maybe browser is
782 // simply not running, but no matter, in any case we're
783 // going to launch it using ShellExecuteEx() below now and
784 // we shouldn't try to open a new window if we open a new
792 WinStruct
<SHELLEXECUTEINFO
> sei
;
793 sei
.lpFile
= url
.c_str();
794 sei
.lpVerb
= _T("open");
795 sei
.nShow
= SW_SHOWNORMAL
;
797 ::ShellExecuteEx(&sei
);
799 const int nResult
= (int) sei
.hInstApp
;
801 // Firefox returns file not found for some reason, so make an exception
803 if ( nResult
> 32 || nResult
== SE_ERR_FNF
)
806 // Log something if SE_ERR_FNF happens
807 if ( nResult
== SE_ERR_FNF
)
808 wxLogDebug(wxT("SE_ERR_FNF from ShellExecute -- maybe FireFox?"));
809 #endif // __WXDEBUG__
812 #elif defined(__WXMAC__)
818 err
= ICStart(&inst
, 'STKA'); // put your app creator code here
822 err
= ICFindConfigFile(inst
, 0, NULL
);
826 ConstStr255Param hint
= 0;
828 endSel
= url
.length();
829 err
= ICLaunchURL(inst
, hint
, url
.fn_str(), endSel
, &startSel
, &endSel
);
831 wxLogDebug(wxT("ICLaunchURL error %d"), (int) err
);
838 wxLogDebug(wxT("ICStart error %d"), (int) err
);
846 wxFileType
*ft
= wxTheMimeTypesManager
->GetFileTypeFromExtension(_T("html"));
850 ft
->GetMimeType(&mt
);
852 ok
= ft
->GetOpenCommand(&cmd
, wxFileType::MessageParameters(url
));
856 if ( !ok
|| cmd
.empty() )
858 // fallback to checking for the BROWSER environment variable
859 cmd
= wxGetenv(wxT("BROWSER"));
861 cmd
<< _T(' ') << url
;
864 ok
= ( !cmd
.empty() && wxExecute(cmd
) );
868 // no file type for HTML extension
869 wxLogError(_T("No default application configured for HTML files."));
871 #endif // !wxUSE_MIMETYPE && !__WXMSW__
873 wxLogSysError(_T("Failed to open URL \"%s\" in default browser."),
879 // ----------------------------------------------------------------------------
880 // wxApp::Yield() wrappers for backwards compatibility
881 // ----------------------------------------------------------------------------
885 return wxTheApp
&& wxTheApp
->Yield();
888 bool wxYieldIfNeeded()
890 return wxTheApp
&& wxTheApp
->Yield(true);
895 // ============================================================================
896 // GUI-only functions from now on
897 // ============================================================================
902 static long wxCurrentId
= 100;
906 // skip the part of IDs space that contains hard-coded values:
907 if (wxCurrentId
== wxID_LOWEST
)
908 wxCurrentId
= wxID_HIGHEST
+ 1;
910 return wxCurrentId
++;
914 wxGetCurrentId(void) { return wxCurrentId
; }
917 wxRegisterId (long id
)
919 if (id
>= wxCurrentId
)
920 wxCurrentId
= id
+ 1;
923 // ----------------------------------------------------------------------------
924 // Menu accelerators related functions
925 // ----------------------------------------------------------------------------
927 wxChar
*wxStripMenuCodes(const wxChar
*in
, wxChar
*out
)
930 wxString s
= wxMenuItem::GetLabelFromText(in
);
933 wxString s
= wxStripMenuCodes(str
);
934 #endif // wxUSE_MENUS
937 // go smash their buffer if it's not big enough - I love char * params
938 memcpy(out
, s
.c_str(), s
.length() * sizeof(wxChar
));
942 // MYcopystring - for easier search...
943 out
= new wxChar
[s
.length() + 1];
944 wxStrcpy(out
, s
.c_str());
950 wxString
wxStripMenuCodes(const wxString
& in
, int flags
)
952 wxASSERT_MSG( flags
, _T("this is useless to call without any flags") );
956 size_t len
= in
.length();
959 for ( size_t n
= 0; n
< len
; n
++ )
962 if ( (flags
& wxStrip_Mnemonics
) && ch
== _T('&') )
964 // skip it, it is used to introduce the accel char (or to quote
965 // itself in which case it should still be skipped): note that it
966 // can't be the last character of the string
969 wxLogDebug(_T("Invalid menu string '%s'"), in
.c_str());
973 // use the next char instead
977 else if ( (flags
& wxStrip_Accel
) && ch
== _T('\t') )
979 // everything after TAB is accel string, exit the loop
989 // ----------------------------------------------------------------------------
990 // Window search functions
991 // ----------------------------------------------------------------------------
994 * If parent is non-NULL, look through children for a label or title
995 * matching the specified string. If NULL, look through all top-level windows.
1000 wxFindWindowByLabel (const wxString
& title
, wxWindow
* parent
)
1002 return wxWindow::FindWindowByLabel( title
, parent
);
1007 * If parent is non-NULL, look through children for a name
1008 * matching the specified string. If NULL, look through all top-level windows.
1013 wxFindWindowByName (const wxString
& name
, wxWindow
* parent
)
1015 return wxWindow::FindWindowByName( name
, parent
);
1018 // Returns menu item id or wxNOT_FOUND if none.
1020 wxFindMenuItemId (wxFrame
* frame
, const wxString
& menuString
, const wxString
& itemString
)
1023 wxMenuBar
*menuBar
= frame
->GetMenuBar ();
1025 return menuBar
->FindMenuItem (menuString
, itemString
);
1026 #endif // wxUSE_MENUS
1031 // Try to find the deepest child that contains 'pt'.
1032 // We go backwards, to try to allow for controls that are spacially
1033 // within other controls, but are still siblings (e.g. buttons within
1034 // static boxes). Static boxes are likely to be created _before_ controls
1035 // that sit inside them.
1036 wxWindow
* wxFindWindowAtPoint(wxWindow
* win
, const wxPoint
& pt
)
1038 if (!win
->IsShown())
1041 // Hack for wxNotebook case: at least in wxGTK, all pages
1042 // claim to be shown, so we must only deal with the selected one.
1044 if (win
->IsKindOf(CLASSINFO(wxNotebook
)))
1046 wxNotebook
* nb
= (wxNotebook
*) win
;
1047 int sel
= nb
->GetSelection();
1050 wxWindow
* child
= nb
->GetPage(sel
);
1051 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
1058 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetLast();
1061 wxWindow
* child
= node
->GetData();
1062 wxWindow
* foundWin
= wxFindWindowAtPoint(child
, pt
);
1065 node
= node
->GetPrevious();
1068 wxPoint pos
= win
->GetPosition();
1069 wxSize sz
= win
->GetSize();
1070 if ( !win
->IsTopLevel() && win
->GetParent() )
1072 pos
= win
->GetParent()->ClientToScreen(pos
);
1075 wxRect
rect(pos
, sz
);
1076 if (rect
.Inside(pt
))
1082 wxWindow
* wxGenericFindWindowAtPoint(const wxPoint
& pt
)
1084 // Go backwards through the list since windows
1085 // on top are likely to have been appended most
1087 wxWindowList::compatibility_iterator node
= wxTopLevelWindows
.GetLast();
1090 wxWindow
* win
= node
->GetData();
1091 wxWindow
* found
= wxFindWindowAtPoint(win
, pt
);
1094 node
= node
->GetPrevious();
1099 // ----------------------------------------------------------------------------
1101 // ----------------------------------------------------------------------------
1104 * N.B. these convenience functions must be separate from msgdlgg.cpp, textdlgg.cpp
1105 * since otherwise the generic code may be pulled in unnecessarily.
1110 int wxMessageBox(const wxString
& message
, const wxString
& caption
, long style
,
1111 wxWindow
*parent
, int WXUNUSED(x
), int WXUNUSED(y
) )
1113 long decorated_style
= style
;
1115 if ( ( style
& ( wxICON_EXCLAMATION
| wxICON_HAND
| wxICON_INFORMATION
| wxICON_QUESTION
) ) == 0 )
1117 decorated_style
|= ( style
& wxYES
) ? wxICON_QUESTION
: wxICON_INFORMATION
;
1120 wxMessageDialog
dialog(parent
, message
, caption
, decorated_style
);
1122 int ans
= dialog
.ShowModal();
1135 wxFAIL_MSG( _T("unexpected return code from wxMessageDialog") );
1140 #endif // wxUSE_MSGDLG
1144 wxString
wxGetTextFromUser(const wxString
& message
, const wxString
& caption
,
1145 const wxString
& defaultValue
, wxWindow
*parent
,
1146 wxCoord x
, wxCoord y
, bool centre
)
1149 long style
= wxTextEntryDialogStyle
;
1156 wxTextEntryDialog
dialog(parent
, message
, caption
, defaultValue
, style
, wxPoint(x
, y
));
1158 if (dialog
.ShowModal() == wxID_OK
)
1160 str
= dialog
.GetValue();
1166 wxString
wxGetPasswordFromUser(const wxString
& message
,
1167 const wxString
& caption
,
1168 const wxString
& defaultValue
,
1170 wxCoord x
, wxCoord y
, bool centre
)
1173 long style
= wxTextEntryDialogStyle
;
1180 wxPasswordEntryDialog
dialog(parent
, message
, caption
, defaultValue
,
1181 style
, wxPoint(x
, y
));
1182 if ( dialog
.ShowModal() == wxID_OK
)
1184 str
= dialog
.GetValue();
1190 #endif // wxUSE_TEXTDLG
1194 wxColour
wxGetColourFromUser(wxWindow
*parent
, const wxColour
& colInit
, const wxString
& caption
)
1197 data
.SetChooseFull(true);
1200 data
.SetColour((wxColour
&)colInit
); // const_cast
1204 wxColourDialog
dialog(parent
, &data
);
1205 if (!caption
.empty())
1206 dialog
.SetTitle(caption
);
1207 if ( dialog
.ShowModal() == wxID_OK
)
1209 colRet
= dialog
.GetColourData().GetColour();
1211 //else: leave it invalid
1216 #endif // wxUSE_COLOURDLG
1220 wxFont
wxGetFontFromUser(wxWindow
*parent
, const wxFont
& fontInit
, const wxString
& caption
)
1223 if ( fontInit
.Ok() )
1225 data
.SetInitialFont(fontInit
);
1229 wxFontDialog
dialog(parent
, data
);
1230 if (!caption
.empty())
1231 dialog
.SetTitle(caption
);
1232 if ( dialog
.ShowModal() == wxID_OK
)
1234 fontRet
= dialog
.GetFontData().GetChosenFont();
1236 //else: leave it invalid
1241 #endif // wxUSE_FONTDLG
1243 // ----------------------------------------------------------------------------
1244 // wxSafeYield and supporting functions
1245 // ----------------------------------------------------------------------------
1247 void wxEnableTopLevelWindows(bool enable
)
1249 wxWindowList::compatibility_iterator node
;
1250 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1251 node
->GetData()->Enable(enable
);
1254 wxWindowDisabler::wxWindowDisabler(wxWindow
*winToSkip
)
1256 // remember the top level windows which were already disabled, so that we
1257 // don't reenable them later
1258 m_winDisabled
= NULL
;
1260 wxWindowList::compatibility_iterator node
;
1261 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1263 wxWindow
*winTop
= node
->GetData();
1264 if ( winTop
== winToSkip
)
1267 // we don't need to disable the hidden or already disabled windows
1268 if ( winTop
->IsEnabled() && winTop
->IsShown() )
1274 if ( !m_winDisabled
)
1276 m_winDisabled
= new wxWindowList
;
1279 m_winDisabled
->Append(winTop
);
1284 wxWindowDisabler::~wxWindowDisabler()
1286 wxWindowList::compatibility_iterator node
;
1287 for ( node
= wxTopLevelWindows
.GetFirst(); node
; node
= node
->GetNext() )
1289 wxWindow
*winTop
= node
->GetData();
1290 if ( !m_winDisabled
|| !m_winDisabled
->Find(winTop
) )
1294 //else: had been already disabled, don't reenable
1297 delete m_winDisabled
;
1300 // Yield to other apps/messages and disable user input to all windows except
1302 bool wxSafeYield(wxWindow
*win
, bool onlyIfNeeded
)
1304 wxWindowDisabler
wd(win
);
1308 rc
= wxYieldIfNeeded();
1315 // Don't synthesize KeyUp events holding down a key and producing KeyDown
1316 // events with autorepeat. On by default and always on in wxMSW. wxGTK version
1319 bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag
) )
1321 return true; // detectable auto-repeat is the only mode MSW supports