summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/toolkit/longcurr.hxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/include/vcl/toolkit/longcurr.hxx b/include/vcl/toolkit/longcurr.hxx
index d00c0aa0364b..a2f0d4781d72 100644
--- a/include/vcl/toolkit/longcurr.hxx
+++ b/include/vcl/toolkit/longcurr.hxx
@@ -38,17 +38,10 @@ public:
virtual void Reformat() override;
virtual void ReformatAll() override;
- void SetUseThousandSep( bool b );
bool IsUseThousandSep() const { return mbThousandSep; }
- void SetCurrencySymbol( const OUString& rStr );
OUString const & GetCurrencySymbol() const;
- void SetMin(const BigInt& rNewMin);
- const BigInt& GetMin() const { return mnMin; }
- void SetMax(const BigInt& rNewMax);
- const BigInt& GetMax() const { return mnMax; }
-
void SetDecimalDigits( sal_uInt16 nDigits );
sal_uInt16 GetDecimalDigits() const { return mnDecimalDigits;}
void SetValue(const BigInt& rNewValue);
@@ -71,32 +64,4 @@ private:
};
-class UNLESS_MERGELIBS(VCL_DLLPUBLIC) LongCurrencyField final : public SpinField, public LongCurrencyFormatter
-{
- friend void ImplNewLongCurrencyFieldValue(LongCurrencyField*, const BigInt&);
-
-private:
- BigInt mnSpinSize;
- BigInt mnFirst;
- BigInt mnLast;
-
-public:
- LongCurrencyField( vcl::Window* pParent, WinBits nWinStyle );
-
- virtual bool EventNotify( NotifyEvent& rNEvt ) override;
-
- void Modify() override;
- void Up() override;
- void Down() override;
- void First() override;
- void Last() override;
-
- void SetFirst(const BigInt& rNewFirst ) { mnFirst = rNewFirst; }
- const BigInt& GetFirst() const { return mnFirst; }
- void SetLast(const BigInt& rNewLast ) { mnLast = rNewLast; }
- const BigInt& GetLast() const { return mnLast; }
- void SetSpinSize(const BigInt& rNewSize) { mnSpinSize = rNewSize; }
- const BigInt& GetSpinSize() const { return mnSpinSize; }
-};
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */