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