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 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef INCLUDED_CUI_SOURCE_INC_TREEOPT_HXX
21 : #define INCLUDED_CUI_SOURCE_INC_TREEOPT_HXX
22 :
23 : #include <tools/resary.hxx>
24 : #include <vcl/fixed.hxx>
25 :
26 : class SfxModule;
27 : class SfxShell;
28 :
29 : // static ----------------------------------------------------------------
30 :
31 : bool EnableSSO();
32 : CreateTabPage GetSSOCreator();
33 :
34 : // struct OrderedEntry ---------------------------------------------------
35 :
36 : struct OrderedEntry
37 : {
38 : sal_Int32 m_nIndex;
39 : OUString m_sId;
40 :
41 0 : OrderedEntry( sal_Int32 nIndex, const OUString& rId ) :
42 0 : m_nIndex( nIndex ), m_sId( rId ) {}
43 : };
44 :
45 : typedef std::vector< OrderedEntry* > VectorOfOrderedEntries;
46 :
47 : // struct Module ---------------------------------------------------------
48 :
49 0 : struct Module
50 : {
51 : OUString m_sName;
52 : bool m_bActive;
53 : VectorOfOrderedEntries m_aNodeList;
54 :
55 0 : Module( const OUString& rName ) : m_sName( rName ), m_bActive( false ) {}
56 : };
57 :
58 : // struct OptionsLeaf ----------------------------------------------------
59 :
60 0 : struct OptionsLeaf
61 : {
62 : OUString m_sId;
63 : OUString m_sLabel;
64 : OUString m_sPageURL;
65 : OUString m_sEventHdl;
66 : OUString m_sGroupId;
67 : sal_Int32 m_nGroupIndex;
68 :
69 0 : OptionsLeaf( const OUString& rId,
70 : const OUString& rLabel,
71 : const OUString& rPageURL,
72 : const OUString& rEventHdl,
73 : const OUString& rGroupId,
74 : sal_Int32 nGroupIndex ) :
75 : m_sId( rId ),
76 : m_sLabel( rLabel ),
77 : m_sPageURL( rPageURL ),
78 : m_sEventHdl( rEventHdl ),
79 : m_sGroupId( rGroupId ),
80 0 : m_nGroupIndex( nGroupIndex ) {}
81 : };
82 :
83 : typedef ::std::vector< OptionsLeaf* > VectorOfLeaves;
84 : typedef ::std::vector< VectorOfLeaves > VectorOfGroupedLeaves;
85 :
86 : // struct OptionsNode ----------------------------------------------------
87 :
88 : struct OptionsNode
89 : {
90 : OUString m_sId;
91 : OUString m_sLabel;
92 : OUString m_sPageURL;
93 : bool m_bAllModules;
94 : OUString m_sGroupId;
95 : sal_Int32 m_nGroupIndex;
96 : VectorOfLeaves m_aLeaves;
97 : VectorOfGroupedLeaves m_aGroupedLeaves;
98 :
99 0 : OptionsNode( const OUString& rId,
100 : const OUString& rLabel,
101 : const OUString& rPageURL,
102 : bool bAllModules,
103 : const OUString& rGroupId,
104 : sal_Int32 nGroupIndex ) :
105 : m_sId( rId ),
106 : m_sLabel( rLabel ),
107 : m_sPageURL( rPageURL ),
108 : m_bAllModules( bAllModules ),
109 : m_sGroupId( rGroupId ),
110 0 : m_nGroupIndex( nGroupIndex ) {}
111 :
112 0 : ~OptionsNode()
113 0 : {
114 0 : for ( size_t i = 0; i < m_aLeaves.size(); ++i )
115 0 : delete m_aLeaves[i];
116 0 : m_aLeaves.clear();
117 0 : m_aGroupedLeaves.clear();
118 0 : }
119 : };
120 :
121 : typedef ::std::vector< OptionsNode* > VectorOfNodes;
122 :
123 : struct LastPageSaver
124 : {
125 : sal_uInt16 m_nLastPageId;
126 : OUString m_sLastPageURL_Tools;
127 : OUString m_sLastPageURL_ExtMgr;
128 :
129 0 : LastPageSaver() : m_nLastPageId( USHRT_MAX ) {}
130 : };
131 :
132 : // class OfaTreeOptionsDialog --------------------------------------------
133 :
134 : namespace com { namespace sun { namespace star { namespace frame { class XFrame; } } } }
135 : namespace com { namespace sun { namespace star { namespace awt { class XContainerWindowProvider; } } } }
136 :
137 : struct OptionsPageInfo;
138 : struct Module;
139 : class ExtensionsTabPage;
140 : class SvxColorTabPage;
141 : typedef std::vector< ExtensionsTabPage* > VectorOfPages;
142 :
143 : class OfaTreeOptionsDialog : public SfxModalDialog
144 : {
145 : private:
146 : SvTreeListEntry* pCurrentPageEntry;
147 : bool hasTreePendingLayout() const;
148 :
149 : VclPtr<OKButton> pOkPB;
150 : VclPtr<PushButton> pBackPB;
151 :
152 : VclPtr<SvTreeListBox> pTreeLB;
153 : VclPtr<VclBox> pTabBox;
154 :
155 : OUString sTitle;
156 : OUString sNotLoadedError;
157 :
158 : // for the ColorTabPage
159 : SfxItemSet* pColorPageItemSet;
160 : VclPtr<SvxColorTabPage> mpColorPage;
161 :
162 : bool bForgetSelection;
163 : bool bIsFromExtensionManager;
164 :
165 : // check "for the current document only" and set focus to "Western" languages box
166 : bool bIsForSetDocumentLanguage;
167 :
168 : com::sun::star::uno::Reference < com::sun::star::awt::XContainerWindowProvider >
169 : m_xContainerWinProvider;
170 :
171 : static LastPageSaver* pLastPageSaver;
172 :
173 : SfxItemSet* CreateItemSet( sal_uInt16 nId );
174 : static void ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet );
175 : void InitTreeAndHandler();
176 : void Initialize( const com::sun::star::uno::Reference< com::sun::star::frame::XFrame >& _xFrame );
177 : void InitWidgets();
178 :
179 : void LoadExtensionOptions( const OUString& rExtensionId );
180 : static OUString GetModuleIdentifier( const com::sun::star::uno::Reference<
181 : com::sun::star::frame::XFrame >& xFrame );
182 : static Module* LoadModule( const OUString& rModuleIdentifier );
183 : static VectorOfNodes LoadNodes( Module* pModule, const OUString& rExtensionId );
184 : void InsertNodes( const VectorOfNodes& rNodeList );
185 :
186 : protected:
187 : DECL_STATIC_LINK(OfaTreeOptionsDialog, ExpandedHdl_Impl, SvTreeListBox* );
188 : DECL_LINK(ShowPageHdl_Impl, void *);
189 : DECL_LINK(BackHdl_Impl, void *);
190 : DECL_LINK(OKHdl_Impl, void *);
191 : DECL_LINK( HintHdl_Impl, Timer * );
192 : void SelectHdl_Impl();
193 :
194 : virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
195 : virtual short Execute() SAL_OVERRIDE;
196 :
197 : public:
198 : OfaTreeOptionsDialog( vcl::Window* pParent,
199 : const com::sun::star::uno::Reference< com::sun::star::frame::XFrame >& _xFrame,
200 : bool bActivateLastSelection = true );
201 : OfaTreeOptionsDialog( vcl::Window* pParent, const OUString& rExtensionId );
202 : virtual ~OfaTreeOptionsDialog();
203 : virtual void dispose() SAL_OVERRIDE;
204 :
205 : OptionsPageInfo* AddTabPage( sal_uInt16 nId, const OUString& rPageName, sal_uInt16 nGroup );
206 : sal_uInt16 AddGroup( const OUString& rGroupName, SfxShell* pCreateShell,
207 : SfxModule* pCreateModule, sal_uInt16 nDialogId );
208 :
209 : void ActivateLastSelection();
210 : void ActivatePage( sal_uInt16 nResId );
211 : void ActivatePage( const OUString& rPageURL );
212 : void ApplyItemSets();
213 :
214 : // helper functions to call the language settings TabPage from the SpellDialog
215 : static void ApplyLanguageOptions(const SfxItemSet& rSet);
216 : };
217 :
218 : // class OfaPageResource -------------------------------------------------
219 :
220 0 : class OfaPageResource : public Resource
221 : {
222 : ResStringArray aGeneralDlgAry;
223 : ResStringArray aInetDlgAry;
224 : ResStringArray aLangDlgAry;
225 : ResStringArray aTextDlgAry;
226 : ResStringArray aHTMLDlgAry;
227 : ResStringArray aCalcDlgAry;
228 : ResStringArray aStarMathDlgAry;
229 : ResStringArray aImpressDlgAry;
230 : ResStringArray aDrawDlgAry;
231 : ResStringArray aChartDlgAry;
232 : ResStringArray aFilterDlgAry;
233 : ResStringArray aDatasourcesDlgAry;
234 :
235 : public:
236 : OfaPageResource();
237 :
238 0 : ResStringArray& GetGeneralArray() {return aGeneralDlgAry;}
239 0 : ResStringArray& GetInetArray() {return aInetDlgAry;}
240 0 : ResStringArray& GetLangArray() {return aLangDlgAry;}
241 0 : ResStringArray& GetTextArray() {return aTextDlgAry;}
242 0 : ResStringArray& GetHTMLArray() {return aHTMLDlgAry;}
243 0 : ResStringArray& GetCalcArray() {return aCalcDlgAry;}
244 0 : ResStringArray& GetStarMathArray() {return aStarMathDlgAry;}
245 0 : ResStringArray& GetImpressArray() {return aImpressDlgAry;}
246 0 : ResStringArray& GetDrawArray() {return aDrawDlgAry;}
247 0 : ResStringArray& GetChartArray() {return aChartDlgAry;}
248 0 : ResStringArray& GetFilterArray() {return aFilterDlgAry;}
249 0 : ResStringArray& GetDatasourcesArray() {return aDatasourcesDlgAry;}
250 : };
251 :
252 : // class ExtensionsTabPage -----------------------------------------------
253 :
254 : namespace com { namespace sun { namespace star { namespace awt { class XWindow; } } } }
255 : namespace com { namespace sun { namespace star { namespace awt { class XContainerWindowEventHandler; } } } }
256 :
257 : class ExtensionsTabPage : public TabPage
258 : {
259 : private:
260 : OUString m_sPageURL;
261 : com::sun::star::uno::Reference< com::sun::star::awt::XWindow >
262 : m_xPage;
263 : OUString m_sEventHdl;
264 : com::sun::star::uno::Reference< com::sun::star::awt::XContainerWindowEventHandler >
265 : m_xEventHdl;
266 : com::sun::star::uno::Reference< com::sun::star::awt::XContainerWindowProvider >
267 : m_xWinProvider;
268 : bool m_bIsWindowHidden;
269 :
270 : void CreateDialogWithHandler();
271 : bool DispatchAction( const OUString& rAction );
272 :
273 : public:
274 : ExtensionsTabPage(
275 : vcl::Window* pParent, WinBits nStyle,
276 : const OUString& rPageURL, const OUString& rEvtHdl,
277 : const com::sun::star::uno::Reference<
278 : com::sun::star::awt::XContainerWindowProvider >& rProvider );
279 :
280 : virtual ~ExtensionsTabPage();
281 : virtual void dispose() SAL_OVERRIDE;
282 :
283 : virtual void ActivatePage() SAL_OVERRIDE;
284 : virtual void DeactivatePage() SAL_OVERRIDE;
285 :
286 : void ResetPage();
287 : void SavePage();
288 : };
289 :
290 : #endif
291 :
292 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|