Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / vcl / msgbox.hxx
bloba76b88e4f265d3c598daf575b46c6becd6a6b204
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 VclPtr<VclMultiLineEdit> mpVCLMultiLineEdit;
35 VclPtr<FixedImage> mpFixedImage;
36 Image maImage;
37 bool mbHelpBtn;
38 bool mbCheck;
40 protected:
41 OUString maMessText;
42 VclPtr<CheckBox> mpCheckBox;
43 OUString maCheckBoxText;
45 SAL_DLLPRIVATE void ImplInitButtons();
46 SAL_DLLPRIVATE void ImplPosControls();
48 public:
49 MessBox( vcl::Window* pParent, WinBits nStyle,
50 const OUString& rTitle, const OUString& rMessage );
51 virtual ~MessBox() override;
52 virtual void dispose() override;
54 virtual void StateChanged( StateChangedType nStateChange ) override;
56 void SetMessText( const OUString& rText ) { maMessText = rText; }
57 const OUString& GetMessText() const { return maMessText; }
59 void SetImage( const Image& rImage ) { maImage = rImage; }
61 void SetCheckBoxText( const OUString& rText ) { maCheckBoxText = rText;}
62 void SetCheckBoxState( bool bCheck );
63 bool GetCheckBoxState() const;
65 virtual Size GetOptimalSize() const override;
68 class VCL_DLLPUBLIC InfoBox : public MessBox
70 public:
71 InfoBox( vcl::Window* pParent, const OUString& rMessage );
72 InfoBox( vcl::Window* pParent, WinBits nStyle,
73 const OUString& rMessage );
75 static Image GetStandardImage();
78 class VCL_DLLPUBLIC WarningBox : public MessBox
80 public:
81 WarningBox( vcl::Window* pParent, WinBits nStyle,
82 const OUString& rMessage );
84 void SetDefaultCheckBoxText();
86 static Image GetStandardImage();
89 class VCL_DLLPUBLIC ErrorBox : public MessBox
91 public:
92 ErrorBox( vcl::Window* pParent, WinBits nStyle,
93 const OUString& rMessage );
95 static Image GetStandardImage();
98 class VCL_DLLPUBLIC QueryBox : public MessBox
100 public:
101 QueryBox( vcl::Window* pParent, WinBits nStyle,
102 const OUString& rMessage );
104 void SetDefaultCheckBoxText();
106 static Image GetStandardImage();
109 #endif // INCLUDED_VCL_MSGBOX_HXX
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */