Bump version to 4.1-6
[LibreOffice.git] / sfx2 / source / inc / inputdlg.hxx
blob6cc8b01becdc9dda83d84824a0d28a9ce3159f1d
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/.
8 */
10 #ifndef INPUTDLG_HXX
11 #define INPUTDLG_HXX
13 #include <vcl/dialog.hxx>
15 class Edit;
16 class FixedText;
17 class PushButton;
19 class InputDialog : public ModalDialog
21 public:
23 InputDialog (const OUString &labelText, Window *pParent = NULL);
25 virtual ~InputDialog();
27 OUString getEntryText () const;
29 private:
31 DECL_LINK(ClickHdl, PushButton*);
33 private:
35 Edit *mpEntry;
36 FixedText *mpLabel;
37 PushButton *mpOK;
38 PushButton *mpCancel;
41 #endif // INPUTDLG_HXX
43 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */