summaryrefslogtreecommitdiff
path: root/include/vcl/longcurr.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-07-12 20:42:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-07-15 10:26:16 +0200
commit0c85d1ee0688435ffefd8eff797e57eac9bace27 (patch)
tree0681c97f574125c370a35ef858b7fc9aa9e8f687 /include/vcl/longcurr.hxx
parent1c24c5047d08cce8cc7f0b0a4acc93cfc5739da5 (diff)
weld LongCurrencyControl
Change-Id: I700329aeee53f8ce91ce22a3b50fe59e3d19c063 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98613 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/longcurr.hxx')
-rw-r--r--include/vcl/longcurr.hxx102
1 files changed, 0 insertions, 102 deletions
diff --git a/include/vcl/longcurr.hxx b/include/vcl/longcurr.hxx
deleted file mode 100644
index 6732a184b34b..000000000000
--- a/include/vcl/longcurr.hxx
+++ /dev/null
@@ -1,102 +0,0 @@
-/* -*- 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_VCL_LONGCURR_HXX
-#define INCLUDED_VCL_LONGCURR_HXX
-
-#include <config_options.h>
-#include <vcl/dllapi.h>
-#include <tools/bigint.hxx>
-#include <vcl/field.hxx>
-
-class LocaleDataWrapper;
-
-class UNLESS_MERGELIBS(VCL_DLLPUBLIC) LongCurrencyFormatter : public FormatterBase
-{
-public:
- virtual ~LongCurrencyFormatter() override;
-
- 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);
- void SetUserValue( BigInt nNewValue );
- BigInt GetValue() const;
-
-protected:
- BigInt mnLastValue;
- BigInt mnMin;
- BigInt mnMax;
-
- LongCurrencyFormatter(Edit* pEdit);
-private:
- friend bool ImplLongCurrencyReformat( const OUString&, BigInt const &, BigInt const &, sal_uInt16, const LocaleDataWrapper&, OUString&, LongCurrencyFormatter const & );
- SAL_DLLPRIVATE void ImpInit();
-
- OUString maCurrencySymbol;
- sal_uInt16 mnDecimalDigits;
- bool mbThousandSep;
-
-};
-
-
-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; }
-};
-
-#endif // INCLUDED_VCL_LONGCURR_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */