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 : #ifndef INCLUDED_VCL_MSGBOX_HXX
21 : #define INCLUDED_VCL_MSGBOX_HXX
22 :
23 : #include <vcl/dllapi.h>
24 : #include <vcl/btndlg.hxx>
25 : #include <vcl/image.hxx>
26 : #include <vcl/bitmap.hxx>
27 :
28 : class VclMultiLineEdit;
29 : class FixedImage;
30 : class CheckBox;
31 :
32 : class VCL_DLLPUBLIC MessBox : public ButtonDialog
33 : {
34 : protected:
35 : VclPtr<VclMultiLineEdit> mpVCLMultiLineEdit;
36 : VclPtr<FixedImage> mpFixedImage;
37 : OUString maMessText;
38 : Image maImage;
39 : bool mbHelpBtn;
40 : VclPtr<CheckBox> mpCheckBox;
41 : OUString maCheckBoxText;
42 : bool mbCheck;
43 :
44 : SAL_DLLPRIVATE void ImplInitMessBoxData();
45 : SAL_DLLPRIVATE void ImplInitButtons();
46 : SAL_DLLPRIVATE void ImplPosControls();
47 :
48 : public:
49 : MessBox( vcl::Window* pParent, WinBits nStyle,
50 : const OUString& rTitle, const OUString& rMessage );
51 : virtual ~MessBox();
52 : virtual void dispose() SAL_OVERRIDE;
53 :
54 : virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
55 :
56 0 : void SetMessText( const OUString& rText ) { maMessText = rText; }
57 0 : const OUString& GetMessText() const { return maMessText; }
58 :
59 0 : void SetImage( const Image& rImage ) { maImage = rImage; }
60 : const Image& GetImage() const { return maImage; }
61 :
62 0 : void SetCheckBoxText( const OUString& rText ) { maCheckBoxText = rText;}
63 : const OUString& GetCheckBoxText() const { return maCheckBoxText;}
64 : void SetCheckBoxState( bool bCheck );
65 : bool GetCheckBoxState() const;
66 :
67 : virtual Size GetOptimalSize() const SAL_OVERRIDE;
68 : };
69 :
70 0 : class VCL_DLLPUBLIC InfoBox : public MessBox
71 : {
72 : private:
73 : SAL_DLLPRIVATE void ImplInitInfoBoxData();
74 :
75 : public:
76 : InfoBox( vcl::Window* pParent, const OUString& rMessage );
77 : InfoBox( vcl::Window* pParent, WinBits nStyle,
78 : const OUString& rMessage );
79 :
80 : static Image GetStandardImage();
81 : };
82 :
83 0 : class VCL_DLLPUBLIC WarningBox : public MessBox
84 : {
85 : private:
86 : SAL_DLLPRIVATE void ImplInitWarningBoxData();
87 :
88 : public:
89 : WarningBox( vcl::Window* pParent, WinBits nStyle,
90 : const OUString& rMessage );
91 :
92 : void SetDefaultCheckBoxText();
93 :
94 : static Image GetStandardImage();
95 : };
96 :
97 0 : class VCL_DLLPUBLIC ErrorBox : public MessBox
98 : {
99 : private:
100 : SAL_DLLPRIVATE void ImplInitErrorBoxData();
101 :
102 : public:
103 : ErrorBox( vcl::Window* pParent, WinBits nStyle,
104 : const OUString& rMessage );
105 :
106 : static Image GetStandardImage();
107 : };
108 :
109 0 : class VCL_DLLPUBLIC QueryBox : public MessBox
110 : {
111 : private:
112 : SAL_DLLPRIVATE void ImplInitQueryBoxData();
113 :
114 : public:
115 : QueryBox( vcl::Window* pParent, WinBits nStyle,
116 : const OUString& rMessage );
117 :
118 : void SetDefaultCheckBoxText();
119 :
120 : static Image GetStandardImage();
121 : };
122 :
123 : #endif // INCLUDED_VCL_MSGBOX_HXX
124 :
125 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|