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_VALIDATE_HXX
21 : #define SC_VALIDATE_HXX
22 :
23 : #include <sfx2/tabdlg.hxx>
24 : #include <vcl/edit.hxx>
25 : #include <vcl/fixed.hxx>
26 : #include <vcl/lstbox.hxx>
27 : #include <svtools/svmedit.hxx>
28 :
29 : #include "anyrefdg.hxx"
30 :
31 : // ============================================================================
32 :
33 0 : struct ScRefHandlerCaller{
34 0 : virtual ~ScRefHandlerCaller(){}
35 : };
36 : class ScRefHandlerHelper
37 : {
38 : protected:
39 : ScRefHandlerCaller *m_pHandler;
40 : void (ScRefHandlerCaller::*m_pSetReferenceHdl)( const ScRange& , ScDocument* );
41 : void (ScRefHandlerCaller::*m_pSetActiveHdl)();
42 : void (ScRefHandlerCaller::*m_pRefInputStartPreHdl)( formula::RefEdit* pEdit, formula::RefButton* pButton );
43 : void (ScRefHandlerCaller::*m_pRefInputStartPostHdl)( formula::RefEdit* pEdit, formula::RefButton* pButton );
44 : void (ScRefHandlerCaller::*m_pRefInputDonePreHdl)();
45 : void (ScRefHandlerCaller::*m_pRefInputDonePostHdl)();
46 :
47 : public:
48 : typedef void (ScRefHandlerCaller::*PFUNCSETREFHDLTYPE)( const ScRange& , ScDocument* );
49 : typedef void (ScRefHandlerCaller::*PCOMMONHDLTYPE)();
50 : typedef void (ScRefHandlerCaller::*PINPUTSTARTDLTYPE)( formula::RefEdit* pEdit, formula::RefButton* pButton );
51 :
52 0 : PFUNCSETREFHDLTYPE SetSetRefHdl( PFUNCSETREFHDLTYPE pNewHdl )
53 : {
54 0 : PFUNCSETREFHDLTYPE pOldHdl = m_pSetReferenceHdl;
55 0 : m_pSetReferenceHdl = pNewHdl;
56 0 : return pOldHdl;
57 : }
58 :
59 0 : PCOMMONHDLTYPE SetSetActHdl( PCOMMONHDLTYPE pNewHdl )
60 : {
61 0 : PCOMMONHDLTYPE pOldHdl = m_pSetActiveHdl;
62 0 : m_pSetActiveHdl = pNewHdl;
63 0 : return pOldHdl;
64 : }
65 :
66 0 : ScRefHandlerCaller *SetHandler( ScRefHandlerCaller *pNewHandler )
67 : {
68 0 : ScRefHandlerCaller *pOldHandler = m_pHandler;
69 0 : m_pHandler = pNewHandler;
70 0 : return pOldHandler;
71 : }
72 0 : void SetRefInputStartPreHdl( PINPUTSTARTDLTYPE pNewHdl ){ m_pRefInputStartPreHdl = pNewHdl; }
73 0 : void SetRefInputDonePostHdl( void (ScRefHandlerCaller::*pNewHdl)() ){ m_pRefInputDonePostHdl = pNewHdl; }
74 : void SetRefInputStartPostHdl( PINPUTSTARTDLTYPE pNewHdl ){ m_pRefInputStartPostHdl = pNewHdl; }
75 0 : void SetRefInputDonePreHdl( void (ScRefHandlerCaller::*pNewHdl)() ){ m_pRefInputDonePreHdl = pNewHdl; }
76 :
77 0 : ScRefHandlerHelper():m_pHandler(NULL), m_pSetReferenceHdl( NULL ), m_pSetActiveHdl(NULL), m_pRefInputStartPreHdl( NULL ), m_pRefInputStartPostHdl( NULL ), m_pRefInputDonePreHdl( NULL ), m_pRefInputDonePostHdl( NULL ){}
78 : };
79 :
80 : /** The "Validity" tab dialog. */
81 : class ScValidationDlg :public ScRefHdlrImpl<ScValidationDlg, SfxTabDialog, false>, public ScRefHandlerHelper
82 : {
83 : typedef ScRefHdlrImpl<ScValidationDlg, SfxTabDialog, false> ScValidationDlgBase;
84 :
85 : DECL_LINK( OkHdl, Button * );
86 :
87 : bool m_bOwnRefHdlr:1;
88 :
89 : ScTabViewShell *m_pTabVwSh;
90 : bool m_bRefInputting:1;
91 : bool EnterRefStatus();
92 : bool LeaveRefStatus();
93 :
94 : public:
95 : explicit ScValidationDlg( Window* pParent, const SfxItemSet* pArgSet, ScTabViewShell * pTabViewSh, SfxBindings *pB = NULL );
96 : virtual ~ScValidationDlg();
97 : inline static ScValidationDlg * Find1AliveObject( Window *pAncestor );
98 : bool IsAlive();
99 : inline ScTabViewShell * GetTabViewShell();
100 :
101 : bool SetupRefDlg();
102 : bool RemoveRefDlg( sal_Bool bRestoreModal = sal_True );
103 :
104 0 : virtual void SetModal( sal_Bool bModal ){ ScValidationDlgBase::SetModalInputMode( bModal ); }
105 :
106 0 : virtual void SetReference( const ScRange& rRef, ScDocument* pDoc )
107 : {
108 0 : if ( m_pHandler && m_pSetReferenceHdl )
109 0 : (m_pHandler->*m_pSetReferenceHdl)( rRef, pDoc );
110 0 : }
111 :
112 0 : virtual void SetActive()
113 : {
114 0 : if ( m_pHandler && m_pSetActiveHdl )
115 0 : (m_pHandler->*m_pSetActiveHdl)();
116 0 : }
117 :
118 : void CloseRefDialog()
119 : {
120 : OSL_FAIL( "should not execute here!!!when the edit kill focus, should remove refhandler.\r\n" );
121 :
122 : if ( IsInExecute() )
123 : EndDialog( false );
124 : else if ( GetStyle() & WB_CLOSEABLE )
125 : Close();
126 : }
127 :
128 0 : bool IsRefInputting(){ return m_bRefInputting; }
129 :
130 0 : virtual void RefInputStart( formula::RefEdit* pEdit, formula::RefButton* pButton = NULL )
131 : {
132 0 : if( !CanInputStart( pEdit ) )
133 0 : return;
134 :
135 0 : if ( m_pHandler && m_pRefInputStartPreHdl )
136 0 : (m_pHandler->*m_pRefInputStartPreHdl)( pEdit, pButton );
137 0 : m_bRefInputting = true;
138 0 : ScValidationDlgBase::RefInputStart( pEdit, pButton );
139 0 : if ( m_pHandler && m_pRefInputStartPostHdl )
140 0 : (m_pHandler->*m_pRefInputStartPostHdl)( pEdit, pButton );
141 : }
142 :
143 0 : virtual void RefInputDone( sal_Bool bForced = false )
144 : {
145 0 : if( !CanInputDone( bForced ) )
146 0 : return;
147 :
148 0 : if ( m_pHandler && m_pRefInputDonePreHdl )
149 0 : (m_pHandler->*m_pRefInputDonePreHdl)();
150 :
151 0 : ScValidationDlgBase::RefInputDone( bForced );
152 0 : m_bRefInputting = false;
153 :
154 0 : if ( m_pHandler && m_pRefInputDonePostHdl )
155 0 : (m_pHandler->*m_pRefInputDonePostHdl)();
156 : }
157 :
158 : sal_Bool IsChildFocus();
159 :
160 : enum { SLOTID = SID_VALIDITY_REFERENCE };
161 :
162 : sal_Bool Close();
163 : };
164 :
165 :
166 : // ============================================================================
167 :
168 : /** The tab page "Criteria" from the Validation dialog. */
169 : class ScTPValidationValue : public ScRefHandlerCaller, public SfxTabPage
170 : {
171 : public:
172 : explicit ScTPValidationValue( Window* pParent, const SfxItemSet& rArgSet );
173 : virtual ~ScTPValidationValue();
174 :
175 : static SfxTabPage* Create( Window* pParent, const SfxItemSet& rArgSet );
176 : static sal_uInt16* GetRanges();
177 :
178 : virtual sal_Bool FillItemSet( SfxItemSet& rArgSet );
179 : virtual void Reset( const SfxItemSet& rArgSet );
180 :
181 : private:
182 : void Init();
183 :
184 : String GetFirstFormula() const;
185 : String GetSecondFormula() const;
186 :
187 : void SetFirstFormula( const String& rFmlaStr );
188 : void SetSecondFormula( const String& rFmlaStr );
189 :
190 : DECL_LINK(SelectHdl, void *);
191 : DECL_LINK(CheckHdl, void *);
192 :
193 : FixedText maFtAllow;
194 : ListBox maLbAllow;
195 : CheckBox maCbAllow; /// Allow blank cells.
196 : CheckBox maCbShow; /// Show selection list in cell.
197 : CheckBox maCbSort; /// Sort selection list in cell.
198 : FixedText maFtValue;
199 : ListBox maLbValue;
200 : FixedText maFtMin;
201 : formula::RefEdit maEdMin;
202 : MultiLineEdit maEdList; /// Entries for explicit list
203 : FixedText maFtMax;
204 : formula::RefEdit maEdMax;
205 : FixedText maFtHint; /// Hint text for cell range validity.
206 :
207 : String maStrMin;
208 : String maStrMax;
209 : String maStrValue;
210 : String maStrRange;
211 : String maStrList;
212 : sal_Unicode mcFmlaSep; /// List separator in formulas.
213 :
214 : DECL_LINK(EditSetFocusHdl, void *);
215 : DECL_LINK( KillFocusHdl, Window *);
216 : void OnClick( Button *pBtn );
217 : formula::RefEdit* m_pRefEdit;
218 0 : class ScRefButtonEx:public ::formula::RefButton
219 : {
220 : void Click();
221 : public:
222 0 : ScRefButtonEx( Window* pParent, const ResId& rResId, formula::RefEdit* pEdit = NULL, ScRefHandler *pRefHdlr = NULL ): ::formula::RefButton( pParent, rResId, pEdit, pRefHdlr ){}
223 : }m_btnRef;
224 : friend class ScRefButtonEx;
225 : void SetReferenceHdl( const ScRange& , ScDocument* );
226 : void SetActiveHdl();
227 : void RefInputStartPreHdl( formula::RefEdit* pEdit, formula::RefButton* pButton );
228 : void RefInputDonePreHdl();
229 : void RefInputDonePostHdl();
230 : ScValidationDlg * GetValidationDlg();
231 :
232 : void TidyListBoxes();
233 : public:
234 : sal_uInt16 GetAllowEntryPos();
235 : String GetMinText();
236 : void SetupRefDlg();
237 : void RemoveRefDlg();
238 : };
239 :
240 :
241 : //==================================================================
242 :
243 : class ScTPValidationHelp : public SfxTabPage
244 : {
245 : private:
246 : TriStateBox aTsbHelp;
247 : FixedLine aFlContent;
248 : FixedText aFtTitle;
249 : Edit aEdtTitle;
250 : FixedText aFtInputHelp;
251 : MultiLineEdit aEdInputHelp;
252 :
253 : void Init();
254 :
255 : // Handler ------------------------
256 : // DECL_LINK( SelectHdl, ListBox * );
257 :
258 : public:
259 : ScTPValidationHelp( Window* pParent, const SfxItemSet& rArgSet );
260 : ~ScTPValidationHelp();
261 :
262 : static SfxTabPage* Create ( Window* pParent, const SfxItemSet& rArgSet );
263 : static sal_uInt16* GetRanges ();
264 : virtual sal_Bool FillItemSet ( SfxItemSet& rArgSet );
265 : virtual void Reset ( const SfxItemSet& rArgSet );
266 : };
267 :
268 : //==================================================================
269 :
270 : class ScTPValidationError : public SfxTabPage
271 : {
272 : private:
273 : TriStateBox aTsbShow;
274 : FixedLine aFlContent;
275 : FixedText aFtAction;
276 : ListBox aLbAction;
277 : PushButton aBtnSearch;
278 : FixedText aFtTitle;
279 : Edit aEdtTitle;
280 : FixedText aFtError;
281 : MultiLineEdit aEdError;
282 :
283 : void Init();
284 :
285 : // Handler ------------------------
286 : DECL_LINK(SelectActionHdl, void *);
287 : DECL_LINK(ClickSearchHdl, void *);
288 :
289 : public:
290 : ScTPValidationError( Window* pParent, const SfxItemSet& rArgSet );
291 : ~ScTPValidationError();
292 :
293 : static SfxTabPage* Create ( Window* pParent, const SfxItemSet& rArgSet );
294 : static sal_uInt16* GetRanges ();
295 : virtual sal_Bool FillItemSet ( SfxItemSet& rArgSet );
296 : virtual void Reset ( const SfxItemSet& rArgSet );
297 : };
298 :
299 0 : inline ScTabViewShell *ScValidationDlg::GetTabViewShell()
300 : {
301 0 : return m_pTabVwSh;
302 : }
303 :
304 0 : inline ScValidationDlg * ScValidationDlg::Find1AliveObject( Window *pAncestor )
305 : {
306 0 : return static_cast<ScValidationDlg *>( SC_MOD()->Find1RefWindow( SLOTID, pAncestor ) );
307 : }
308 :
309 : #endif // SC_VALIDATE_HXX
310 :
311 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|