1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SC_SOURCE_UI_INC_VALIDATE_HXX
#define INCLUDED_SC_SOURCE_UI_INC_VALIDATE_HXX
#include <sfx2/tabdlg.hxx>
#include "anyrefdg.hxx"
#include <sc.hrc>
struct ScRefHandlerCaller{
virtual ~ScRefHandlerCaller(){}
};
class ScRefHandlerHelper
{
protected:
ScRefHandlerCaller* m_pHandler;
// workaround VS2013 issue with pointers to things that contain virtual base class
#ifdef _WIN32
#pragma pack(push, 16)
#endif
void (ScRefHandlerCaller::*m_pSetReferenceHdl)( const ScRange& , const ScDocument* );
void (ScRefHandlerCaller::*m_pSetActiveHdl)();
void (ScRefHandlerCaller::*m_pRefInputStartPreHdl)( formula::RefEdit* pEdit, const formula::RefButton* pButton );
void (ScRefHandlerCaller::*m_pRefInputDonePostHdl)();
#if defined( _WIN32)
#pragma pack(pop)
#endif
public:
typedef void (ScRefHandlerCaller::*PFUNCSETREFHDLTYPE)( const ScRange& , const ScDocument* );
typedef void (ScRefHandlerCaller::*PCOMMONHDLTYPE)();
typedef void (ScRefHandlerCaller::*PINPUTSTARTDLTYPE)( formula::RefEdit* pEdit, const formula::RefButton* pButton );
void SetSetRefHdl( PFUNCSETREFHDLTYPE pNewHdl )
{
m_pSetReferenceHdl = pNewHdl;
}
void SetSetActHdl( PCOMMONHDLTYPE pNewHdl )
{
m_pSetActiveHdl = pNewHdl;
}
void SetHandler( ScRefHandlerCaller *pNewHandler )
{
m_pHandler = pNewHandler;
}
void SetRefInputStartPreHdl( PINPUTSTARTDLTYPE pNewHdl ){ m_pRefInputStartPreHdl = pNewHdl; }
void SetRefInputDonePostHdl( void (ScRefHandlerCaller::*pNewHdl)() ){ m_pRefInputDonePostHdl = pNewHdl; }
ScRefHandlerHelper():m_pHandler(nullptr), m_pSetReferenceHdl( nullptr ), m_pSetActiveHdl(nullptr), m_pRefInputStartPreHdl( nullptr ), m_pRefInputDonePostHdl( nullptr ){}
};
class ScValidationDlg;
/** The tab page "Criteria" from the Validation dialog. */
class ScTPValidationValue : public ScRefHandlerCaller, public SfxTabPage
{
static const sal_uInt16 pValueRanges[];
public:
explicit ScTPValidationValue(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rArgSet);
static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rArgSet );
virtual ~ScTPValidationValue() override;
static const sal_uInt16* GetRanges() { return pValueRanges; }
virtual bool FillItemSet( SfxItemSet* rArgSet ) override;
virtual void Reset( const SfxItemSet* rArgSet ) override;
private:
void Init();
OUString GetFirstFormula() const;
OUString GetSecondFormula() const;
void SetFirstFormula( const OUString& rFmlaStr );
void SetSecondFormula( const OUString& rFmlaStr );
DECL_LINK(SelectHdl, weld::ComboBox&, void);
DECL_LINK(CheckHdl, weld::Button&, void);
OUString const maStrMin;
OUString const maStrMax;
OUString const maStrValue;
OUString const maStrFormula;
OUString const maStrRange;
OUString const maStrList;
sal_Unicode mcFmlaSep; /// List separator in formulas.
DECL_LINK( EditSetFocusHdl, formula::RefEdit&, void );
DECL_LINK( KillEditFocusHdl, formula::RefEdit&, void );
DECL_LINK( KillButtonFocusHdl, formula::RefButton&, void );
DECL_LINK( ClickHdl, formula::RefButton&, void );
formula::RefEdit* m_pRefEdit;
std::unique_ptr<weld::ComboBox> m_xLbAllow;
std::unique_ptr<weld::CheckButton> m_xCbAllow; /// Allow blank cells.
std::unique_ptr<weld::CheckButton> m_xCbShow; /// Show selection list in cell.
std::unique_ptr<weld::CheckButton> m_xCbSort; /// Sort selection list in cell.
std::unique_ptr<weld::Label> m_xFtValue;
std::unique_ptr<weld::ComboBox> m_xLbValue;
std::unique_ptr<weld::Label> m_xFtMin;
std::unique_ptr<weld::Widget> m_xMinGrid;
std::unique_ptr<formula::RefEdit> m_xEdMin;
std::unique_ptr<weld::TextView> m_xEdList; /// Entries for explicit list
std::unique_ptr<weld::Label> m_xFtMax;
std::unique_ptr<formula::RefEdit> m_xEdMax;
std::unique_ptr<weld::Label> m_xFtHint; /// Hint text for cell range validity.
std::unique_ptr<formula::RefButton> m_xBtnRef;
std::unique_ptr<weld::Container> m_xRefGrid;
weld::Container* m_pRefEditParent;
weld::Container* m_pBtnRefParent;
void SetReferenceHdl( const ScRange& , const ScDocument* );
void SetActiveHdl();
void RefInputStartPreHdl(formula::RefEdit* pEdit, const formula::RefButton* pButton);
void RefInputDonePostHdl();
ScValidationDlg * GetValidationDlg();
public:
void SetupRefDlg();
void RemoveRefDlg(bool bRestoreModal);
};
/** The "Validity" tab dialog. */
class ScValidationDlg
: public ScRefHdlrControllerImpl<SfxTabDialogController, false>
, public ScRefHandlerHelper
{
typedef ScRefHdlrControllerImpl<SfxTabDialogController, false> ScValidationDlgBase;
ScTabViewShell * const m_pTabVwSh;
OString m_sValuePageId;
bool m_bOwnRefHdlr:1;
bool m_bRefInputting:1;
std::unique_ptr<weld::Container> m_xHBox;
bool EnterRefStatus();
bool LeaveRefStatus();
public:
explicit ScValidationDlg(weld::Window* pParent, const SfxItemSet* pArgSet, ScTabViewShell* pTabViewSh);
virtual ~ScValidationDlg() override;
static std::shared_ptr<SfxDialogController> Find1AliveObject(const weld::Window *pAncestor)
{
return SC_MOD()->Find1RefWindow(SLOTID, pAncestor);
}
ScTabViewShell *GetTabViewShell()
{
return m_pTabVwSh;
}
bool SetupRefDlg();
bool RemoveRefDlg(bool bRestoreModal);
void SetModal(bool bModal) { m_xDialog->set_modal(bModal); }
virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ) override
{
if ( m_pHandler && m_pSetReferenceHdl )
(m_pHandler->*m_pSetReferenceHdl)( rRef, pDoc );
}
virtual void SetActive() override
{
if ( m_pHandler && m_pSetActiveHdl )
(m_pHandler->*m_pSetActiveHdl)();
}
bool IsRefInputting() const { return m_bRefInputting; }
weld::Container* get_refinput_shrink_parent() { return m_xHBox.get(); }
virtual void RefInputStart( formula::RefEdit* pEdit, formula::RefButton* pButton = nullptr ) override
{
if( !CanInputStart( pEdit ) )
return;
if ( m_pHandler && m_pRefInputStartPreHdl )
(m_pHandler->*m_pRefInputStartPreHdl)( pEdit, pButton );
m_bRefInputting = true;
ScValidationDlgBase::RefInputStart( pEdit, pButton );
}
virtual void RefInputDone( bool bForced = false ) override
{
if( !CanInputDone( bForced ) )
return;
ScValidationDlgBase::RefInputDone( bForced );
m_bRefInputting = false;
if ( m_pHandler && m_pRefInputDonePostHdl )
(m_pHandler->*m_pRefInputDonePostHdl)();
}
bool IsChildFocus() const;
enum { SLOTID = SID_VALIDITY_REFERENCE };
virtual void Close() override
{
if (m_bOwnRefHdlr)
{
if (SfxTabPage* pPage = GetTabPage(m_sValuePageId))
static_cast<ScTPValidationValue*>(pPage)->RemoveRefDlg(false);
}
ScValidationDlgBase::Close();
}
};
class ScTPValidationHelp : public SfxTabPage
{
private:
std::unique_ptr<weld::CheckButton> m_xTsbHelp;
std::unique_ptr<weld::Entry> m_xEdtTitle;
std::unique_ptr<weld::TextView> m_xEdInputHelp;
public:
ScTPValidationHelp(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rArgSet);
static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rArgSet);
virtual ~ScTPValidationHelp() override;
virtual bool FillItemSet ( SfxItemSet* rArgSet ) override;
virtual void Reset ( const SfxItemSet* rArgSet ) override;
};
class ScTPValidationError : public SfxTabPage
{
private:
std::unique_ptr<weld::CheckButton> m_xTsbShow;
std::unique_ptr<weld::ComboBox> m_xLbAction;
std::unique_ptr<weld::Button> m_xBtnSearch;
std::unique_ptr<weld::Entry> m_xEdtTitle;
std::unique_ptr<weld::Label> m_xFtError;
std::unique_ptr<weld::TextView> m_xEdError;
void Init();
// Handler ------------------------
DECL_LINK(SelectActionHdl, weld::ComboBox&, void);
DECL_LINK(ClickSearchHdl, weld::Button&, void);
public:
ScTPValidationError(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rArgSet);
static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rArgSet);
virtual ~ScTPValidationError() override;
virtual bool FillItemSet ( SfxItemSet* rArgSet ) override;
virtual void Reset ( const SfxItemSet* rArgSet ) override;
};
#endif // INCLUDED_SC_SOURCE_UI_INC_VALIDATE_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|