LibreOffice Module writerperfect (master) 1
EPUBExportDialog.hxx
Go to the documentation of this file.
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#pragma once
11
12#include <vcl/weld.hxx>
13#include <com/sun/star/uno/XComponentContext.hpp>
14#include <com/sun/star/lang/XComponent.hpp>
15
16namespace comphelper
17{
18class SequenceAsHashMap;
19}
20
21namespace writerperfect
22{
25{
26public:
28 css::uno::Reference<css::uno::XComponentContext> xContext,
29 css::uno::Reference<css::lang::XComponent> xDocument);
31
32private:
33 DECL_LINK(VersionSelectHdl, weld::ComboBox&, void);
34 DECL_LINK(SplitSelectHdl, weld::ComboBox&, void);
35 DECL_LINK(LayoutSelectHdl, weld::ComboBox&, void);
36 DECL_LINK(CoverClickHdl, weld::Button&, void);
37 DECL_LINK(MediaClickHdl, weld::Button&, void);
38 DECL_LINK(OKClickHdl, weld::Button&, void);
39
40 css::uno::Reference<css::uno::XComponentContext> m_xContext;
42 css::uno::Reference<css::lang::XComponent> m_xSourceDocument;
43
44 std::unique_ptr<weld::ComboBox> m_xVersion;
45 std::unique_ptr<weld::ComboBox> m_xSplit;
46 std::unique_ptr<weld::ComboBox> m_xLayout;
47 std::unique_ptr<weld::Entry> m_xCoverPath;
48 std::unique_ptr<weld::Button> m_xCoverButton;
49 std::unique_ptr<weld::Entry> m_xMediaDir;
50 std::unique_ptr<weld::Button> m_xMediaButton;
51 std::unique_ptr<weld::Button> m_xOKButton;
52 std::unique_ptr<weld::Entry> m_xIdentifier;
53 std::unique_ptr<weld::Entry> m_xTitle;
54 std::unique_ptr<weld::Entry> m_xInitialCreator;
55 std::unique_ptr<weld::Entry> m_xLanguage;
56 std::unique_ptr<weld::Entry> m_xDate;
57 std::unique_ptr<weld::Frame> m_xCustomizeFrame;
58};
59
60} // namespace writerperfect
61
62/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
EPUB export options dialog.
std::unique_ptr< weld::Entry > m_xTitle
std::unique_ptr< weld::Frame > m_xCustomizeFrame
std::unique_ptr< weld::Entry > m_xLanguage
std::unique_ptr< weld::ComboBox > m_xVersion
std::unique_ptr< weld::ComboBox > m_xSplit
DECL_LINK(VersionSelectHdl, weld::ComboBox &, void)
DECL_LINK(SplitSelectHdl, weld::ComboBox &, void)
std::unique_ptr< weld::Entry > m_xInitialCreator
std::unique_ptr< weld::ComboBox > m_xLayout
std::unique_ptr< weld::Entry > m_xMediaDir
std::unique_ptr< weld::Button > m_xCoverButton
std::unique_ptr< weld::Button > m_xMediaButton
DECL_LINK(OKClickHdl, weld::Button &, void)
css::uno::Reference< css::lang::XComponent > m_xSourceDocument
EPUBExportDialog(weld::Window *pParent, comphelper::SequenceAsHashMap &rFilterData, css::uno::Reference< css::uno::XComponentContext > xContext, css::uno::Reference< css::lang::XComponent > xDocument)
std::unique_ptr< weld::Button > m_xOKButton
DECL_LINK(LayoutSelectHdl, weld::ComboBox &, void)
css::uno::Reference< css::uno::XComponentContext > m_xContext
comphelper::SequenceAsHashMap & m_rFilterData
DECL_LINK(MediaClickHdl, weld::Button &, void)
DECL_LINK(CoverClickHdl, weld::Button &, void)
std::unique_ptr< weld::Entry > m_xCoverPath
std::unique_ptr< weld::Entry > m_xDate
std::unique_ptr< weld::Entry > m_xIdentifier