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 :
10 : #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SWMESSDIALOG_HXX
11 : #define INCLUDED_SW_SOURCE_UIBASE_INC_SWMESSDIALOG_HXX
12 :
13 : #include <vcl/dialog.hxx>
14 :
15 : class Edit;
16 : class FixedImage;
17 : class OKButton;
18 : class VclMultiLineEdit;
19 :
20 0 : class SwMessageAndEditDialog : public ModalDialog
21 : {
22 : protected:
23 : OKButton* m_pOKPB;
24 : FixedImage* m_pImageIM;
25 : VclMultiLineEdit* m_pPrimaryMessage;
26 : VclMultiLineEdit* m_pSecondaryMessage;
27 : Edit* m_pEdit;
28 : public:
29 : SwMessageAndEditDialog(vcl::Window* pParent, const OString& rID,
30 : const OUString& rUIXMLDescription);
31 : };
32 :
33 : #endif // INCLUDED_SW_SOURCE_UIBASE_INC_SWMESSDIALOG_HXX
34 :
35 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|