Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / include / vcl / msgbox.hxx
blobbc5f7b20e695e66bb898249964f06811163162fc
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_VCL_MSGBOX_HXX
21 #define INCLUDED_VCL_MSGBOX_HXX
23 #include <vcl/dllapi.h>
24 #include <vcl/btndlg.hxx>
25 #include <vcl/image.hxx>
26 #include <vcl/bitmap.hxx>
28 class VclMultiLineEdit;
29 class FixedImage;
30 class CheckBox;
32 class VCL_DLLPUBLIC MessBox : public ButtonDialog
34 protected:
35 VclMultiLineEdit* mpVCLMultiLineEdit;
36 FixedImage* mpFixedImage;
37 OUString maMessText;
38 Image maImage;
39 bool mbHelpBtn;
40 CheckBox* mpCheckBox;
41 OUString maCheckBoxText;
42 bool mbCheck;
44 SAL_DLLPRIVATE void ImplInitMessBoxData();
45 SAL_DLLPRIVATE void ImplInitButtons();
46 SAL_DLLPRIVATE void ImplPosControls();
48 protected:
49 SAL_DLLPRIVATE void ImplLoadRes( const ResId& rResId );
51 public:
52 MessBox( Window* pParent, WinBits nStyle,
53 const OUString& rTitle, const OUString& rMessage );
54 MessBox( Window* pParent, const ResId& rResId );
55 virtual ~MessBox();
57 virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
59 void SetMessText( const OUString& rText ) { maMessText = rText; }
60 const OUString& GetMessText() const { return maMessText; }
62 void SetImage( const Image& rImage ) { maImage = rImage; }
63 const Image& GetImage() const { return maImage; }
65 void SetCheckBoxText( const OUString& rText ) { maCheckBoxText = rText;}
66 const OUString& GetCheckBoxText() const { return maCheckBoxText;}
67 void SetCheckBoxState( bool bCheck );
68 bool GetCheckBoxState() const;
70 virtual Size GetOptimalSize() const SAL_OVERRIDE;
73 class VCL_DLLPUBLIC InfoBox : public MessBox
75 private:
76 SAL_DLLPRIVATE void ImplInitInfoBoxData();
78 public:
79 InfoBox( Window* pParent, const OUString& rMessage );
80 InfoBox( Window* pParent, const ResId & rResId );
81 InfoBox( Window* pParent, WinBits nStyle,
82 const OUString& rMessage );
84 static Image GetStandardImage();
87 class VCL_DLLPUBLIC WarningBox : public MessBox
89 private:
90 SAL_DLLPRIVATE void ImplInitWarningBoxData();
92 public:
93 WarningBox( Window* pParent, WinBits nStyle,
94 const OUString& rMessage );
95 WarningBox( Window* pParent, const ResId& rResId );
97 void SetDefaultCheckBoxText();
99 static Image GetStandardImage();
102 class VCL_DLLPUBLIC ErrorBox : public MessBox
104 private:
105 SAL_DLLPRIVATE void ImplInitErrorBoxData();
107 public:
108 ErrorBox( Window* pParent, WinBits nStyle,
109 const OUString& rMessage );
110 ErrorBox( Window* pParent, const ResId& rResId );
112 static Image GetStandardImage();
115 class VCL_DLLPUBLIC QueryBox : public MessBox
117 private:
118 SAL_DLLPRIVATE void ImplInitQueryBoxData();
120 public:
121 QueryBox( Window* pParent, WinBits nStyle,
122 const OUString& rMessage );
123 QueryBox( Window* pParent, const ResId& rResId );
125 void SetDefaultCheckBoxText();
127 static Image GetStandardImage();
130 #endif // INCLUDED_VCL_MSGBOX_HXX
132 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */