Improve main and extended messages handling in new wxMSW wxMessageDialog.
[wxWidgets.git] / src / msw / msgdlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/msgdlg.cpp
3 // Purpose: wxMessageDialog
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #ifdef __BORLANDC__
16 #pragma hdrstop
17 #endif
18
19 #if wxUSE_MSGDLG
20
21 #include "wx/ptr_scpd.h"
22
23 // there is no hook support under CE so we can't use the code for message box
24 // positioning there
25 #ifndef __WXWINCE__
26 #define wxUSE_MSGBOX_HOOK 1
27 #else
28 #define wxUSE_MSGBOX_HOOK 0
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include "wx/app.h"
33 #include "wx/intl.h"
34 #include "wx/utils.h"
35 #include "wx/dialog.h"
36 #if wxUSE_MSGBOX_HOOK
37 #include "wx/hashmap.h"
38 #endif
39 #endif
40
41 #include "wx/dynlib.h"
42 #include "wx/msw/private.h"
43 #include "wx/msw/private/button.h"
44 #include "wx/msw/private/metrics.h"
45 #include "wx/msw/private/msgdlg.h"
46 #include "wx/msgdlg.h"
47
48 #if wxUSE_MSGBOX_HOOK
49 #include "wx/fontutil.h"
50 #include "wx/textbuf.h"
51 #include "wx/display.h"
52 #endif
53
54 // For MB_TASKMODAL
55 #ifdef __WXWINCE__
56 #include "wx/msw/wince/missing.h"
57 #endif
58
59 using namespace wxMSWMessageDialog;
60
61 IMPLEMENT_CLASS(wxMessageDialog, wxDialog)
62
63 #if wxUSE_MSGBOX_HOOK
64
65 // there can potentially be one message box per thread so we use a hash map
66 // with thread ids as keys and (currently shown) message boxes as values
67 //
68 // TODO: replace this with wxTLS once it's available
69 WX_DECLARE_HASH_MAP(unsigned long, wxMessageDialog *,
70 wxIntegerHash, wxIntegerEqual,
71 wxMessageDialogMap);
72
73 // the order in this array is the one in which buttons appear in the
74 // message box
75 const wxMessageDialog::ButtonAccessors wxMessageDialog::ms_buttons[] =
76 {
77 { IDYES, &wxMessageDialog::GetYesLabel },
78 { IDNO, &wxMessageDialog::GetNoLabel },
79 { IDOK, &wxMessageDialog::GetOKLabel },
80 { IDCANCEL, &wxMessageDialog::GetCancelLabel },
81 };
82
83 namespace
84 {
85
86 wxMessageDialogMap& HookMap()
87 {
88 static wxMessageDialogMap s_Map;
89
90 return s_Map;
91 }
92
93 /*
94 All this code is used for adjusting the message box layout when we mess
95 with its contents. It's rather complicated because we try hard to avoid
96 assuming much about the standard layout details and so, instead of just
97 laying out everything ourselves (which would have been so much simpler!)
98 we try to only modify the existing controls positions by offsetting them
99 from their default ones in the hope that this will continue to work with
100 the future Windows versions.
101 */
102
103 // convert the given RECT from screen to client coordinates in place
104 void ScreenRectToClient(HWND hwnd, RECT& rc)
105 {
106 // map from desktop (i.e. screen) coordinates to ones of this window
107 //
108 // notice that a RECT is laid out as 2 consecutive POINTs so the cast is
109 // valid
110 ::MapWindowPoints(HWND_DESKTOP, hwnd, reinterpret_cast<POINT *>(&rc), 2);
111 }
112
113 // set window position to the given rect
114 inline void SetWindowRect(HWND hwnd, const RECT& rc)
115 {
116 ::MoveWindow(hwnd,
117 rc.left, rc.top,
118 rc.right - rc.left, rc.bottom - rc.top,
119 FALSE);
120 }
121
122 // set window position expressed in screen coordinates, whether the window is
123 // child or top level
124 void MoveWindowToScreenRect(HWND hwnd, RECT rc)
125 {
126 ScreenRectToClient(::GetParent(hwnd), rc);
127
128 SetWindowRect(hwnd, rc);
129 }
130
131 // helper of AdjustButtonLabels(): move the given window by dx
132 //
133 // works for both child and top level windows
134 void OffsetWindow(HWND hwnd, int dx)
135 {
136 RECT rc = wxGetWindowRect(hwnd);
137
138 rc.left += dx;
139 rc.right += dx;
140
141 MoveWindowToScreenRect(hwnd, rc);
142 }
143
144 } // anonymous namespace
145
146 /* static */
147 WXLRESULT wxCALLBACK
148 wxMessageDialog::HookFunction(int code, WXWPARAM wParam, WXLPARAM lParam)
149 {
150 // Find the thread-local instance of wxMessageDialog
151 const DWORD tid = ::GetCurrentThreadId();
152 wxMessageDialogMap::iterator node = HookMap().find(tid);
153 wxCHECK_MSG( node != HookMap().end(), false,
154 wxT("bogus thread id in wxMessageDialog::Hook") );
155
156 wxMessageDialog * const wnd = node->second;
157
158 const HHOOK hhook = (HHOOK)wnd->m_hook;
159 const LRESULT rc = ::CallNextHookEx(hhook, code, wParam, lParam);
160
161 if ( code == HCBT_ACTIVATE )
162 {
163 // we won't need this hook any longer
164 ::UnhookWindowsHookEx(hhook);
165 wnd->m_hook = NULL;
166 HookMap().erase(tid);
167
168 wnd->SetHWND((HWND)wParam);
169
170 // replace the static text with an edit control if the message box is
171 // too big to fit the display
172 wnd->ReplaceStaticWithEdit();
173
174 // update the labels if necessary: we need to do it before centering
175 // the dialog as this can change its size
176 if ( wnd->HasCustomLabels() )
177 wnd->AdjustButtonLabels();
178
179 // centre the message box on its parent if requested
180 if ( wnd->GetMessageDialogStyle() & wxCENTER )
181 wnd->Center(); // center on parent
182 //else: default behaviour, center on screen
183
184 // there seems to be no reason to leave it set
185 wnd->SetHWND(NULL);
186 }
187
188 return rc;
189 }
190
191 void wxMessageDialog::ReplaceStaticWithEdit()
192 {
193 // check if the message box fits the display
194 int nDisplay = wxDisplay::GetFromWindow(this);
195 if ( nDisplay == wxNOT_FOUND )
196 nDisplay = 0;
197 const wxRect rectDisplay = wxDisplay(nDisplay).GetClientArea();
198
199 if ( rectDisplay.Contains(GetRect()) )
200 {
201 // nothing to do
202 return;
203 }
204
205
206 // find the static control to replace: normally there are two of them, the
207 // icon and the text itself so search for all of them and ignore the icon
208 // ones
209 HWND hwndStatic = ::FindWindowEx(GetHwnd(), NULL, wxT("STATIC"), NULL);
210 if ( ::GetWindowLong(hwndStatic, GWL_STYLE) & SS_ICON )
211 hwndStatic = ::FindWindowEx(GetHwnd(), hwndStatic, wxT("STATIC"), NULL);
212
213 if ( !hwndStatic )
214 {
215 wxLogDebug("Failed to find the static text control in message box.");
216 return;
217 }
218
219 // set the right font for GetCharHeight() call below
220 wxWindowBase::SetFont(GetMessageFont());
221
222 // put the new edit control at the same place
223 RECT rc = wxGetWindowRect(hwndStatic);
224 ScreenRectToClient(GetHwnd(), rc);
225
226 // but make it less tall so that the message box fits on the screen: we try
227 // to make the message box take no more than 7/8 of the screen to leave
228 // some space above and below it
229 const int hText = (7*rectDisplay.height)/8 -
230 (
231 2*::GetSystemMetrics(SM_CYFIXEDFRAME) +
232 ::GetSystemMetrics(SM_CYCAPTION) +
233 5*GetCharHeight() // buttons + margins
234 );
235 const int dh = (rc.bottom - rc.top) - hText; // vertical space we save
236 rc.bottom -= dh;
237
238 // and it also must be wider as it needs a vertical scrollbar (in order
239 // to preserve the word wrap, otherwise the number of lines would change
240 // and we want the control to look as similar as possible to the original)
241 //
242 // NB: you would have thought that 2*SM_CXEDGE would be enough but it
243 // isn't, somehow, and the text control breaks lines differently from
244 // the static one so fudge by adding some extra space
245 const int dw = ::GetSystemMetrics(SM_CXVSCROLL) +
246 4*::GetSystemMetrics(SM_CXEDGE);
247 rc.right += dw;
248
249
250 // chop of the trailing new line(s) from the message box text, they are
251 // ignored by the static control but result in extra lines and hence extra
252 // scrollbar position in the edit one
253 wxString text(wxGetWindowText(hwndStatic));
254 for ( wxString::reverse_iterator i = text.rbegin(); i != text.rend(); ++i )
255 {
256 if ( *i != '\n' )
257 {
258 // found last non-newline char, remove everything after it and stop
259 text.erase(i.base() + 1, text.end());
260 break;
261 }
262 }
263
264 // do create the new control
265 HWND hwndEdit = ::CreateWindow
266 (
267 wxT("EDIT"),
268 wxTextBuffer::Translate(text).wx_str(),
269 WS_CHILD | WS_VSCROLL | WS_VISIBLE |
270 ES_MULTILINE | ES_READONLY | ES_AUTOVSCROLL,
271 rc.left, rc.top,
272 rc.right - rc.left, rc.bottom - rc.top,
273 GetHwnd(),
274 NULL,
275 wxGetInstance(),
276 NULL
277 );
278
279 if ( !hwndEdit )
280 {
281 wxLogDebug("Creation of replacement edit control failed in message box");
282 return;
283 }
284
285 // copy the font from the original control
286 LRESULT hfont = ::SendMessage(hwndStatic, WM_GETFONT, 0, 0);
287 ::SendMessage(hwndEdit, WM_SETFONT, hfont, 0);
288
289 // and get rid of it
290 ::DestroyWindow(hwndStatic);
291
292
293 // shrink and centre the message box vertically and widen it box to account
294 // for the extra scrollbar
295 RECT rcBox = wxGetWindowRect(GetHwnd());
296 const int hMsgBox = rcBox.bottom - rcBox.top - dh;
297 rcBox.top = (rectDisplay.height - hMsgBox)/2;
298 rcBox.bottom = rcBox.top + hMsgBox + (rectDisplay.height - hMsgBox)%2;
299 rcBox.left -= dw/2;
300 rcBox.right += dw - dw/2;
301 SetWindowRect(GetHwnd(), rcBox);
302
303 // and adjust all the buttons positions
304 for ( unsigned n = 0; n < WXSIZEOF(ms_buttons); n++ )
305 {
306 const HWND hwndBtn = ::GetDlgItem(GetHwnd(), ms_buttons[n].id);
307 if ( !hwndBtn )
308 continue; // it's ok, not all buttons are always present
309
310 RECT rc = wxGetWindowRect(hwndBtn);
311 rc.top -= dh;
312 rc.bottom -= dh;
313 rc.left += dw/2;
314 rc.right += dw/2;
315 MoveWindowToScreenRect(hwndBtn, rc);
316 }
317 }
318
319 void wxMessageDialog::AdjustButtonLabels()
320 {
321 // changing the button labels is the easy part but we also need to ensure
322 // that the buttons are big enough for the label strings and increase their
323 // size (and maybe the size of the message box itself) if they are not
324
325 // TODO-RTL: check whether this works correctly in RTL
326
327 // we want to use this font in GetTextExtent() calls below but we don't
328 // want to send WM_SETFONT to the message box, who knows how is it going to
329 // react to it (right now it doesn't seem to do anything but what if this
330 // changes)
331 wxWindowBase::SetFont(GetMessageFont());
332
333 // first iteration: find the widest button and update the buttons labels
334 int wBtnOld = 0, // current buttons width
335 wBtnNew = 0; // required new buttons width
336 RECT rcBtn; // stores the button height and y positions
337 unsigned numButtons = 0; // total number of buttons in the message box
338 unsigned n;
339 for ( n = 0; n < WXSIZEOF(ms_buttons); n++ )
340 {
341 const HWND hwndBtn = ::GetDlgItem(GetHwnd(), ms_buttons[n].id);
342 if ( !hwndBtn )
343 continue; // it's ok, not all buttons are always present
344
345 numButtons++;
346
347 const wxString label = (this->*ms_buttons[n].getter)();
348 const wxSize sizeLabel = wxWindowBase::GetTextExtent(label);
349
350 // check if the button is big enough for this label
351 const RECT rc = wxGetWindowRect(hwndBtn);
352 if ( !wBtnOld )
353 {
354 // initialize wBtnOld using the first button width, all the other
355 // ones should have the same one
356 wBtnOld = rc.right - rc.left;
357
358 rcBtn = rc; // remember for use below when we reposition the buttons
359 }
360 else
361 {
362 wxASSERT_MSG( wBtnOld == rc.right - rc.left,
363 "all buttons are supposed to be of same width" );
364 }
365
366 const int widthNeeded = wxMSWButton::GetFittingSize(this, sizeLabel).x;
367 if ( widthNeeded > wBtnNew )
368 wBtnNew = widthNeeded;
369
370 ::SetWindowText(hwndBtn, label.wx_str());
371 }
372
373 if ( wBtnNew <= wBtnOld )
374 {
375 // all buttons fit, nothing else to do
376 return;
377 }
378
379 // resize the message box to be wider if needed
380 const int wBoxOld = wxGetClientRect(GetHwnd()).right;
381
382 const int CHAR_WIDTH = GetCharWidth();
383 const int MARGIN_OUTER = 2*CHAR_WIDTH; // margin between box and buttons
384 const int MARGIN_INNER = CHAR_WIDTH; // margin between buttons
385
386 RECT rcBox = wxGetWindowRect(GetHwnd());
387
388 const int wAllButtons = numButtons*(wBtnNew + MARGIN_INNER) - MARGIN_INNER;
389 int wBoxNew = 2*MARGIN_OUTER + wAllButtons;
390 if ( wBoxNew > wBoxOld )
391 {
392 const int dw = wBoxNew - wBoxOld;
393 rcBox.left -= dw/2;
394 rcBox.right += dw - dw/2;
395
396 SetWindowRect(GetHwnd(), rcBox);
397
398 // surprisingly, we don't need to resize the static text control, it
399 // seems to adjust itself to the new size, at least under Windows 2003
400 // (TODO: test if this happens on older Windows versions)
401 }
402 else // the current width is big enough
403 {
404 wBoxNew = wBoxOld;
405 }
406
407
408 // finally position all buttons
409
410 // notice that we have to take into account the difference between window
411 // and client width
412 rcBtn.left = (rcBox.left + rcBox.right - wxGetClientRect(GetHwnd()).right +
413 wBoxNew - wAllButtons) / 2;
414 rcBtn.right = rcBtn.left + wBtnNew;
415
416 for ( n = 0; n < WXSIZEOF(ms_buttons); n++ )
417 {
418 const HWND hwndBtn = ::GetDlgItem(GetHwnd(), ms_buttons[n].id);
419 if ( !hwndBtn )
420 continue;
421
422 MoveWindowToScreenRect(hwndBtn, rcBtn);
423
424 rcBtn.left += wBtnNew + MARGIN_INNER;
425 rcBtn.right += wBtnNew + MARGIN_INNER;
426 }
427 }
428
429 #endif // wxUSE_MSGBOX_HOOK
430
431 /* static */
432 wxFont wxMessageDialog::GetMessageFont()
433 {
434 const NONCLIENTMETRICS& ncm = wxMSWImpl::GetNonClientMetrics();
435 return wxNativeFontInfo(ncm.lfMessageFont);
436 }
437
438 int wxMessageDialog::ShowMessageBox()
439 {
440 if ( !wxTheApp->GetTopWindow() )
441 {
442 // when the message box is shown from wxApp::OnInit() (i.e. before the
443 // message loop is entered), this must be done or the next message box
444 // will never be shown - just try putting 2 calls to wxMessageBox() in
445 // OnInit() to see it
446 while ( wxTheApp->Pending() )
447 wxTheApp->Dispatch();
448 }
449
450 // use the top level window as parent if none specified
451 m_parent = GetParentForModalDialog();
452 HWND hWnd = m_parent ? GetHwndOf(m_parent) : NULL;
453
454 #if wxUSE_INTL
455 // native message box always uses the current user locale but the program
456 // may be using a different one and in this case we need to manually
457 // translate the button labels to avoid mismatch between the language of
458 // the message box text and its buttons
459 wxLocale * const loc = wxGetLocale();
460 if ( loc && loc->GetLanguage() != wxLocale::GetSystemLanguage() )
461 {
462 if ( m_dialogStyle & wxYES_NO )
463 {
464 // use the strings with mnemonics here as the native message box
465 // does
466 SetYesNoLabels(_("&Yes"), _("&No"));
467 }
468
469 // we may or not have the Ok/Cancel buttons but either we do have them
470 // or we already made the labels custom because we called
471 // SetYesNoLabels() above so doing this does no harm -- and is
472 // necessary in wxYES_NO | wxCANCEL case
473 //
474 // note that we don't use mnemonics here for consistency with the
475 // native message box (which probably doesn't use them because
476 // Enter/Esc keys can be already used to dismiss the message box
477 // using keyboard)
478 SetOKCancelLabels(_("OK"), _("Cancel"));
479 }
480 #endif // wxUSE_INTL
481
482 // translate wx style in MSW
483 unsigned int msStyle;
484 const long wxStyle = GetMessageDialogStyle();
485 if ( wxStyle & wxYES_NO )
486 {
487 #if !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
488 if (wxStyle & wxCANCEL)
489 msStyle = MB_YESNOCANCEL;
490 else
491 #endif // !(__SMARTPHONE__ && __WXWINCE__)
492 msStyle = MB_YESNO;
493
494 if ( wxStyle & wxNO_DEFAULT )
495 msStyle |= MB_DEFBUTTON2;
496 else if ( wxStyle & wxCANCEL_DEFAULT )
497 msStyle |= MB_DEFBUTTON3;
498 }
499 else // without Yes/No we're going to have an OK button
500 {
501 if ( wxStyle & wxCANCEL )
502 {
503 msStyle = MB_OKCANCEL;
504
505 if ( wxStyle & wxCANCEL_DEFAULT )
506 msStyle |= MB_DEFBUTTON2;
507 }
508 else // just "OK"
509 {
510 msStyle = MB_OK;
511 }
512 }
513
514 // set the icon style
515 switch ( GetEffectiveIcon() )
516 {
517 case wxICON_ERROR:
518 msStyle |= MB_ICONHAND;
519 break;
520
521 case wxICON_WARNING:
522 msStyle |= MB_ICONEXCLAMATION;
523 break;
524
525 case wxICON_QUESTION:
526 msStyle |= MB_ICONQUESTION;
527 break;
528
529 case wxICON_INFORMATION:
530 msStyle |= MB_ICONINFORMATION;
531 break;
532 }
533
534 if ( wxStyle & wxSTAY_ON_TOP )
535 msStyle |= MB_TOPMOST;
536
537 #ifndef __WXWINCE__
538 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
539 msStyle |= MB_RTLREADING | MB_RIGHT;
540 #endif
541
542 if (hWnd)
543 msStyle |= MB_APPLMODAL;
544 else
545 msStyle |= MB_TASKMODAL;
546
547 // per MSDN documentation for MessageBox() we can prefix the message with 2
548 // right-to-left mark characters to tell the function to use RTL layout
549 // (unfortunately this only works in Unicode builds)
550 wxString message = GetFullMessage();
551 #if wxUSE_UNICODE
552 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
553 {
554 // NB: not all compilers support \u escapes
555 static const wchar_t wchRLM = 0x200f;
556 message.Prepend(wxString(wchRLM, 2));
557 }
558 #endif // wxUSE_UNICODE
559
560 #if wxUSE_MSGBOX_HOOK
561 // install the hook in any case as we don't know in advance if the message
562 // box is not going to be too big (requiring the replacement of the static
563 // control with an edit one)
564 const DWORD tid = ::GetCurrentThreadId();
565 m_hook = ::SetWindowsHookEx(WH_CBT,
566 &wxMessageDialog::HookFunction, NULL, tid);
567 HookMap()[tid] = this;
568 #endif // wxUSE_MSGBOX_HOOK
569
570 // do show the dialog
571 int msAns = MessageBox(hWnd, message.wx_str(), m_caption.wx_str(), msStyle);
572
573 return MSWTranslateReturnCode(msAns);
574 }
575
576 int wxMessageDialog::ShowTaskDialog()
577 {
578 #ifdef wxHAS_MSW_TASKDIALOG
579 TaskDialogIndirect_t taskDialogIndirect = GetTaskDialogIndirectFunc();
580 if ( !taskDialogIndirect )
581 return wxID_CANCEL;
582
583 WinStruct<TASKDIALOGCONFIG> tdc;
584 wxMSWTaskDialogConfig wxTdc( *this );
585 wxTdc.MSWCommonTaskDialogInit( tdc );
586
587 int msAns;
588 HRESULT hr = taskDialogIndirect( &tdc, &msAns, NULL, NULL );
589 if ( FAILED(hr) )
590 {
591 wxLogApiError( "TaskDialogIndirect", hr );
592 return wxID_CANCEL;
593 }
594
595 return MSWTranslateReturnCode( msAns );
596 #else
597 wxFAIL_MSG( "Task dialogs are unavailable." );
598
599 return wxID_CANCEL;
600 #endif // wxHAS_MSW_TASKDIALOG
601 }
602
603
604
605 int wxMessageDialog::ShowModal()
606 {
607 if ( HasNativeTaskDialog() )
608 return ShowTaskDialog();
609
610 return ShowMessageBox();
611 }
612
613 // ----------------------------------------------------------------------------
614 // Helpers of the wxMSWMessageDialog namespace
615 // ----------------------------------------------------------------------------
616
617 #ifdef wxHAS_MSW_TASKDIALOG
618
619 wxMSWTaskDialogConfig::wxMSWTaskDialogConfig(const wxMessageDialogBase& dlg)
620 : buttons(new TASKDIALOG_BUTTON[3])
621 {
622 parent = dlg.GetParentForModalDialog();
623 caption = dlg.GetCaption();
624 message = dlg.GetMessage();
625 extendedMessage = dlg.GetExtendedMessage();
626
627 // Before wxMessageDialog added support for extended message it was common
628 // practice to have long multiline texts in the message box with the first
629 // line playing the role of the main message and the rest of the extended
630 // one. Try to detect such usage automatically here by synthesizing the
631 // extended message on our own if it wasn't given.
632 if ( extendedMessage.empty() )
633 {
634 // Check if there is a blank separating line after the first line (this
635 // is not the same as searching for "\n\n" as we want the automatically
636 // recognized main message be single line to avoid embarrassing false
637 // positives).
638 const size_t posNL = message.find('\n');
639 if ( posNL != wxString::npos &&
640 posNL < message.length() - 1 &&
641 message[posNL + 1 ] == '\n' )
642 {
643 extendedMessage.assign(message, posNL + 2, wxString::npos);
644 message.erase(posNL);
645 }
646 }
647
648 iconId = dlg.GetEffectiveIcon();
649 style = dlg.GetMessageDialogStyle();
650 useCustomLabels = dlg.HasCustomLabels();
651 btnYesLabel = dlg.GetYesLabel();
652 btnNoLabel = dlg.GetNoLabel();
653 btnOKLabel = dlg.GetOKLabel();
654 btnCancelLabel = dlg.GetCancelLabel();
655 }
656
657 void wxMSWTaskDialogConfig::MSWCommonTaskDialogInit(TASKDIALOGCONFIG &tdc)
658 {
659 tdc.dwFlags = TDF_EXPAND_FOOTER_AREA | TDF_POSITION_RELATIVE_TO_WINDOW;
660 tdc.hInstance = wxGetInstance();
661 tdc.pszWindowTitle = caption.wx_str();
662
663 // use the top level window as parent if none specified
664 tdc.hwndParent = parent ? GetHwndOf(parent) : NULL;
665
666 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
667 tdc.dwFlags |= TDF_RTL_LAYOUT;
668
669 // If we have both the main and extended messages, just use them as
670 // intended. However if only one message is given we normally use it as the
671 // content and not as the main instruction because the latter is supposed
672 // to stand out compared to the former and doesn't look good if there is
673 // nothing for it to contrast with. Finally, notice that the extended
674 // message we use here might be automatically extracted from the main
675 // message in our ctor, see comment there.
676 if ( !extendedMessage.empty() )
677 {
678 tdc.pszMainInstruction = message.wx_str();
679 tdc.pszContent = extendedMessage.wx_str();
680 }
681 else
682 {
683 tdc.pszContent = message.wx_str();
684 }
685
686 // set an icon to be used, if possible
687 switch ( iconId )
688 {
689 case wxICON_ERROR:
690 tdc.pszMainIcon = TD_ERROR_ICON;
691 break;
692
693 case wxICON_WARNING:
694 tdc.pszMainIcon = TD_WARNING_ICON;
695 break;
696
697 case wxICON_INFORMATION:
698 tdc.pszMainIcon = TD_INFORMATION_ICON;
699 break;
700 }
701
702 // custom label button array that can hold all buttons in use
703 tdc.pButtons = buttons.get();
704
705 if ( style & wxYES_NO )
706 {
707 AddTaskDialogButton(tdc, IDYES, TDCBF_YES_BUTTON, btnYesLabel);
708 AddTaskDialogButton(tdc, IDNO, TDCBF_NO_BUTTON, btnNoLabel);
709
710 if (style & wxCANCEL)
711 AddTaskDialogButton(tdc, IDCANCEL,
712 TDCBF_CANCEL_BUTTON, btnCancelLabel);
713
714 if ( style & wxNO_DEFAULT )
715 tdc.nDefaultButton = IDNO;
716 else if ( style & wxCANCEL_DEFAULT )
717 tdc.nDefaultButton = IDCANCEL;
718 }
719 else // without Yes/No we're going to have an OK button
720 {
721 AddTaskDialogButton(tdc, IDOK, TDCBF_OK_BUTTON, btnOKLabel);
722
723 if ( style & wxCANCEL )
724 {
725 AddTaskDialogButton(tdc, IDCANCEL,
726 TDCBF_CANCEL_BUTTON, btnCancelLabel);
727
728 if ( style & wxCANCEL_DEFAULT )
729 tdc.nDefaultButton = IDCANCEL;
730 }
731 }
732 }
733
734 void wxMSWTaskDialogConfig::AddTaskDialogButton(TASKDIALOGCONFIG &tdc,
735 int btnCustomId,
736 int btnCommonId,
737 const wxString& customLabel)
738 {
739 if ( useCustomLabels )
740 {
741 // use custom buttons to implement custom labels
742 TASKDIALOG_BUTTON &tdBtn = buttons[tdc.cButtons];
743
744 tdBtn.nButtonID = btnCustomId;
745 tdBtn.pszButtonText = customLabel.wx_str();
746 tdc.cButtons++;
747 }
748 else
749 {
750 tdc.dwCommonButtons |= btnCommonId;
751 }
752 }
753
754 // Task dialog can be used from different threads (and wxProgressDialog always
755 // uses it from another thread in fact) so protect access to the static
756 // variable below with a critical section.
757 wxCRIT_SECT_DECLARE(gs_csTaskDialogIndirect);
758
759 TaskDialogIndirect_t wxMSWMessageDialog::GetTaskDialogIndirectFunc()
760 {
761 static TaskDialogIndirect_t s_TaskDialogIndirect = NULL;
762
763 wxCRIT_SECT_LOCKER(lock, gs_csTaskDialogIndirect);
764
765 if ( !s_TaskDialogIndirect )
766 {
767 wxLoadedDLL dllComCtl32("comctl32.dll");
768 wxDL_INIT_FUNC(s_, TaskDialogIndirect, dllComCtl32);
769
770 // We must always succeed as this code is only executed under Vista and
771 // later which must have task dialog support.
772 wxASSERT_MSG( s_TaskDialogIndirect,
773 "Task dialog support unexpectedly not available" );
774 }
775
776 return s_TaskDialogIndirect;
777 }
778
779 #endif // wxHAS_MSW_TASKDIALOG
780
781 bool wxMSWMessageDialog::HasNativeTaskDialog()
782 {
783 #ifdef wxHAS_MSW_TASKDIALOG
784 return wxGetWinVersion() >= wxWinVersion_6;
785 #else
786 return false;
787 #endif
788 }
789
790 int wxMSWMessageDialog::MSWTranslateReturnCode(int msAns)
791 {
792 int ans;
793 switch (msAns)
794 {
795 default:
796 wxFAIL_MSG(wxT("unexpected return code"));
797 // fall through
798
799 case IDCANCEL:
800 ans = wxID_CANCEL;
801 break;
802 case IDOK:
803 ans = wxID_OK;
804 break;
805 case IDYES:
806 ans = wxID_YES;
807 break;
808 case IDNO:
809 ans = wxID_NO;
810 break;
811 }
812
813 return ans;
814 }
815
816 #endif // wxUSE_MSGDLG