summaryrefslogtreecommitdiff
path: root/include/sfx2/templatedlg.hxx
blob: 35bb0620978b66edbecf9cc50484659c53cf754f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef INCLUDED_SFX2_INC_TEMPLATEDLG_HXX
#define INCLUDED_SFX2_INC_TEMPLATEDLG_HXX

#include <sal/config.h>
#include <sfx2/dllapi.h>

#include <set>
#include <string_view>

#include <vcl/idle.hxx>
#include <vcl/timer.hxx>
#include <vcl/weld.hxx>

#include <sfx2/templatedlglocalview.hxx>

class TemplateSearchView;
class ThumbnailViewItem;

namespace com
{
namespace sun::star::frame
{
class XDesktop2;
class XModel;
}
}

class SFX2_DLLPUBLIC SfxTemplateManagerDlg : public weld::GenericDialogController
{
    typedef bool (*selection_cmp_fn)(const ThumbnailViewItem*, const ThumbnailViewItem*);

public:
    SfxTemplateManagerDlg(weld::Window* parent);

    virtual ~SfxTemplateManagerDlg() override;
    virtual short run() override;

    void setDocumentModel(const css::uno::Reference<css::frame::XModel>& rModel);
    void setTemplateViewMode(TemplateViewMode eViewMode);
    TemplateViewMode getTemplateViewMode();

protected:
    void getApplicationSpecificSettings();

    void readSettings();

    void writeSettings();

    void fillFolderComboBox();

    DECL_LINK(SelectApplicationHdl, weld::ComboBox&, void);
    DECL_LINK(SelectRegionHdl, weld::ComboBox&, void);

    DECL_LINK(OkClickHdl, weld::Button&, void);
    DECL_LINK(MoveClickHdl, weld::Button&, void);
    DECL_LINK(ExportClickHdl, weld::Button&, void);
    DECL_LINK(ImportClickHdl, weld::Button&, void);
    DECL_STATIC_LINK(SfxTemplateManagerDlg, LinkClickHdl, weld::Button&, void);

    DECL_LINK(TVItemStateHdl, const ThumbnailViewItem*, void);

    DECL_LINK(MenuSelectHdl, const OString&, void);
    void DefaultTemplateMenuSelectHdl(std::string_view rIdent);

    DECL_LINK(OpenRegionHdl, void*, void);
    DECL_LINK(CreateContextMenuHdl, ThumbnailViewItem*, void);
    DECL_LINK(OpenTemplateHdl, ThumbnailViewItem*, void);
    DECL_LINK(EditTemplateHdl, ThumbnailViewItem*, void);
    DECL_LINK(DeleteTemplateHdl, ThumbnailViewItem*, void);
    DECL_LINK(DefaultTemplateHdl, ThumbnailViewItem*, void);

    void SearchUpdate();

    DECL_LINK(SearchUpdateHdl, weld::Entry&, void);
    DECL_LINK(GetFocusHdl, weld::Widget&, void);
    DECL_LINK(LoseFocusHdl, weld::Widget&, void);
    DECL_LINK(ImplUpdateDataHdl, Timer*, void);
    DECL_LINK(KeyInputHdl, const KeyEvent&, bool);

    DECL_LINK(ListViewHdl, weld::Button&, void);
    DECL_LINK(ThumbnailViewHdl, weld::Button&, void);
    DECL_LINK(FocusRectLocalHdl, weld::Widget&, tools::Rectangle);
    DECL_LINK(FocusRectSearchHdl, weld::Widget&, tools::Rectangle);

    void OnTemplateImportCategory(std::u16string_view sCategory);
    //    static void OnTemplateLink ();
    void OnTemplateOpen();
    void OnTemplateExport();

    void OnTemplateState(const ThumbnailViewItem* pItem);

    void OnCategoryNew();
    void OnCategoryRename();
    void OnCategoryDelete();

    void createDefaultTemplateMenu();

    /**
     *
     * Move templates stored in the filesystem to another folder.
     *
     **/

    void localMoveTo(sal_uInt16 nMenuId);

    /**
     *
     * Move search result templates stored in the filesystem to another folder.
     *
     **/

    void localSearchMoveTo(sal_uInt16 nMenuId);

    /// Return filter according to the currently selected application filter.
    FILTER_APPLICATION getCurrentApplicationFilter() const;

protected:
    std::set<const ThumbnailViewItem*, selection_cmp_fn> maSelTemplates;
    css::uno::Reference<css::frame::XModel> m_xModel;
    css::uno::Reference<css::frame::XDesktop2> mxDesktop;

    Timer m_aUpdateDataTimer;

    std::unique_ptr<weld::Entry> mxSearchFilter;
    std::unique_ptr<weld::ComboBox> mxCBApp;
    std::unique_ptr<weld::ComboBox> mxCBFolder;

    std::unique_ptr<weld::Button> mxOKButton;
    std::unique_ptr<weld::Button> mxMoveButton;
    std::unique_ptr<weld::Button> mxExportButton;
    std::unique_ptr<weld::Button> mxImportButton;
    std::unique_ptr<weld::Button> mxMoreTemplatesButton;
    std::unique_ptr<weld::CheckButton> mxCBXHideDlg;
    std::unique_ptr<weld::MenuButton> mxActionBar;
    std::unique_ptr<TemplateSearchView> mxSearchView;
    std::unique_ptr<TemplateDlgLocalView> mxLocalView;
    std::unique_ptr<weld::Menu> mxTemplateDefaultMenu;
    std::unique_ptr<weld::CustomWeld> mxSearchViewWeld;
    std::unique_ptr<weld::CustomWeld> mxLocalViewWeld;
    std::unique_ptr<weld::ToggleButton> mxListViewButton;
    std::unique_ptr<weld::ToggleButton> mxThumbnailViewButton;
    TemplateViewMode mViewMode;
    bool bMakeSelItemVisible;
};

//  class SfxTemplateCategoryDialog -------------------------------------------------------------------

class SfxTemplateCategoryDialog final : public weld::GenericDialogController
{
private:
    OUString msSelectedCategory;
    bool mbIsNewCategory;

    std::unique_ptr<weld::TreeView> mxLBCategory;
    std::unique_ptr<weld::Label> mxSelectLabel;
    std::unique_ptr<weld::Entry> mxNewCategoryEdit;
    std::unique_ptr<weld::Label> mxCreateLabel;
    std::unique_ptr<weld::Button> mxOKButton;

public:
    DECL_LINK(NewCategoryEditHdl, weld::Entry&, void);
    DECL_LINK(SelectCategoryHdl, weld::TreeView&, void);

    void SetCategoryLBEntries(std::vector<OUString> names);

    void HideNewCategoryOption();

    const OUString& GetSelectedCategory() const { return msSelectedCategory; };

    void SetSelectLabelText(OUString const& sText) const { mxSelectLabel->set_label(sText); };

    bool IsNewCategoryCreated() const { return mbIsNewCategory; }

public:
    explicit SfxTemplateCategoryDialog(weld::Window* pParent);

    virtual ~SfxTemplateCategoryDialog() override;
};

//  class SfxTemplateSelectionDialog -------------------------------------------------------------------

class SFX2_DLLPUBLIC SfxTemplateSelectionDlg final : public SfxTemplateManagerDlg
{
public:
    SfxTemplateSelectionDlg(weld::Window* parent);

    virtual ~SfxTemplateSelectionDlg() override;
    virtual short run() override;

    OUString const& getTemplatePath() const { return msTemplatePath; };
    bool IsStartWithTemplate() const { return mxCBXHideDlg->get_active(); };

private:
    DECL_LINK(OpenTemplateHdl, ThumbnailViewItem*, void);
    DECL_LINK(OkClickHdl, weld::Button&, void);
    DECL_LINK(TimeOut, Timer*, void);

    OUString msTemplatePath;
    Idle maIdle;
};

#endif // INCLUDED_SFX2_INC_TEMPLATEDLG_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */