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