Line data Source code
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 : #ifndef TEMPLATEDLG_HXX
11 : #define TEMPLATEDLG_HXX
12 :
13 : #include <set>
14 :
15 : #include <vcl/dialog.hxx>
16 : #include <vcl/button.hxx>
17 : #include <vcl/tabctrl.hxx>
18 : #include <vcl/tabpage.hxx>
19 : #include <com/sun/star/frame/XDesktop2.hpp>
20 :
21 : class Edit;
22 : class PopupMenu;
23 : class SfxTemplateInfoDlg;
24 : class TemplateAbstractView;
25 : class TemplateLocalView;
26 : class TemplateRemoteView;
27 : class TemplateRepository;
28 : class TemplateSearchView;
29 : class ThumbnailView;
30 : class ThumbnailViewItem;
31 : class ToolBox;
32 :
33 : namespace com {
34 : namespace sun { namespace star { namespace frame {
35 : class XComponentLoader;
36 : class XModel;
37 : } } }
38 : }
39 :
40 : class SfxTemplateManagerDlg : public ModelessDialog
41 : {
42 : typedef bool (*selection_cmp_fn)(const ThumbnailViewItem*,const ThumbnailViewItem*);
43 :
44 : public:
45 :
46 : SfxTemplateManagerDlg (Window *parent = DIALOG_NO_PARENT);
47 :
48 : ~SfxTemplateManagerDlg ();
49 :
50 : void setSaveMode (bool bMode);
51 :
52 : void setDocumentModel (const com::sun::star::uno::Reference<com::sun::star::frame::XModel> &rModel);
53 :
54 : DECL_LINK(ActivatePageHdl, void*);
55 :
56 : private:
57 :
58 : void readSettings ();
59 :
60 : void writeSettings ();
61 :
62 : virtual void Resize ();
63 :
64 : DECL_LINK(TBXViewHdl, void*);
65 : DECL_LINK(TBXActionHdl, void*);
66 : DECL_LINK(TBXTemplateHdl, void*);
67 : DECL_LINK(TBXDropdownHdl, ToolBox*);
68 :
69 : DECL_LINK(TVItemStateHdl, const ThumbnailViewItem*);
70 :
71 : DECL_LINK(MenuSelectHdl, Menu*);
72 : DECL_LINK(MoveMenuSelectHdl, Menu*);
73 : DECL_LINK(RepositoryMenuSelectHdl, Menu*);
74 : DECL_LINK(DefaultTemplateMenuSelectHdl, Menu*);
75 :
76 : DECL_LINK(OpenRegionHdl, void*);
77 : DECL_LINK(OpenTemplateHdl, ThumbnailViewItem*);
78 :
79 : DECL_LINK(SearchUpdateHdl, void*);
80 :
81 : void OnTemplateImport ();
82 : void OnTemplateSearch ();
83 : void OnTemplateOpen ();
84 : void OnTemplateEdit ();
85 : void OnTemplateProperties ();
86 : void OnTemplateDelete ();
87 : void OnTemplateAsDefault ();
88 : void OnTemplateExport ();
89 :
90 : void OnTemplateState (const ThumbnailViewItem *pItem);
91 :
92 : void OnFolderNew ();
93 : void OnFolderDelete ();
94 :
95 : void OnRegionState (const ThumbnailViewItem *pItem);
96 :
97 : void OnRepositoryDelete ();
98 : void OnTemplateSaveAs ();
99 :
100 : void createRepositoryMenu ();
101 :
102 : void createDefaultTemplateMenu ();
103 :
104 : // Exchange view between local/online view.
105 : void switchMainView (bool bDisplayLocal);
106 :
107 : /**
108 : *
109 : * Move templates stored in the filesystem to another folder.
110 : *
111 : **/
112 :
113 : void localMoveTo (sal_uInt16 nMenuId);
114 :
115 : void remoteMoveTo (const sal_uInt16 nMenuId);
116 :
117 : /**
118 : *
119 : * Move search result templates stored in the filesystem to another folder.
120 : *
121 : **/
122 :
123 : void localSearchMoveTo (sal_uInt16 nMenuId);
124 :
125 : // Remote repositories handling methods
126 : void loadRepositories ();
127 :
128 0 : const std::vector<TemplateRepository*>& getRepositories () const { return maRepositories; }
129 :
130 : bool insertRepository (const OUString &rName, const OUString &rURL);
131 :
132 : bool deleteRepository (const sal_uInt16 nRepositoryId);
133 :
134 : void syncRepositories () const;
135 :
136 : private:
137 :
138 : TabControl maTabControl;
139 : TabPage maTabPage;
140 :
141 : Edit *mpSearchEdit;
142 : ToolBox *mpViewBar;
143 : ToolBox *mpActionBar;
144 : ToolBox *mpTemplateBar;
145 : TemplateSearchView *mpSearchView;
146 : TemplateAbstractView *mpCurView;
147 : TemplateLocalView *mpLocalView;
148 : TemplateRemoteView *mpRemoteView;
149 : PopupMenu *mpActionMenu;
150 : PopupMenu *mpRepositoryMenu;
151 : PopupMenu *mpTemplateDefaultMenu;
152 :
153 : std::set<const ThumbnailViewItem*,selection_cmp_fn> maSelTemplates;
154 : std::set<const ThumbnailViewItem*,selection_cmp_fn> maSelFolders;
155 :
156 : bool mbIsSaveMode; ///< Flag that indicates if we are in save mode or not.
157 : com::sun::star::uno::Reference< com::sun::star::frame::XModel > m_xModel;
158 : com::sun::star::uno::Reference< com::sun::star::frame::XDesktop2 > mxDesktop;
159 :
160 : bool mbIsSynced; ///< Tells whether maRepositories is synchronized with the user config
161 : std::vector<TemplateRepository*> maRepositories; ///< Stores the remote repositories for templates
162 : };
163 :
164 : #endif // TEMPLATEDLG_HXX
165 :
166 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|