Bump version to 6.4.7.2.M8
[LibreOffice.git] / cui / source / inc / SignatureLineDialog.hxx
blobfd671acd51fd5b1daab84c6ab1b39a85323f468c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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 */
9 #ifndef INCLUDED_CUI_INC_SIGNATURELINEDIALOG_HXX
10 #define INCLUDED_CUI_INC_SIGNATURELINEDIALOG_HXX
12 #include "SignatureLineDialogBase.hxx"
14 #include <com/sun/star/beans/XPropertySet.hpp>
15 #include <com/sun/star/uno/Reference.hxx>
17 class SignatureLineDialog : public SignatureLineDialogBase
19 public:
20 SignatureLineDialog(weld::Widget* pParent, css::uno::Reference<css::frame::XModel> xModel,
21 bool bEditExisting);
23 private:
24 std::unique_ptr<weld::Entry> m_xEditName;
25 std::unique_ptr<weld::Entry> m_xEditTitle;
26 std::unique_ptr<weld::Entry> m_xEditEmail;
27 std::unique_ptr<weld::TextView> m_xEditInstructions;
28 std::unique_ptr<weld::CheckButton> m_xCheckboxCanAddComments;
29 std::unique_ptr<weld::CheckButton> m_xCheckboxShowSignDate;
31 css::uno::Reference<css::beans::XPropertySet> m_xExistingShapeProperties;
32 OUString m_aSignatureLineId;
34 virtual void Apply() override;
37 #endif
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */