]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/msgdlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/msgdlg.cpp
3 // Purpose: wxMessageDialog
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/msgdlg.h"
23 // there is no hook support under CE so we can't use the code for message box
26 #define wxUSE_MSGBOX_HOOK 1
28 #define wxUSE_MSGBOX_HOOK 0
35 #include "wx/dialog.h"
37 #include "wx/hashmap.h"
41 #include "wx/msw/private.h"
42 #include "wx/msw/private/button.h"
43 #include "wx/msw/private/metrics.h"
46 #include "wx/fontutil.h"
47 #include "wx/textbuf.h"
48 #include "wx/display.h"
53 #include "wx/msw/wince/missing.h"
56 IMPLEMENT_CLASS(wxMessageDialog
, wxDialog
)
60 // there can potentially be one message box per thread so we use a hash map
61 // with thread ids as keys and (currently shown) message boxes as values
63 // TODO: replace this with wxTLS once it's available
64 WX_DECLARE_HASH_MAP(unsigned long, wxMessageDialog
*,
65 wxIntegerHash
, wxIntegerEqual
,
68 // the order in this array is the one in which buttons appear in the
70 const wxMessageDialog::ButtonAccessors
wxMessageDialog::ms_buttons
[] =
72 { IDYES
, &wxMessageDialog::GetYesLabel
},
73 { IDNO
, &wxMessageDialog::GetNoLabel
},
74 { IDOK
, &wxMessageDialog::GetOKLabel
},
75 { IDCANCEL
, &wxMessageDialog::GetCancelLabel
},
81 wxMessageDialogMap
& HookMap()
83 static wxMessageDialogMap s_Map
;
89 All this code is used for adjusting the message box layout when we mess
90 with its contents. It's rather complicated because we try hard to avoid
91 assuming much about the standard layout details and so, instead of just
92 laying out everything ourselves (which would have been so much simpler!)
93 we try to only modify the existing controls positions by offsetting them
94 from their default ones in the hope that this will continue to work with
95 the future Windows versions.
98 // convert the given RECT from screen to client coordinates in place
99 void ScreenRectToClient(HWND hwnd
, RECT
& rc
)
101 // map from desktop (i.e. screen) coordinates to ones of this window
103 // notice that a RECT is laid out as 2 consecutive POINTs so the cast is
105 ::MapWindowPoints(HWND_DESKTOP
, hwnd
, reinterpret_cast<POINT
*>(&rc
), 2);
108 // set window position to the given rect
109 inline void SetWindowRect(HWND hwnd
, const RECT
& rc
)
113 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
,
117 // set window position expressed in screen coordinates, whether the window is
118 // child or top level
119 void MoveWindowToScreenRect(HWND hwnd
, RECT rc
)
121 ScreenRectToClient(::GetParent(hwnd
), rc
);
123 SetWindowRect(hwnd
, rc
);
126 // helper of AdjustButtonLabels(): move the given window by dx
128 // works for both child and top level windows
129 void OffsetWindow(HWND hwnd
, int dx
)
131 RECT rc
= wxGetWindowRect(hwnd
);
136 MoveWindowToScreenRect(hwnd
, rc
);
139 } // anonymous namespace
143 wxMessageDialog::HookFunction(int code
, WXWPARAM wParam
, WXLPARAM lParam
)
145 // Find the thread-local instance of wxMessageDialog
146 const DWORD tid
= ::GetCurrentThreadId();
147 wxMessageDialogMap::iterator node
= HookMap().find(tid
);
148 wxCHECK_MSG( node
!= HookMap().end(), false,
149 wxT("bogus thread id in wxMessageDialog::Hook") );
151 wxMessageDialog
* const wnd
= node
->second
;
153 const HHOOK hhook
= (HHOOK
)wnd
->m_hook
;
154 const LRESULT rc
= ::CallNextHookEx(hhook
, code
, wParam
, lParam
);
156 if ( code
== HCBT_ACTIVATE
)
158 // we won't need this hook any longer
159 ::UnhookWindowsHookEx(hhook
);
161 HookMap().erase(tid
);
163 wnd
->SetHWND((HWND
)wParam
);
165 // replace the static text with an edit control if the message box is
166 // too big to fit the display
167 wnd
->ReplaceStaticWithEdit();
169 // update the labels if necessary: we need to do it before centering
170 // the dialog as this can change its size
171 if ( wnd
->HasCustomLabels() )
172 wnd
->AdjustButtonLabels();
174 // centre the message box on its parent if requested
175 if ( wnd
->GetMessageDialogStyle() & wxCENTER
)
176 wnd
->Center(); // center on parent
177 //else: default behaviour, center on screen
179 // there seems to be no reason to leave it set
186 void wxMessageDialog::ReplaceStaticWithEdit()
188 // check if the message box fits the display
189 int nDisplay
= wxDisplay::GetFromWindow(this);
190 if ( nDisplay
== wxNOT_FOUND
)
192 const wxRect rectDisplay
= wxDisplay(nDisplay
).GetClientArea();
194 if ( rectDisplay
.Contains(GetRect()) )
201 // find the static control to replace: normally there are two of them, the
202 // icon and the text itself so search for all of them and ignore the icon
204 HWND hwndStatic
= ::FindWindowEx(GetHwnd(), NULL
, wxT("STATIC"), NULL
);
205 if ( ::GetWindowLong(hwndStatic
, GWL_STYLE
) & SS_ICON
)
206 hwndStatic
= ::FindWindowEx(GetHwnd(), hwndStatic
, wxT("STATIC"), NULL
);
210 wxLogDebug("Failed to find the static text control in message box.");
214 // set the right font for GetCharHeight() call below
215 wxWindowBase::SetFont(GetMessageFont());
217 // put the new edit control at the same place
218 RECT rc
= wxGetWindowRect(hwndStatic
);
219 ScreenRectToClient(GetHwnd(), rc
);
221 // but make it less tall so that the message box fits on the screen: we try
222 // to make the message box take no more than 7/8 of the screen to leave
223 // some space above and below it
224 const int hText
= (7*rectDisplay
.height
)/8 -
226 2*::GetSystemMetrics(SM_CYFIXEDFRAME
) +
227 ::GetSystemMetrics(SM_CYCAPTION
) +
228 5*GetCharHeight() // buttons + margins
230 const int dh
= (rc
.bottom
- rc
.top
) - hText
; // vertical space we save
233 // and it also must be wider as it needs a vertical scrollbar (in order
234 // to preserve the word wrap, otherwise the number of lines would change
235 // and we want the control to look as similar as possible to the original)
237 // NB: you would have thought that 2*SM_CXEDGE would be enough but it
238 // isn't, somehow, and the text control breaks lines differently from
239 // the static one so fudge by adding some extra space
240 const int dw
= ::GetSystemMetrics(SM_CXVSCROLL
) +
241 4*::GetSystemMetrics(SM_CXEDGE
);
245 // chop of the trailing new line(s) from the message box text, they are
246 // ignored by the static control but result in extra lines and hence extra
247 // scrollbar position in the edit one
248 wxString
text(wxGetWindowText(hwndStatic
));
249 for ( wxString::reverse_iterator i
= text
.rbegin(); i
!= text
.rend(); ++i
)
253 // found last non-newline char, remove everything after it and stop
254 text
.erase(i
.base() + 1, text
.end());
259 // do create the new control
260 HWND hwndEdit
= ::CreateWindow
263 wxTextBuffer::Translate(text
).wx_str(),
264 WS_CHILD
| WS_VSCROLL
| WS_VISIBLE
|
265 ES_MULTILINE
| ES_READONLY
| ES_AUTOVSCROLL
,
267 rc
.right
- rc
.left
, rc
.bottom
- rc
.top
,
276 wxLogDebug("Creation of replacement edit control failed in message box");
280 // copy the font from the original control
281 LRESULT hfont
= ::SendMessage(hwndStatic
, WM_GETFONT
, 0, 0);
282 ::SendMessage(hwndEdit
, WM_SETFONT
, hfont
, 0);
285 ::DestroyWindow(hwndStatic
);
288 // shrink and centre the message box vertically and widen it box to account
289 // for the extra scrollbar
290 RECT rcBox
= wxGetWindowRect(GetHwnd());
291 const int hMsgBox
= rcBox
.bottom
- rcBox
.top
- dh
;
292 rcBox
.top
= (rectDisplay
.height
- hMsgBox
)/2;
293 rcBox
.bottom
= rcBox
.top
+ hMsgBox
+ (rectDisplay
.height
- hMsgBox
)%2
;
295 rcBox
.right
+= dw
- dw
/2;
296 SetWindowRect(GetHwnd(), rcBox
);
298 // and adjust all the buttons positions
299 for ( unsigned n
= 0; n
< WXSIZEOF(ms_buttons
); n
++ )
301 const HWND hwndBtn
= ::GetDlgItem(GetHwnd(), ms_buttons
[n
].id
);
303 continue; // it's ok, not all buttons are always present
305 RECT rc
= wxGetWindowRect(hwndBtn
);
310 MoveWindowToScreenRect(hwndBtn
, rc
);
314 void wxMessageDialog::AdjustButtonLabels()
316 // changing the button labels is the easy part but we also need to ensure
317 // that the buttons are big enough for the label strings and increase their
318 // size (and maybe the size of the message box itself) if they are not
320 // TODO-RTL: check whether this works correctly in RTL
322 // we want to use this font in GetTextExtent() calls below but we don't
323 // want to send WM_SETFONT to the message box, who knows how is it going to
324 // react to it (right now it doesn't seem to do anything but what if this
326 wxWindowBase::SetFont(GetMessageFont());
328 // first iteration: find the widest button and update the buttons labels
329 int wBtnOld
= 0, // current buttons width
330 wBtnNew
= 0; // required new buttons width
331 RECT rcBtn
; // stores the button height and y positions
332 unsigned numButtons
= 0; // total number of buttons in the message box
334 for ( n
= 0; n
< WXSIZEOF(ms_buttons
); n
++ )
336 const HWND hwndBtn
= ::GetDlgItem(GetHwnd(), ms_buttons
[n
].id
);
338 continue; // it's ok, not all buttons are always present
342 const wxString label
= (this->*ms_buttons
[n
].getter
)();
343 const wxSize sizeLabel
= wxWindowBase::GetTextExtent(label
);
345 // check if the button is big enough for this label
346 const RECT rc
= wxGetWindowRect(hwndBtn
);
349 // initialize wBtnOld using the first button width, all the other
350 // ones should have the same one
351 wBtnOld
= rc
.right
- rc
.left
;
353 rcBtn
= rc
; // remember for use below when we reposition the buttons
357 wxASSERT_MSG( wBtnOld
== rc
.right
- rc
.left
,
358 "all buttons are supposed to be of same width" );
361 const int widthNeeded
= wxMSWButton::GetFittingSize(this, sizeLabel
).x
;
362 if ( widthNeeded
> wBtnNew
)
363 wBtnNew
= widthNeeded
;
365 ::SetWindowText(hwndBtn
, label
.wx_str());
368 if ( wBtnNew
<= wBtnOld
)
370 // all buttons fit, nothing else to do
374 // resize the message box to be wider if needed
375 const int wBoxOld
= wxGetClientRect(GetHwnd()).right
;
377 const int CHAR_WIDTH
= GetCharWidth();
378 const int MARGIN_OUTER
= 2*CHAR_WIDTH
; // margin between box and buttons
379 const int MARGIN_INNER
= CHAR_WIDTH
; // margin between buttons
381 RECT rcBox
= wxGetWindowRect(GetHwnd());
383 const int wAllButtons
= numButtons
*(wBtnNew
+ MARGIN_INNER
) - MARGIN_INNER
;
384 int wBoxNew
= 2*MARGIN_OUTER
+ wAllButtons
;
385 if ( wBoxNew
> wBoxOld
)
387 const int dw
= wBoxNew
- wBoxOld
;
389 rcBox
.right
+= dw
- dw
/2;
391 SetWindowRect(GetHwnd(), rcBox
);
393 // surprisingly, we don't need to resize the static text control, it
394 // seems to adjust itself to the new size, at least under Windows 2003
395 // (TODO: test if this happens on older Windows versions)
397 else // the current width is big enough
403 // finally position all buttons
405 // notice that we have to take into account the difference between window
407 rcBtn
.left
= (rcBox
.left
+ rcBox
.right
- wxGetClientRect(GetHwnd()).right
+
408 wBoxNew
- wAllButtons
) / 2;
409 rcBtn
.right
= rcBtn
.left
+ wBtnNew
;
411 for ( n
= 0; n
< WXSIZEOF(ms_buttons
); n
++ )
413 const HWND hwndBtn
= ::GetDlgItem(GetHwnd(), ms_buttons
[n
].id
);
417 MoveWindowToScreenRect(hwndBtn
, rcBtn
);
419 rcBtn
.left
+= wBtnNew
+ MARGIN_INNER
;
420 rcBtn
.right
+= wBtnNew
+ MARGIN_INNER
;
424 #endif // wxUSE_MSGBOX_HOOK
427 wxFont
wxMessageDialog::GetMessageFont()
429 const NONCLIENTMETRICS
& ncm
= wxMSWImpl::GetNonClientMetrics();
430 return wxNativeFontInfo(ncm
.lfMessageFont
);
433 int wxMessageDialog::ShowModal()
435 if ( !wxTheApp
->GetTopWindow() )
437 // when the message box is shown from wxApp::OnInit() (i.e. before the
438 // message loop is entered), this must be done or the next message box
439 // will never be shown - just try putting 2 calls to wxMessageBox() in
440 // OnInit() to see it
441 while ( wxTheApp
->Pending() )
442 wxTheApp
->Dispatch();
445 // use the top level window as parent if none specified
447 m_parent
= GetParentForModalDialog();
448 HWND hWnd
= m_parent
? GetHwndOf(m_parent
) : NULL
;
451 // native message box always uses the current user locale but the program
452 // may be using a different one and in this case we need to manually
453 // translate the button labels to avoid mismatch between the language of
454 // the message box text and its buttons
455 wxLocale
* const loc
= wxGetLocale();
456 if ( loc
&& loc
->GetLanguage() != wxLocale::GetSystemLanguage() )
458 if ( m_dialogStyle
& wxYES_NO
)
460 // use the strings with mnemonics here as the native message box
462 SetYesNoLabels(_("&Yes"), _("&No"));
465 // we may or not have the Ok/Cancel buttons but either we do have them
466 // or we already made the labels custom because we called
467 // SetYesNoLabels() above so doing this does no harm -- and is
468 // necessary in wxYES_NO | wxCANCEL case
470 // note that we don't use mnemonics here for consistency with the
471 // native message box (which probably doesn't use them because
472 // Enter/Esc keys can be already used to dismiss the message box
474 SetOKCancelLabels(_("OK"), _("Cancel"));
478 // translate wx style in MSW
479 unsigned int msStyle
;
480 const long wxStyle
= GetMessageDialogStyle();
481 if ( wxStyle
& wxYES_NO
)
483 #if !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
484 if (wxStyle
& wxCANCEL
)
485 msStyle
= MB_YESNOCANCEL
;
487 #endif // !(__SMARTPHONE__ && __WXWINCE__)
490 if ( wxStyle
& wxNO_DEFAULT
)
491 msStyle
|= MB_DEFBUTTON2
;
492 else if ( wxStyle
& wxCANCEL_DEFAULT
)
493 msStyle
|= MB_DEFBUTTON3
;
495 else // without Yes/No we're going to have an OK button
497 if ( wxStyle
& wxCANCEL
)
499 msStyle
= MB_OKCANCEL
;
501 if ( wxStyle
& wxCANCEL_DEFAULT
)
502 msStyle
|= MB_DEFBUTTON2
;
510 if (wxStyle
& wxICON_EXCLAMATION
)
511 msStyle
|= MB_ICONEXCLAMATION
;
512 else if (wxStyle
& wxICON_HAND
)
513 msStyle
|= MB_ICONHAND
;
514 else if (wxStyle
& wxICON_INFORMATION
)
515 msStyle
|= MB_ICONINFORMATION
;
516 else if (wxStyle
& wxICON_QUESTION
)
517 msStyle
|= MB_ICONQUESTION
;
519 if ( wxStyle
& wxSTAY_ON_TOP
)
520 msStyle
|= MB_TOPMOST
;
523 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
524 msStyle
|= MB_RTLREADING
| MB_RIGHT
;
528 msStyle
|= MB_APPLMODAL
;
530 msStyle
|= MB_TASKMODAL
;
532 // per MSDN documentation for MessageBox() we can prefix the message with 2
533 // right-to-left mark characters to tell the function to use RTL layout
534 // (unfortunately this only works in Unicode builds)
535 wxString message
= GetFullMessage();
537 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
539 // NB: not all compilers support \u escapes
540 static const wchar_t wchRLM
= 0x200f;
541 message
.Prepend(wxString(wchRLM
, 2));
543 #endif // wxUSE_UNICODE
545 #if wxUSE_MSGBOX_HOOK
546 // install the hook in any case as we don't know in advance if the message
547 // box is not going to be too big (requiring the replacement of the static
548 // control with an edit one)
549 const DWORD tid
= ::GetCurrentThreadId();
550 m_hook
= ::SetWindowsHookEx(WH_CBT
,
551 &wxMessageDialog::HookFunction
, NULL
, tid
);
552 HookMap()[tid
] = this;
553 #endif // wxUSE_MSGBOX_HOOK
555 // do show the dialog
556 int msAns
= MessageBox(hWnd
, message
.wx_str(), m_caption
.wx_str(), msStyle
);
561 wxFAIL_MSG(wxT("unexpected ::MessageBox() return code"));
580 #endif // wxUSE_MSGDLG