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 SC_NAVIPI_HXX
21 : #define SC_NAVIPI_HXX
22 :
23 : #include <vector>
24 : #include <vcl/toolbox.hxx>
25 : #include <vcl/field.hxx>
26 : #include <vcl/lstbox.hxx>
27 : #include <svtools/stdctrl.hxx>
28 : #include <svl/poolitem.hxx>
29 : #include <svl/lstner.hxx>
30 : #include <sfx2/childwin.hxx>
31 : #include "content.hxx"
32 : #include <svtools/svmedit.hxx>
33 :
34 :
35 : class ScTabViewShell;
36 : class ScViewData;
37 : class ScArea;
38 : class ScScenarioWindow;
39 : class ScNavigatorControllerItem;
40 : class ScNavigatorDialogWrapper;
41 : class ScNavigatorDlg;
42 : class ScNavigatorSettings;
43 :
44 : #define SC_DROPMODE_URL 0
45 : #define SC_DROPMODE_LINK 1
46 : #define SC_DROPMODE_COPY 2
47 :
48 : enum NavListMode { NAV_LMODE_NONE = 0x4000,
49 : NAV_LMODE_AREAS = 0x2000,
50 : NAV_LMODE_DBAREAS = 0x1000,
51 : NAV_LMODE_DOCS = 0x800,
52 : NAV_LMODE_SCENARIOS = 0x400 };
53 :
54 :
55 : // class ScScenarioListBox -----------------------------------------------
56 :
57 :
58 : class ScScenarioListBox : public ListBox
59 : {
60 : public:
61 : explicit ScScenarioListBox( ScScenarioWindow& rParent );
62 : virtual ~ScScenarioListBox();
63 :
64 : void UpdateEntries( const std::vector<OUString> &aNewEntryList );
65 :
66 : protected:
67 : virtual void Select() SAL_OVERRIDE;
68 : virtual void DoubleClick() SAL_OVERRIDE;
69 : virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
70 :
71 : private:
72 0 : struct ScenarioEntry
73 : {
74 : OUString maName;
75 : OUString maComment;
76 : bool mbProtected;
77 :
78 0 : inline explicit ScenarioEntry() : mbProtected( false ) {}
79 : };
80 : typedef ::std::vector< ScenarioEntry > ScenarioList;
81 :
82 : private:
83 : const ScenarioEntry* GetSelectedEntry() const;
84 :
85 : void ExecuteScenarioSlot( sal_uInt16 nSlotId );
86 : void SelectScenario();
87 : void EditScenario();
88 : void DeleteScenario( bool bQueryBox );
89 :
90 : private:
91 : ScScenarioWindow& mrParent;
92 : ScenarioList maEntries;
93 : };
94 :
95 :
96 : // class ScScenarioWindow ------------------------------------------------
97 :
98 : class ScScenarioWindow : public Window
99 : {
100 : public:
101 : ScScenarioWindow( Window* pParent, const OUString& aQH_List, const OUString& aQH_Comment);
102 : virtual ~ScScenarioWindow();
103 :
104 : void NotifyState( const SfxPoolItem* pState );
105 0 : void SetComment( const OUString& rComment )
106 0 : { aEdComment.SetText( rComment ); }
107 :
108 : void SetSizePixel( const Size& rNewSize ) SAL_OVERRIDE;
109 :
110 : protected:
111 :
112 : virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
113 :
114 : private:
115 : ScScenarioListBox aLbScenario;
116 : MultiLineEdit aEdComment;
117 : };
118 :
119 :
120 : // class ColumnEdit
121 :
122 : class ColumnEdit : public SpinField
123 : {
124 : public:
125 : ColumnEdit( ScNavigatorDlg* pParent, const ResId& rResId );
126 : virtual ~ColumnEdit();
127 :
128 0 : SCCOL GetCol() { return nCol; }
129 : void SetCol( SCCOL nColNo );
130 :
131 : protected:
132 : virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
133 : virtual void LoseFocus() SAL_OVERRIDE;
134 : virtual void Up() SAL_OVERRIDE;
135 : virtual void Down() SAL_OVERRIDE;
136 : virtual void First() SAL_OVERRIDE;
137 : virtual void Last() SAL_OVERRIDE;
138 :
139 : private:
140 : ScNavigatorDlg& rDlg;
141 : SCCOL nCol;
142 : sal_uInt16 nKeyGroup;
143 :
144 : void EvalText ();
145 : void ExecuteCol ();
146 : SCCOL AlphaToNum ( OUString& rStr );
147 : SCCOL NumStrToAlpha ( OUString& rStr );
148 : SCCOL NumToAlpha ( SCCOL nColNo, OUString& rStr );
149 : };
150 :
151 : // class RowEdit
152 :
153 : class RowEdit : public NumericField
154 : {
155 : public:
156 : RowEdit( ScNavigatorDlg* pParent, const ResId& rResId );
157 : virtual ~RowEdit();
158 :
159 0 : SCROW GetRow() { return (SCROW)GetValue(); }
160 0 : void SetRow( SCROW nRow ){ SetValue( nRow ); }
161 :
162 : protected:
163 : virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
164 : virtual void LoseFocus() SAL_OVERRIDE;
165 :
166 : private:
167 : ScNavigatorDlg& rDlg;
168 :
169 : void ExecuteRow();
170 : };
171 :
172 : // class ScDocListBox
173 :
174 : class ScDocListBox : public ListBox
175 : {
176 : public:
177 : ScDocListBox( ScNavigatorDlg* pParent, const ResId& rResId );
178 : virtual ~ScDocListBox();
179 :
180 : protected:
181 : virtual void Select() SAL_OVERRIDE;
182 :
183 : private:
184 : ScNavigatorDlg& rDlg;
185 : };
186 :
187 : // class CommandToolBox
188 :
189 : class CommandToolBox : public ToolBox
190 : {
191 : public:
192 : CommandToolBox( ScNavigatorDlg* pParent, const ResId& rResId );
193 : virtual ~CommandToolBox();
194 :
195 : void Select( sal_uInt16 nId );
196 : void UpdateButtons();
197 : void InitImageList();
198 :
199 : virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
200 :
201 : DECL_LINK( ToolBoxDropdownClickHdl, void* );
202 :
203 : protected:
204 : virtual void Select() SAL_OVERRIDE;
205 : virtual void Click() SAL_OVERRIDE;
206 :
207 : private:
208 : ScNavigatorDlg& rDlg;
209 : };
210 :
211 :
212 : // class ScNavigatorDlg
213 :
214 :
215 : class ScNavigatorDlg : public Window, public SfxListener
216 : {
217 : friend class ScNavigatorControllerItem;
218 : friend class ScNavigatorDialogWrapper;
219 : friend class ColumnEdit;
220 : friend class RowEdit;
221 : friend class ScDocListBox;
222 : friend class CommandToolBox;
223 : friend class ScContentTree;
224 :
225 : private:
226 : SfxBindings& rBindings; // must be first member
227 :
228 : ImageList aCmdImageList; // must be before aTbxCmd
229 : FixedInfo aFtCol;
230 : ColumnEdit aEdCol;
231 : FixedInfo aFtRow;
232 : RowEdit aEdRow;
233 : CommandToolBox aTbxCmd;
234 : ScContentTree aLbEntries;
235 : ScScenarioWindow aWndScenarios;
236 : ScDocListBox aLbDocuments;
237 :
238 : Timer aContentTimer;
239 :
240 : OUString aTitleBase;
241 : OUString aStrDragMode;
242 : OUString aStrDisplay;
243 : OUString aStrActive;
244 : OUString aStrNotActive;
245 : OUString aStrHidden;
246 : OUString aStrActiveWin;
247 :
248 : SfxChildWindowContext* pContextWin;
249 : Size aInitSize;
250 : ScArea* pMarkArea;
251 : ScViewData* pViewData;
252 :
253 : long nBorderOffset;
254 : long nListModeHeight;
255 : long nInitListHeight;
256 : NavListMode eListMode;
257 : sal_uInt16 nDropMode;
258 : SCCOL nCurCol;
259 : SCROW nCurRow;
260 : SCTAB nCurTab;
261 : bool bFirstBig;
262 : bool mbUseStyleSettingsBackground;
263 :
264 : ScNavigatorControllerItem** ppBoundItems;
265 :
266 : DECL_LINK( TimeHdl, Timer* );
267 :
268 : void DoResize();
269 :
270 : SfxBindings& GetBindings()
271 : { return rBindings; }
272 :
273 : void SetCurrentCell( SCCOL nCol, SCROW Row );
274 : void SetCurrentCellStr( const OUString& rName );
275 : void SetCurrentTable( SCTAB nTab );
276 : void SetCurrentTableStr( const OUString& rName );
277 : void SetCurrentObject( const OUString& rName );
278 : void SetCurrentDoc( const OUString& rDocName );
279 :
280 : ScTabViewShell* GetTabViewShell() const;
281 : ScNavigatorSettings* GetNavigatorSettings();
282 : bool GetViewData();
283 :
284 : void UpdateColumn ( const SCCOL* pCol = NULL );
285 : void UpdateRow ( const SCROW* pRow = NULL );
286 : void UpdateTable ( const SCTAB* pTab = NULL );
287 : void UpdateAll ();
288 :
289 : void GetDocNames(const OUString* pSelEntry = NULL);
290 :
291 : void SetListMode ( NavListMode eMode, bool bSetSize = true );
292 : void ShowList ( bool bShow, bool bSetSize );
293 : void ShowScenarios ( bool bShow, bool bSetSize );
294 :
295 : void SetDropMode(sal_uInt16 nNew);
296 0 : sal_uInt16 GetDropMode() const { return nDropMode; }
297 :
298 0 : const OUString& GetStrDragMode() const { return aStrDragMode; }
299 0 : const OUString& GetStrDisplay() const { return aStrDisplay; }
300 :
301 : void CheckDataArea ();
302 : void MarkDataArea ();
303 : void UnmarkDataArea ();
304 : void StartOfDataArea ();
305 : void EndOfDataArea ();
306 :
307 : static void ReleaseFocus();
308 :
309 : protected:
310 : virtual void Resize() SAL_OVERRIDE;
311 : virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
312 : virtual void Resizing( Size& rSize );
313 :
314 : public:
315 : ScNavigatorDlg( SfxBindings* pB, SfxChildWindowContext* pCW, Window* pParent,
316 : const bool bUseStyleSettingsBackground);
317 : virtual ~ScNavigatorDlg();
318 :
319 : using Window::Notify;
320 : virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) SAL_OVERRIDE;
321 :
322 : void CursorPosChanged();
323 :
324 : virtual SfxChildAlignment
325 : CheckAlignment(SfxChildAlignment,SfxChildAlignment);
326 : virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
327 : };
328 :
329 0 : class ScNavigatorDialogWrapper: public SfxChildWindowContext
330 : {
331 : public:
332 : ScNavigatorDialogWrapper( Window* pParent,
333 : sal_uInt16 nId,
334 : SfxBindings* pBindings,
335 : SfxChildWinInfo* pInfo );
336 :
337 : SFX_DECL_CHILDWINDOWCONTEXT(ScNavigatorDialogWrapper)
338 :
339 : virtual void Resizing( Size& rSize ) SAL_OVERRIDE;
340 :
341 : private:
342 : ScNavigatorDlg* pNavigator;
343 : };
344 :
345 : #endif // SC_NAVIPI_HXX
346 :
347 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|