Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <tools/rc.h>
21 :
22 : #include <svids.hrc>
23 : #include <svdata.hxx>
24 : #include <brdwin.hxx>
25 : #include <window.h>
26 :
27 : #include <vcl/metric.hxx>
28 : #include <vcl/svapp.hxx>
29 : #include <vcl/wrkwin.hxx>
30 : #include <vcl/fixed.hxx>
31 : #include <vcl/vclmedit.hxx>
32 : #include <vcl/msgbox.hxx>
33 : #include <vcl/button.hxx>
34 : #include <vcl/mnemonic.hxx>
35 : #include <vcl/settings.hxx>
36 :
37 0 : static void ImplInitMsgBoxImageList()
38 : {
39 0 : ImplSVData* pSVData = ImplGetSVData();
40 0 : if ( !pSVData->maWinData.mpMsgBoxImgList )
41 : {
42 0 : ResMgr* pResMgr = ImplGetResMgr();
43 0 : pSVData->maWinData.mpMsgBoxImgList = new ImageList(4);
44 0 : if( pResMgr )
45 : {
46 0 : Color aNonAlphaMask( 0xC0, 0xC0, 0xC0 );
47 : pSVData->maWinData.mpMsgBoxImgList->InsertFromHorizontalBitmap
48 0 : ( ResId( SV_RESID_BITMAP_MSGBOX, *pResMgr ), 4, &aNonAlphaMask );
49 : }
50 : }
51 0 : }
52 :
53 0 : void MessBox::ImplInitMessBoxData()
54 : {
55 0 : mpVCLMultiLineEdit = NULL;
56 0 : mpFixedImage = NULL;
57 0 : mbHelpBtn = false;
58 0 : mpCheckBox = NULL;
59 0 : mbCheck = false;
60 0 : }
61 :
62 0 : void MessBox::ImplInitButtons()
63 : {
64 0 : WinBits nStyle = GetStyle();
65 0 : sal_uInt16 nOKFlags = BUTTONDIALOG_OKBUTTON;
66 0 : sal_uInt16 nCancelFlags = BUTTONDIALOG_CANCELBUTTON;
67 0 : sal_uInt16 nRetryFlags = 0;
68 0 : sal_uInt16 nYesFlags = 0;
69 0 : sal_uInt16 nNoFlags = 0;
70 :
71 0 : if ( nStyle & WB_OK_CANCEL )
72 : {
73 0 : if ( nStyle & WB_DEF_CANCEL )
74 0 : nCancelFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
75 : else // WB_DEF_OK
76 0 : nOKFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
77 :
78 0 : AddButton( BUTTON_OK, RET_OK, nOKFlags );
79 0 : AddButton( BUTTON_CANCEL, RET_CANCEL, nCancelFlags );
80 : }
81 0 : else if ( nStyle & WB_YES_NO )
82 : {
83 0 : if ( nStyle & WB_DEF_YES )
84 0 : nYesFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
85 : else // WB_DEF_NO
86 0 : nNoFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
87 0 : nNoFlags |= BUTTONDIALOG_CANCELBUTTON;
88 :
89 0 : AddButton( BUTTON_YES, RET_YES, nYesFlags );
90 0 : AddButton( BUTTON_NO, RET_NO, nNoFlags );
91 : }
92 0 : else if ( nStyle & WB_YES_NO_CANCEL )
93 : {
94 0 : if ( nStyle & WB_DEF_YES )
95 0 : nYesFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
96 0 : else if ( nStyle & WB_DEF_NO )
97 0 : nNoFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
98 : else
99 0 : nCancelFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
100 :
101 0 : AddButton( BUTTON_YES, RET_YES, nYesFlags );
102 0 : AddButton( BUTTON_NO, RET_NO, nNoFlags );
103 0 : AddButton( BUTTON_CANCEL, RET_CANCEL, nCancelFlags );
104 : }
105 0 : else if ( nStyle & WB_RETRY_CANCEL )
106 : {
107 0 : if ( nStyle & WB_DEF_CANCEL )
108 0 : nCancelFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
109 : else // WB_DEF_RETRY
110 0 : nRetryFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
111 :
112 0 : AddButton( BUTTON_RETRY, RET_RETRY, nRetryFlags );
113 0 : AddButton( BUTTON_CANCEL, RET_CANCEL, nCancelFlags );
114 : }
115 0 : else if ( nStyle & WB_ABORT_RETRY_IGNORE )
116 : {
117 0 : sal_uInt16 nAbortFlags = 0;
118 0 : sal_uInt16 nIgnoreFlags = 0;
119 :
120 0 : if ( nStyle & WB_DEF_CANCEL )
121 0 : nAbortFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
122 0 : else if ( nStyle & WB_DEF_RETRY )
123 0 : nRetryFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
124 0 : else if ( nStyle & WB_DEF_IGNORE )
125 0 : nIgnoreFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
126 :
127 0 : AddButton( BUTTON_ABORT, RET_CANCEL, nAbortFlags );
128 0 : AddButton( BUTTON_RETRY, RET_RETRY, nRetryFlags );
129 0 : AddButton( BUTTON_IGNORE, RET_IGNORE, nIgnoreFlags );
130 : }
131 0 : else if ( nStyle & WB_OK )
132 : {
133 0 : nOKFlags |= BUTTONDIALOG_DEFBUTTON | BUTTONDIALOG_FOCUSBUTTON;
134 :
135 0 : AddButton( BUTTON_OK, RET_OK, nOKFlags );
136 : }
137 0 : }
138 :
139 0 : MessBox::MessBox( vcl::Window* pParent, WinBits nStyle,
140 : const OUString& rTitle, const OUString& rMessage ) :
141 : ButtonDialog( WINDOW_MESSBOX ),
142 0 : maMessText( rMessage )
143 : {
144 0 : ImplInitMessBoxData();
145 0 : ImplInit( pParent, nStyle | WB_MOVEABLE | WB_HORZ | WB_CENTER );
146 0 : ImplInitButtons();
147 :
148 0 : if ( !rTitle.isEmpty() )
149 0 : SetText( rTitle );
150 0 : }
151 :
152 0 : MessBox::~MessBox()
153 : {
154 0 : delete mpVCLMultiLineEdit;
155 0 : delete mpFixedImage;
156 0 : delete mpCheckBox;
157 0 : }
158 :
159 0 : void MessBox::ImplPosControls()
160 : {
161 0 : if ( !GetHelpId().isEmpty() )
162 : {
163 0 : if ( !mbHelpBtn )
164 : {
165 0 : AddButton( BUTTON_HELP, RET_HELP, BUTTONDIALOG_HELPBUTTON, 3 );
166 0 : mbHelpBtn = true;
167 : }
168 : }
169 : else
170 : {
171 0 : if ( mbHelpBtn )
172 : {
173 0 : RemoveButton( RET_HELP );
174 0 : mbHelpBtn = false;
175 : }
176 : }
177 :
178 0 : TextRectInfo aTextInfo;
179 0 : Rectangle aRect( 0, 0, 30000, 30000 );
180 0 : Rectangle aFormatRect;
181 0 : Point aTextPos( IMPL_DIALOG_OFFSET, IMPL_DIALOG_OFFSET+IMPL_MSGBOX_OFFSET_EXTRA_Y );
182 0 : Size aImageSize;
183 0 : Size aPageSize;
184 0 : Size aMEditSize;
185 : long nTitleWidth;
186 0 : long nButtonSize = ImplGetButtonSize();
187 0 : long nMaxWidth = GetDesktopRectPixel().GetWidth()-8;
188 : long nMaxLineWidth;
189 : long nWidth;
190 0 : WinBits nWinStyle = WB_LEFT | WB_NOLABEL;
191 0 : sal_uInt16 nTextStyle = TEXT_DRAW_MULTILINE | TEXT_DRAW_TOP | TEXT_DRAW_LEFT;
192 :
193 0 : delete mpVCLMultiLineEdit;
194 0 : if ( mpFixedImage )
195 : {
196 0 : delete mpFixedImage;
197 0 : mpFixedImage = NULL;
198 : }
199 0 : if ( mpCheckBox )
200 : {
201 0 : mbCheck = mpCheckBox->IsChecked();
202 0 : delete mpCheckBox;
203 0 : mpCheckBox = NULL;
204 : }
205 :
206 : // Clean up message text with tabs
207 0 : OUString aMessText(maMessText.replaceAll("\t", " "));
208 :
209 : //If window too small, we make dialog box be wider
210 0 : if ( mpWindowImpl->mbFrame )
211 : {
212 0 : nMaxWidth = 630 * GetDPIScaleFactor();
213 : }
214 0 : else if ( nMaxWidth < 120 )
215 0 : nMaxWidth = 120;
216 :
217 0 : nMaxWidth -= mpWindowImpl->mnLeftBorder+mpWindowImpl->mnRightBorder+4;
218 :
219 : // MessagBox should be at least as wide as to see the title
220 : // Extra-Width for Close button, because Close button is set after this call
221 0 : nTitleWidth = CalcTitleWidth();
222 0 : nTitleWidth += mpWindowImpl->mnTopBorder;
223 :
224 0 : nMaxWidth -= (IMPL_DIALOG_OFFSET*2)+(IMPL_MSGBOX_OFFSET_EXTRA_X*2);
225 :
226 : // for an image, get its size, create a suitable control and position it
227 0 : aImageSize = maImage.GetSizePixel();
228 0 : if ( aImageSize.Width() )
229 : {
230 0 : aImageSize.Width() += 4;
231 0 : aImageSize.Height() += 4;
232 0 : aTextPos.X() += aImageSize.Width()+IMPL_SEP_MSGBOX_IMAGE;
233 0 : mpFixedImage = new FixedImage( this );
234 : mpFixedImage->SetPosSizePixel( Point( IMPL_DIALOG_OFFSET-2+IMPL_MSGBOX_OFFSET_EXTRA_X,
235 : IMPL_DIALOG_OFFSET-2+IMPL_MSGBOX_OFFSET_EXTRA_Y ),
236 0 : aImageSize );
237 0 : mpFixedImage->SetImage( maImage );
238 0 : mpFixedImage->Show();
239 0 : nMaxWidth -= aImageSize.Width()+IMPL_SEP_MSGBOX_IMAGE;
240 : }
241 : else
242 0 : aTextPos.X() += IMPL_MSGBOX_OFFSET_EXTRA_X;
243 :
244 : // Determine maximum line length without wordbreak
245 0 : aFormatRect = GetTextRect( aRect, aMessText, nTextStyle, &aTextInfo );
246 0 : nMaxLineWidth = aFormatRect.GetWidth();
247 0 : nTextStyle |= TEXT_DRAW_WORDBREAK;
248 :
249 : // Determine the width for text formatting
250 0 : if ( nMaxLineWidth > 450 )
251 0 : nWidth = 450;
252 0 : else if ( nMaxLineWidth > 300 )
253 0 : nWidth = nMaxLineWidth+5;
254 : else
255 0 : nWidth = 300;
256 :
257 0 : nWidth *= GetDPIScaleFactor();
258 :
259 0 : if ( nButtonSize > nWidth )
260 0 : nWidth = nButtonSize-(aTextPos.X()-IMPL_DIALOG_OFFSET);
261 0 : if ( nWidth > nMaxWidth )
262 0 : nWidth = nMaxWidth;
263 :
264 0 : aRect.Right() = nWidth;
265 0 : aFormatRect = GetTextRect( aRect, aMessText, nTextStyle, &aTextInfo );
266 0 : if ( aTextInfo.GetMaxLineWidth() > nWidth )
267 : {
268 0 : nWidth = aTextInfo.GetMaxLineWidth()+8;
269 0 : aRect.Right() = nWidth;
270 0 : aFormatRect = GetTextRect( aRect, aMessText, nTextStyle, &aTextInfo );
271 : }
272 :
273 : // get Style for VCLMultiLineEdit
274 0 : aMEditSize.Width() = aTextInfo.GetMaxLineWidth()+1;
275 0 : aMEditSize.Height() = aFormatRect.GetHeight();
276 0 : aPageSize.Width() = aImageSize.Width();
277 0 : if ( aMEditSize.Height() < aImageSize.Height() )
278 : {
279 0 : nWinStyle |= WB_VCENTER;
280 0 : aPageSize.Height() = aImageSize.Height();
281 0 : aMEditSize.Height() = aImageSize.Height();
282 : }
283 : else
284 : {
285 0 : nWinStyle |= WB_TOP;
286 0 : aPageSize.Height() = aMEditSize.Height();
287 : }
288 0 : if ( aImageSize.Width() )
289 0 : aPageSize.Width() += IMPL_SEP_MSGBOX_IMAGE;
290 0 : aPageSize.Width() += (IMPL_DIALOG_OFFSET*2)+(IMPL_MSGBOX_OFFSET_EXTRA_X*2);
291 0 : aPageSize.Width() += aMEditSize.Width()+1;
292 0 : aPageSize.Height() += (IMPL_DIALOG_OFFSET*2)+(IMPL_MSGBOX_OFFSET_EXTRA_Y*2);
293 :
294 0 : if ( aPageSize.Width() < IMPL_MINSIZE_MSGBOX_WIDTH )
295 0 : aPageSize.Width() = IMPL_MINSIZE_MSGBOX_WIDTH;
296 0 : if ( aPageSize.Width() < nTitleWidth )
297 0 : aPageSize.Width() = nTitleWidth;
298 :
299 0 : if ( !maCheckBoxText.isEmpty() )
300 : {
301 0 : Size aMinCheckboxSize ( aMEditSize );
302 0 : if ( aPageSize.Width() < IMPL_MINSIZE_MSGBOX_WIDTH+80 )
303 : {
304 0 : aPageSize.Width() = IMPL_MINSIZE_MSGBOX_WIDTH+80;
305 0 : aMinCheckboxSize.Width() += 80;
306 : }
307 :
308 : // #104492# auto mnemonics for CJK strings may increase the length, so measure the
309 : // checkbox length including a temporary mnemonic, the correct auto mnemonic will be
310 : // generated later in the dialog (see init_show)
311 :
312 0 : OUString aMnemonicString( maCheckBoxText );
313 0 : if( GetSettings().GetStyleSettings().GetAutoMnemonic() )
314 : {
315 0 : if( aMnemonicString == GetNonMnemonicString( maCheckBoxText ) )
316 : {
317 : // no mnemonic found -> create one
318 0 : MnemonicGenerator aMnemonicGenerator;
319 0 : aMnemonicString = aMnemonicGenerator.CreateMnemonic( aMnemonicString );
320 : }
321 : }
322 :
323 0 : mpCheckBox = new CheckBox( this );
324 0 : mpCheckBox->Check( mbCheck );
325 0 : mpCheckBox->SetText( aMnemonicString );
326 0 : mpCheckBox->SetStyle( mpCheckBox->GetStyle() | WB_WORDBREAK );
327 0 : mpCheckBox->SetHelpId( GetHelpId() ); // DR: Check box and dialog have same HID
328 :
329 : // align checkbox with message text
330 0 : Size aSize = mpCheckBox->CalcMinimumSize( aMinCheckboxSize.Width() );
331 :
332 : // now set the original non-mnemonic string
333 0 : mpCheckBox->SetText( maCheckBoxText );
334 :
335 0 : Point aPos( aTextPos );
336 0 : aPos.Y() += aMEditSize.Height() + (IMPL_DIALOG_OFFSET)+(IMPL_MSGBOX_OFFSET_EXTRA_Y*2);
337 :
338 : // increase messagebox
339 0 : aPageSize.Height() += aSize.Height() + (IMPL_DIALOG_OFFSET*2)+(IMPL_MSGBOX_OFFSET_EXTRA_Y*2);
340 :
341 0 : mpCheckBox->SetPosSizePixel( aPos, aSize );
342 0 : mpCheckBox->Show();
343 : }
344 :
345 0 : mpVCLMultiLineEdit = new VclMultiLineEdit( this, nWinStyle );
346 0 : mpVCLMultiLineEdit->SetText( aMessText );
347 0 : mpVCLMultiLineEdit->SetPosSizePixel( aTextPos, aMEditSize );
348 0 : mpVCLMultiLineEdit->Show();
349 0 : mpVCLMultiLineEdit->SetPaintTransparent(true);
350 0 : mpVCLMultiLineEdit->EnableCursor(false);
351 0 : SetPageSizePixel( aPageSize );
352 0 : }
353 :
354 0 : void MessBox::StateChanged( StateChangedType nType )
355 : {
356 0 : if ( nType == StateChangedType::INITSHOW )
357 : {
358 0 : ImplPosControls();
359 : }
360 0 : ButtonDialog::StateChanged( nType );
361 0 : }
362 :
363 0 : bool MessBox::GetCheckBoxState() const
364 : {
365 0 : return mpCheckBox ? mpCheckBox->IsChecked() : mbCheck;
366 : }
367 :
368 0 : void MessBox::SetCheckBoxState( bool bCheck )
369 : {
370 0 : if( mpCheckBox ) mpCheckBox->Check( bCheck );
371 0 : mbCheck = bCheck;
372 0 : }
373 :
374 0 : Size MessBox::GetOptimalSize() const
375 : {
376 : // FIXME: base me on the font size ?
377 0 : return Size( 250, 100 );
378 : }
379 :
380 0 : void InfoBox::ImplInitInfoBoxData()
381 : {
382 : // Default Text is the display title from the application
383 0 : if ( GetText().isEmpty() )
384 0 : SetText( Application::GetDisplayName() );
385 :
386 0 : SetImage( InfoBox::GetStandardImage() );
387 0 : }
388 :
389 0 : InfoBox::InfoBox( vcl::Window* pParent, const OUString& rMessage ) :
390 0 : MessBox( pParent, WB_OK | WB_DEF_OK, OUString(), rMessage )
391 : {
392 0 : ImplInitInfoBoxData();
393 0 : }
394 :
395 0 : InfoBox::InfoBox( vcl::Window* pParent, WinBits nStyle, const OUString& rMessage ) :
396 0 : MessBox( pParent, nStyle, OUString(), rMessage )
397 : {
398 0 : ImplInitInfoBoxData();
399 0 : }
400 :
401 0 : Image InfoBox::GetStandardImage()
402 : {
403 0 : ImplInitMsgBoxImageList();
404 0 : return ImplGetSVData()->maWinData.mpMsgBoxImgList->GetImage( 4 );
405 : }
406 :
407 0 : void WarningBox::ImplInitWarningBoxData()
408 : {
409 : // Default Text is the display title from the application
410 0 : if ( GetText().isEmpty() )
411 0 : SetText( Application::GetDisplayName() );
412 :
413 0 : SetImage( WarningBox::GetStandardImage() );
414 0 : }
415 :
416 0 : WarningBox::WarningBox( vcl::Window* pParent, WinBits nStyle,
417 : const OUString& rMessage ) :
418 0 : MessBox( pParent, nStyle, OUString(), rMessage )
419 : {
420 0 : ImplInitWarningBoxData();
421 0 : }
422 :
423 0 : void WarningBox::SetDefaultCheckBoxText()
424 : {
425 0 : ResMgr* pResMgr = ImplGetResMgr();
426 0 : if( pResMgr )
427 0 : maCheckBoxText = ResId(SV_STDTEXT_DONTWARNAGAIN, *pResMgr).toString();
428 0 : }
429 :
430 0 : Image WarningBox::GetStandardImage()
431 : {
432 0 : ImplInitMsgBoxImageList();
433 0 : return ImplGetSVData()->maWinData.mpMsgBoxImgList->GetImage( 3 );
434 : }
435 :
436 0 : void ErrorBox::ImplInitErrorBoxData()
437 : {
438 : // Default Text is the display title from the application
439 0 : if ( GetText().isEmpty() )
440 0 : SetText( Application::GetDisplayName() );
441 :
442 0 : SetImage( ErrorBox::GetStandardImage() );
443 0 : }
444 :
445 0 : ErrorBox::ErrorBox( vcl::Window* pParent, WinBits nStyle,
446 : const OUString& rMessage ) :
447 0 : MessBox( pParent, nStyle, OUString(), rMessage )
448 : {
449 0 : ImplInitErrorBoxData();
450 0 : }
451 :
452 0 : Image ErrorBox::GetStandardImage()
453 : {
454 : try
455 : {
456 0 : ImplInitMsgBoxImageList();
457 : }
458 0 : catch (const ::com::sun::star::uno::Exception &)
459 : {
460 : // During early bootstrap we can have no initialized
461 : // ucb and hence no ability to get this image, so nop.
462 0 : return Image();
463 : }
464 0 : return ImplGetSVData()->maWinData.mpMsgBoxImgList->GetImage( 1 );
465 : }
466 :
467 0 : void QueryBox::ImplInitQueryBoxData()
468 : {
469 : // Default Text is the display title from the application
470 0 : if ( GetText().isEmpty() )
471 0 : SetText( Application::GetDisplayName() );
472 :
473 0 : SetImage( QueryBox::GetStandardImage() );
474 0 : }
475 :
476 0 : QueryBox::QueryBox( vcl::Window* pParent, WinBits nStyle, const OUString& rMessage ) :
477 0 : MessBox( pParent, nStyle, OUString(), rMessage )
478 : {
479 0 : ImplInitQueryBoxData();
480 0 : }
481 :
482 0 : void QueryBox::SetDefaultCheckBoxText()
483 : {
484 0 : ResMgr* pResMgr = ImplGetResMgr();
485 0 : if( pResMgr )
486 0 : maCheckBoxText = ResId(SV_STDTEXT_DONTASKAGAIN, *pResMgr).toString();
487 0 : }
488 :
489 0 : Image QueryBox::GetStandardImage()
490 : {
491 0 : ImplInitMsgBoxImageList();
492 0 : return ImplGetSVData()->maWinData.mpMsgBoxImgList->GetImage( 2 );
493 1233 : }
494 :
495 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|