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 _FMTFIELD_HXX_
21 : #define _FMTFIELD_HXX_
22 :
23 : #include "svtools/svtdllapi.h"
24 : #include <vcl/spinfld.hxx>
25 : #include <svl/zforlist.hxx>
26 :
27 : namespace validation { class NumberValidator; }
28 :
29 : typedef sal_uInt16 FORMAT_CHANGE_TYPE;
30 : #define FCT_KEYONLY 0x00 // only a new key was set
31 : #define FCT_FORMATTER 0x01 // a new formatter weas set, usually implies a change of the key, too
32 : #define FCT_PRECISION 0x02 // a new precision was set
33 : #define FCT_THOUSANDSSEP 0x03 // the thousands separator setting changed
34 :
35 : //------------------------------------------------------------------------------
36 : class SVT_DLLPUBLIC FormattedField : public SpinField
37 : {
38 : private:
39 : // Da ein SvNumberFormatter eine ziemlich teure (sowohl zeit- als auch platz-maessig) Angelegenheit ist,
40 : // haelt sich nicht jedes Field, an dem kein Formatter gesetzt wurde, eine eigenen Instanz, sondern es gibt nur eine
41 : // einzige statische.
42 : class StaticFormatter
43 : {
44 : static SvNumberFormatter* s_cFormatter;
45 : static sal_uLong s_nReferences;
46 : public:
47 : StaticFormatter();
48 : ~StaticFormatter();
49 :
50 35 : operator SvNumberFormatter* () { return GetFormatter(); }
51 : SVT_DLLPUBLIC SvNumberFormatter* GetFormatter();
52 : };
53 :
54 : protected:
55 : String m_sLastValidText;
56 : // hat nichts mit dem current value zu tun, ist der letzte Text, der waehrend einer Eingabe als gueltig erkannt
57 : // wurde (also durch CheckText geprueft, nicht durch den Formatter gejagt)
58 : Selection m_aLastSelection;
59 :
60 : double m_dMinValue;
61 : double m_dMaxValue;
62 : sal_Bool m_bHasMin : 1;
63 : sal_Bool m_bHasMax : 1;
64 :
65 : sal_Bool m_bStrictFormat : 1;
66 :
67 : sal_Bool m_bValueDirty : 1;
68 : sal_Bool m_bEnableEmptyField : 1;
69 : sal_Bool m_bAutoColor : 1;
70 : sal_Bool m_bEnableNaN : 1;
71 : double m_dCurrentValue;
72 : double m_dDefaultValue;
73 :
74 : sal_uLong m_nFormatKey;
75 : SvNumberFormatter* m_pFormatter;
76 : StaticFormatter m_aStaticFormatter;
77 :
78 : double m_dSpinSize;
79 : double m_dSpinFirst;
80 : double m_dSpinLast;
81 :
82 : // es macht einen Unterschied, ob man bei eingestellter Textformatierung beim LostFocus den aktuellen String durch
83 : // den Formatter jagt und das Ergebnis anzeigt oder erst aus dem String ein double macht, das formatiert und dann
84 : // ausgibt
85 : sal_Bool m_bTreatAsNumber;
86 : // und mit den folgenden Members koennen wir das Ganze hier auch zur formatierten Text-Ausgabe benutzen ...
87 : String m_sCurrentTextValue;
88 : String m_sDefaultText;
89 :
90 : // die bei der letzten Ausgabe-Operation vom Formatter gelieferte Farbe (nicht dass wir sie beachten wuerden, aber
91 : // man kann sie von aussen abfragen)
92 : Color* m_pLastOutputColor;
93 :
94 : bool m_bUseInputStringForFormatting;
95 :
96 : public:
97 : FormattedField(Window* pParent, WinBits nStyle = 0, SvNumberFormatter* pInitialFormatter = NULL, sal_Int32 nFormatKey = 0);
98 : FormattedField(Window* pParent, const ResId& rResId, SvNumberFormatter* pInitialFormatter = NULL, sal_Int32 nFormatKey = 0);
99 : virtual ~FormattedField();
100 :
101 : // Min-/Max-Verwaltung
102 0 : sal_Bool HasMinValue() const { return m_bHasMin; }
103 1 : void ClearMinValue() { m_bHasMin = sal_False; }
104 : void SetMinValue(double dMin);
105 0 : double GetMinValue() const { return m_dMinValue; }
106 :
107 0 : sal_Bool HasMaxValue() const { return m_bHasMax; }
108 1 : void ClearMaxValue() { m_bHasMax = sal_False; }
109 : void SetMaxValue(double dMax);
110 0 : double GetMaxValue() const { return m_dMaxValue; }
111 :
112 : // aktueller Wert
113 : virtual void SetValue(double dVal);
114 : virtual double GetValue();
115 : // die Standard-Implementierung jagt die Eingabe jeweils durch den Formatter, so einer vorhanden ist
116 :
117 : void GetColor() const;
118 :
119 : void SetTextValue(const OUString& rText);
120 : // der String wird in ein double umgewandelt (durch den Formatter) und anschliessen in SetValue gesteckt
121 :
122 420 : sal_Bool IsEmptyFieldEnabled() const { return m_bEnableEmptyField; }
123 : void EnableEmptyField(sal_Bool bEnable);
124 : // wenn nicht enabled, wird beim Verlassen des Feldes der Text auf den letzten gueltigen zurueckgesetzt
125 :
126 0 : void SetDefaultValue(double dDefault) { m_dDefaultValue = dDefault; m_bValueDirty = sal_True; }
127 : // wenn der aktuelle String ungueltig ist, liefert GetValue() diesen Default-Wert
128 0 : double GetDefaultValue() const { return m_dDefaultValue; }
129 :
130 : // Einstellungen fuer das Format
131 0 : sal_uLong GetFormatKey() const { return m_nFormatKey; }
132 : void SetFormatKey(sal_uLong nFormatKey);
133 :
134 1 : SvNumberFormatter* GetFormatter() const { return m_pFormatter; }
135 : void SetFormatter(SvNumberFormatter* pFormatter, sal_Bool bResetFormat = sal_True);
136 : // wenn bResetFormat sal_False ist, wird versucht, das alte eingestellte Format mit 'hinueberzuretten' (teuer, wenn es sich nicht
137 : // um eines der Standard-Formate handelt, die in allen Formattern gleich sind)
138 : // wenn sal_True, wird als neuer FormatKey 0 gesetzt
139 :
140 : sal_Bool GetThousandsSep() const;
141 : void SetThousandsSep(sal_Bool _bUseSeparator);
142 : // the is no check if the current format is numeric, so be cautious when calling these functions
143 :
144 : sal_uInt16 GetDecimalDigits() const;
145 : void SetDecimalDigits(sal_uInt16 _nPrecision);
146 : // the is no check if the current format is numeric, so be cautious when calling these functions
147 :
148 35 : SvNumberFormatter* StandardFormatter() { return m_aStaticFormatter; }
149 : // Wenn man keinen eigenen Formatter explizit anlegen will, kann man diesen hier in SetFormatter stecken ...
150 : // Das hier gelieferte Objekt wird allerdings zwischen allen Instanzen der Klasse geteilt (aus Zeit- und Platzgruenden),
151 : // also ist etwas Vorsicht angebracht ...
152 :
153 : OUString GetFormat(LanguageType& eLang) const;
154 : sal_Bool SetFormat(const OUString& rFormatString, LanguageType eLang);
155 : // sal_False, wenn der FormatString nicht gesetzt werden konnte (also wahrscheinlich ungueltig ist)
156 :
157 69 : sal_Bool IsStrictFormat() const { return m_bStrictFormat; }
158 28 : void SetStrictFormat(sal_Bool bEnable) { m_bStrictFormat = bEnable; }
159 : // Formatueberpruefung waehrend der Eingabe ?
160 :
161 : // Spin-Handling
162 : virtual void Up();
163 : virtual void Down();
164 : // Standard-Implementierung : hoch- oder runterzaehlen des aktuellen double einfach um die gesetzte SpinSize
165 : virtual void First();
166 : virtual void Last();
167 : // Standard-Implementierung : aktuelles double setzen auf eingestellten first respektive last value
168 :
169 58 : void SetSpinSize(double dStep) { m_dSpinSize = dStep; }
170 0 : double GetSpinSize() const { return m_dSpinSize; }
171 :
172 42 : void SetSpinFirst(double dFirst) { m_dSpinFirst = dFirst; }
173 0 : double GetSpinFirst() const { return m_dSpinFirst; }
174 :
175 42 : void SetSpinLast(double dLast) { m_dSpinLast = dLast; }
176 0 : double GetSpinLast() const { return m_dSpinLast; }
177 :
178 53 : sal_Bool TreatingAsNumber() const { return m_bTreatAsNumber; }
179 29 : void TreatAsNumber(sal_Bool bDoSo) { m_bTreatAsNumber = bDoSo; }
180 :
181 : public:
182 : virtual void SetText( const OUString& rStr );
183 : virtual void SetText( const OUString& rStr, const Selection& rNewSelection );
184 :
185 : // die folgenden Methoden sind interesant, wenn m_bTreatAsNumber auf sal_False sitzt
186 : /** nehmen wir mal an, irgendjemand will das ganze schoene double-Handling gar nicht haben, sondern
187 : einfach den Text formatiert ausgeben ...
188 : (der Text wird einfach nur durch den Formatter gejagt und dann gesetzt)
189 : */
190 : void SetTextFormatted(const OUString& rText);
191 : String GetTextValue() const;
192 :
193 0 : void SetDefaultText(const OUString& rDefault) { m_sDefaultText = rDefault; }
194 0 : String GetDefaultText() const { return m_sDefaultText; }
195 :
196 : // die bei der letzten Ausgabe-Operation vom Formatter gelieferte Farbe (Ausgabe-Operationen werden getriggert durch
197 : // SetValue, SetTextValue, SetTextFormatted, also indirekt eventuell auch durch SetMin-/-MaxValue)
198 16 : Color* GetLastOutputColor() const { return m_pLastOutputColor; }
199 :
200 : /** reformats the current text. Interesting if the user entered some text in an "input format", and
201 : this should be formatted in the "output format" (which may differ, e.g. by additional numeric
202 : digits or such).
203 : */
204 : void Commit();
205 :
206 : // enable automatic coloring. if set to sal_True, and the format the field is working with for any current value
207 : // says that it has to be painted in a special color (e.g. a format where negative numbers should be printed
208 : // red), the text is painted with that color automatically.
209 : // The color used is the same as returned by GetLastOutputColor()
210 : void SetAutoColor(sal_Bool _bAutomatic);
211 : sal_Bool GetAutoColor() const { return m_bAutoColor; }
212 :
213 : /** enables handling of not-a-number value.
214 :
215 : When this is set to <FALSE/> (the default), then invalid inputs (i.e. text which cannot be
216 : intepreted, according to the current formatting) will be handled as if the default value
217 : has been entered. GetValue the will return this default value.
218 :
219 : When set to <TRUE/>, then GetValue will return NaN (not a number, see <method scope="rtl::math">isNan</method>)
220 : when the current input is invalid.
221 :
222 : Note that setting this to <TRUE/> implies that upon leaving the control, the input
223 : will *not* be corrected to a valid value. For example, if the user enters "foo" in the
224 : control, and then tabs out of it, the text "foo" will persist, and GetValue will
225 : return NaN in subsequent calls.
226 : */
227 : void EnableNotANumber( sal_Bool _bEnable );
228 : sal_Bool IsNotANumberEnabled( ) const { return m_bEnableNaN; }
229 :
230 : /** When being set to true, the strings in the field are formatted using the
231 : InputLine format. That's also what you get in Calc when you edit a cell
232 : using F2
233 : */
234 : void UseInputStringForFormatting( bool bUseInputStr = true );
235 : bool IsUsingInputStringForFormatting() const;
236 :
237 : protected:
238 : virtual long Notify(NotifyEvent& rNEvt);
239 : void impl_Modify(bool makeValueDirty = true);
240 : virtual void Modify();
241 :
242 : // CheckText ueberschreiben fuer Ueberpruefung zur Eingabezeit
243 41 : virtual sal_Bool CheckText(const OUString&) const { return sal_True; }
244 :
245 : // any aspect of the current format has changed
246 : virtual void FormatChanged(FORMAT_CHANGE_TYPE nWhat);
247 :
248 : void ImplSetTextImpl(const OUString& rNew, Selection* pNewSel);
249 : void ImplSetValue(double dValue, sal_Bool bForce);
250 : sal_Bool ImplGetValue(double& dNewVal);
251 :
252 : void ImplSetFormatKey(sal_uLong nFormatKey);
253 : // SetFormatKey without FormatChanged notification
254 :
255 35 : virtual SvNumberFormatter* CreateFormatter() { SetFormatter(StandardFormatter()); return m_pFormatter; }
256 1320 : SvNumberFormatter* ImplGetFormatter() const { return m_pFormatter ? m_pFormatter : ((FormattedField*)this)->CreateFormatter(); }
257 :
258 : long PreNotify(NotifyEvent& rNEvt);
259 :
260 : virtual void ReFormat();
261 : };
262 :
263 : //------------------------------------------------------------------------------
264 : class SVT_DLLPUBLIC DoubleNumericField : public FormattedField
265 : {
266 : protected:
267 : validation::NumberValidator* m_pNumberValidator;
268 :
269 : public:
270 17 : DoubleNumericField(Window* pParent, WinBits nStyle = 0)
271 : :FormattedField(pParent, nStyle)
272 17 : ,m_pNumberValidator( NULL )
273 : {
274 17 : ResetConformanceTester();
275 17 : }
276 :
277 : DoubleNumericField(Window* pParent, const ResId& rResId)
278 : :FormattedField(pParent, rResId)
279 : ,m_pNumberValidator( NULL )
280 : {
281 : ResetConformanceTester();
282 : }
283 : virtual ~DoubleNumericField();
284 :
285 : protected:
286 : virtual sal_Bool CheckText(const OUString& sText) const;
287 :
288 : virtual void FormatChanged(FORMAT_CHANGE_TYPE nWhat);
289 : void ResetConformanceTester();
290 : };
291 :
292 : //==============================================================================
293 : #define FCT_CURRENCY_SYMBOL 0x10
294 : #define FCT_CURRSYM_POSITION 0x20
295 :
296 : //------------------------------------------------------------------------------
297 34 : class DoubleCurrencyField : public FormattedField
298 : {
299 : OUString m_sCurrencySymbol;
300 : sal_Bool m_bPrependCurrSym;
301 : sal_Bool m_bChangingFormat;
302 :
303 : public:
304 : DoubleCurrencyField(Window* pParent, WinBits nStyle = 0);
305 :
306 111 : OUString getCurrencySymbol() const { return m_sCurrencySymbol; }
307 : void setCurrencySymbol(const OUString& rSymbol);
308 :
309 111 : sal_Bool getPrependCurrSym() const { return m_bPrependCurrSym; }
310 : void setPrependCurrSym(sal_Bool _bPrepend);
311 :
312 : protected:
313 : virtual void FormatChanged(FORMAT_CHANGE_TYPE nWhat);
314 :
315 : void UpdateCurrencyFormat();
316 : };
317 :
318 : #endif // _FMTFIELD_HXX_
319 :
320 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|