summaryrefslogtreecommitdiff
path: root/include/sfx2/templatedlg.hxx
blob: d7920753575d35057ef1a3eae9041c8561890fed (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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* -*- 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 <vcl/dialog.hxx>
#include <vcl/button.hxx>
#include <com/sun/star/frame/XDesktop2.hpp>

#include <sfx2/templateabstractview.hxx>

class Edit;
class PopupMenu;
class TemplateAbstractView;
class TemplateLocalView;
class TemplateRemoteView;
class TemplateRepository;
class TemplateSearchView;
class ThumbnailView;
class ThumbnailViewItem;
class ToolBox;

namespace com {
    namespace sun { namespace star { namespace frame {
        class XComponentLoader;
        class XModel;
    }   }   }
}

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

public:

    SfxTemplateManagerDlg(vcl::Window *parent = nullptr);

    virtual ~SfxTemplateManagerDlg();
    virtual void dispose() override;
    virtual short Execute() override;

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

protected:

    void getApplicationSpecificSettings();

    void readSettings ();

    void writeSettings ();

    void fillFolderComboBox();

    DECL_LINK_TYPED(TBXDropdownHdl, ToolBox*, void);

    DECL_LINK_TYPED(SelectApplicationHdl, ListBox&, void);
    DECL_LINK_TYPED(SelectRegionHdl, ListBox&, void);

    DECL_LINK_TYPED(OkClickHdl, Button*, void);
    DECL_LINK_TYPED(MoveClickHdl, Button*, void);
    DECL_LINK_TYPED(ExportClickHdl, Button*, void);
    DECL_LINK_TYPED(ImportClickHdl, Button*, void);
    DECL_STATIC_LINK_TYPED(SfxTemplateManagerDlg, LinkClickHdl, Button*, void);

    DECL_LINK_TYPED(TVItemStateHdl, const ThumbnailViewItem*, void);

    DECL_LINK_TYPED(MenuSelectHdl, Menu*, bool);
    DECL_LINK_TYPED(RepositoryMenuSelectHdl, Menu*, bool);
    DECL_LINK_TYPED(DefaultTemplateMenuSelectHdl, Menu*, bool);

    DECL_LINK_TYPED(OpenRegionHdl, void*, void);
    DECL_LINK_TYPED(RightClickHdl, ThumbnailViewItem*, void);
    DECL_LINK_TYPED(OpenTemplateHdl, ThumbnailViewItem*, void);
    DECL_LINK_TYPED(EditTemplateHdl, ThumbnailViewItem*, void);
    DECL_LINK_TYPED(DeleteTemplateHdl, ThumbnailViewItem*, void);
    DECL_LINK_TYPED(DefaultTemplateHdl, ThumbnailViewItem*, void);

    DECL_LINK_TYPED(SearchUpdateHdl, Edit&, void);

    void OnTemplateImportCategory(const OUString& sCategory);
    static void OnTemplateLink ();
    void OnTemplateOpen ();
    void OnTemplateExport ();

    void OnTemplateState (const ThumbnailViewItem *pItem);

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

    void createRepositoryMenu ();

    void createDefaultTemplateMenu ();

    // Exchange view between local/online view.
    void switchMainView (bool bDisplayLocal);

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

    void localMoveTo (sal_uInt16 nMenuId);

    void remoteMoveTo (const sal_uInt16 nMenuId);

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

    void localSearchMoveTo (sal_uInt16 nMenuId);

    // Remote repositories handling methods
    void loadRepositories ();

    const std::vector<TemplateRepository*>& getRepositories () const { return maRepositories; }

    bool insertRepository (const OUString &rName, const OUString &rURL);

    void syncRepositories () const;

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

protected:

    VclPtr<Edit> mpSearchFilter;
    VclPtr<ListBox> mpCBApp;
    VclPtr<ListBox> mpCBFolder;

    VclPtr<PushButton> mpOKButton;
    VclPtr<PushButton> mpMoveButton;
    VclPtr<PushButton> mpExportButton;
    VclPtr<PushButton> mpImportButton;
    VclPtr<PushButton> mpLinkButton;
    VclPtr<ToolBox> mpViewBar;
    VclPtr<ToolBox> mpActionBar;
    VclPtr<TemplateSearchView> mpSearchView;
    VclPtr<TemplateAbstractView> mpCurView;
    VclPtr<TemplateLocalView> mpLocalView;
    VclPtr<TemplateRemoteView> mpRemoteView;
    PopupMenu *mpActionMenu;
    PopupMenu *mpRepositoryMenu;
    PopupMenu *mpTemplateDefaultMenu;

    std::set<const ThumbnailViewItem*,selection_cmp_fn> maSelTemplates;

    css::uno::Reference< css::frame::XModel > m_xModel;
    css::uno::Reference< css::frame::XDesktop2 > mxDesktop;

    bool mbIsSynced; ///< Tells whether maRepositories is synchronized with the user config
    std::vector<TemplateRepository*> maRepositories; ///< Stores the remote repositories for templates
};

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

class SFX2_DLLPUBLIC SfxTemplateCategoryDialog : public ModalDialog
{
private:
    VclPtr<ListBox>         mpLBCategory;
    VclPtr<FixedText>       mpSelectLabel;
    VclPtr<Edit>            mpNewCategoryEdit;
    VclPtr<FixedText>       mpCreateLabel;
    VclPtr<PushButton>      mpOKButton;

    OUString   msSelectedCategory;
    bool       mbIsNewCategory;

public:
    DECL_LINK_TYPED(NewCategoryEditHdl, Edit&, void);
    DECL_LINK_TYPED(SelectCategoryHdl, ListBox&, void);

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

    void HideNewCategoryOption();

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

    inline void SetSelectLabelText(OUString sText) const {
        mpSelectLabel->SetText(sText);
    };

    inline bool IsNewCategoryCreated() const {
        return mbIsNewCategory;
    }

public:

    explicit SfxTemplateCategoryDialog(vcl::Window *parent = nullptr);

    virtual ~SfxTemplateCategoryDialog();
    virtual void dispose() override;
};


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

class SFX2_DLLPUBLIC SfxTemplateSelectionDlg : public SfxTemplateManagerDlg
{
public:
    SfxTemplateSelectionDlg(vcl::Window *parent = nullptr);

    virtual ~SfxTemplateSelectionDlg();
    virtual void dispose() override;
    virtual short Execute() override;

    inline OUString getTemplatePath() const { return msTemplatePath; };

private:
    DECL_LINK_TYPED(OpenTemplateHdl, ThumbnailViewItem*, void);

    OUString   msTemplatePath;
};


#endif // INCLUDED_SFX2_INC_TEMPLATEDLG_HXX

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