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 : sal_Bool EnableSSO();
32 : CreateTabPage GetSSOCreator( void );
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 ( sal_uInt32 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 : Timer maTreeLayoutTimer;
148 : DECL_DLLPRIVATE_LINK( ImplHandleTreeLayoutTimerHdl, void* );
149 : bool hasTreePendingLayout() const;
150 :
151 : OKButton aOkPB;
152 : CancelButton aCancelPB;
153 : HelpButton aHelpPB;
154 : PushButton aBackPB;
155 :
156 : FixedLine aSeparatorFL;
157 :
158 : SvTreeListBox aTreeLB;
159 :
160 : OUString sTitle;
161 : OUString sNotLoadedError;
162 :
163 : // for the ColorTabPage
164 : SfxItemSet* pColorPageItemSet;
165 : SvxColorTabPage *mpColorPage;
166 :
167 : sal_Bool bForgetSelection;
168 : sal_Bool bExternBrowserActive;
169 : bool bIsFromExtensionManager;
170 :
171 : // check "for the current document only" and set focus to "Western" languages box
172 : bool bIsForSetDocumentLanguage;
173 :
174 : com::sun::star::uno::Reference < com::sun::star::awt::XContainerWindowProvider >
175 : m_xContainerWinProvider;
176 :
177 : static LastPageSaver* pLastPageSaver;
178 :
179 : SfxItemSet* CreateItemSet( sal_uInt16 nId );
180 : void ApplyItemSet( sal_uInt16 nId, const SfxItemSet& rSet );
181 : void InitTreeAndHandler();
182 : void Initialize( const com::sun::star::uno::Reference< com::sun::star::frame::XFrame >& _xFrame );
183 : void ResizeTreeLB( void ); // resizes dialog so that treelistbox has no horizontal scroll bar
184 :
185 : void LoadExtensionOptions( const OUString& rExtensionId );
186 : OUString GetModuleIdentifier( const com::sun::star::uno::Reference<
187 : com::sun::star::frame::XFrame >& xFrame );
188 : Module* LoadModule( const OUString& rModuleIdentifier );
189 : VectorOfNodes LoadNodes( Module* pModule, const OUString& rExtensionId );
190 : void InsertNodes( const VectorOfNodes& rNodeList );
191 :
192 : virtual void queue_resize() SAL_OVERRIDE;
193 : void SetPaneSize(Window *pPane);
194 :
195 : protected:
196 : DECL_LINK(ExpandedHdl_Impl, SvTreeListBox* );
197 : DECL_LINK(ShowPageHdl_Impl, void *);
198 : DECL_LINK(BackHdl_Impl, void *);
199 : DECL_LINK(OKHdl_Impl, void *);
200 : DECL_LINK( HintHdl_Impl, Timer * );
201 : void SelectHdl_Impl();
202 :
203 : virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
204 : virtual short Execute() SAL_OVERRIDE;
205 :
206 : public:
207 : OfaTreeOptionsDialog( Window* pParent,
208 : const com::sun::star::uno::Reference< com::sun::star::frame::XFrame >& _xFrame,
209 : bool bActivateLastSelection = true );
210 : OfaTreeOptionsDialog( Window* pParent, const OUString& rExtensionId );
211 : virtual ~OfaTreeOptionsDialog();
212 :
213 : OptionsPageInfo* AddTabPage( sal_uInt16 nId, const OUString& rPageName, sal_uInt16 nGroup );
214 : sal_uInt16 AddGroup( const OUString& rGroupName, SfxShell* pCreateShell,
215 : SfxModule* pCreateModule, sal_uInt16 nDialogId );
216 :
217 : void ActivateLastSelection();
218 : void ActivatePage( sal_uInt16 nResId );
219 : void ActivatePage( const OUString& rPageURL );
220 : void ApplyItemSets();
221 :
222 : // helper functions to call the language settings TabPage from the SpellDialog
223 : static void ApplyLanguageOptions(const SfxItemSet& rSet);
224 : };
225 :
226 : // class OfaPageResource -------------------------------------------------
227 :
228 0 : class OfaPageResource : public Resource
229 : {
230 : ResStringArray aGeneralDlgAry;
231 : ResStringArray aInetDlgAry;
232 : ResStringArray aLangDlgAry;
233 : ResStringArray aTextDlgAry;
234 : ResStringArray aHTMLDlgAry;
235 : ResStringArray aCalcDlgAry;
236 : ResStringArray aStarMathDlgAry;
237 : ResStringArray aImpressDlgAry;
238 : ResStringArray aDrawDlgAry;
239 : ResStringArray aChartDlgAry;
240 : ResStringArray aFilterDlgAry;
241 : ResStringArray aDatasourcesDlgAry;
242 :
243 : public:
244 : OfaPageResource();
245 :
246 0 : ResStringArray& GetGeneralArray() {return aGeneralDlgAry;}
247 0 : ResStringArray& GetInetArray() {return aInetDlgAry;}
248 0 : ResStringArray& GetLangArray() {return aLangDlgAry;}
249 0 : ResStringArray& GetTextArray() {return aTextDlgAry;}
250 0 : ResStringArray& GetHTMLArray() {return aHTMLDlgAry;}
251 0 : ResStringArray& GetCalcArray() {return aCalcDlgAry;}
252 0 : ResStringArray& GetStarMathArray() {return aStarMathDlgAry;}
253 0 : ResStringArray& GetImpressArray() {return aImpressDlgAry;}
254 0 : ResStringArray& GetDrawArray() {return aDrawDlgAry;}
255 0 : ResStringArray& GetChartArray() {return aChartDlgAry;}
256 0 : ResStringArray& GetFilterArray() {return aFilterDlgAry;}
257 0 : ResStringArray& GetDatasourcesArray() {return aDatasourcesDlgAry;}
258 : };
259 :
260 : // class ExtensionsTabPage -----------------------------------------------
261 :
262 : namespace com { namespace sun { namespace star { namespace awt { class XWindow; } } } }
263 : namespace com { namespace sun { namespace star { namespace awt { class XContainerWindowEventHandler; } } } }
264 :
265 : class ExtensionsTabPage : public TabPage
266 : {
267 : private:
268 : OUString m_sPageURL;
269 : com::sun::star::uno::Reference< com::sun::star::awt::XWindow >
270 : m_xPage;
271 : OUString m_sEventHdl;
272 : com::sun::star::uno::Reference< com::sun::star::awt::XContainerWindowEventHandler >
273 : m_xEventHdl;
274 : com::sun::star::uno::Reference< com::sun::star::awt::XContainerWindowProvider >
275 : m_xWinProvider;
276 : bool m_bIsWindowHidden;
277 :
278 : void CreateDialogWithHandler();
279 : sal_Bool DispatchAction( const OUString& rAction );
280 :
281 : public:
282 : ExtensionsTabPage(
283 : Window* pParent, WinBits nStyle,
284 : const OUString& rPageURL, const OUString& rEvtHdl,
285 : const com::sun::star::uno::Reference<
286 : com::sun::star::awt::XContainerWindowProvider >& rProvider );
287 :
288 : virtual ~ExtensionsTabPage();
289 :
290 : virtual void ActivatePage() SAL_OVERRIDE;
291 : virtual void DeactivatePage() SAL_OVERRIDE;
292 :
293 : void ResetPage();
294 : void SavePage();
295 : };
296 :
297 : #endif
298 :
299 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|