1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_PRCNTFLD_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_PRCNTFLD_HXX
22 #include <svtools/unitconv.hxx>
23 #include <vcl/weld.hxx>
26 class SW_DLLPUBLIC SwPercentField
28 std::unique_ptr
<weld::MetricSpinButton
> m_pField
;
30 int nRefValue
; // 100% value for conversion (in Twips)
37 sal_uInt16 nOldDigits
;
39 bool bLockAutoCalculation
; //prevent recalculation of percent values when the
40 //reference value is changed
42 SAL_DLLPRIVATE
static int ImpPower10(sal_uInt16 n
);
46 SwPercentField(std::unique_ptr
<weld::MetricSpinButton
> pControl
);
47 const weld::MetricSpinButton
* get() const { return m_pField
.get(); }
48 weld::MetricSpinButton
* get() { return m_pField
.get(); }
49 void connect_value_changed(const Link
<weld::MetricSpinButton
&, void>& rLink
) { m_pField
->connect_value_changed(rLink
); }
50 void SetMetric(FieldUnit eUnit
) { ::SetFieldUnit(*m_pField
, eUnit
); }
51 void set_sensitive(bool bEnable
) { m_pField
->set_sensitive(bEnable
); }
52 void show() { m_pField
->show(); }
53 bool has_focus() const { return m_pField
->has_focus(); }
54 void save_value() { m_pField
->save_value(); }
55 bool get_value_changed_from_saved() const { return m_pField
->get_value_changed_from_saved(); }
56 void set_text(const OUString
& rStr
) { m_pField
->set_text(rStr
); }
57 void set_accessible_name(const OUString
& rStr
) { m_pField
->set_accessible_name(rStr
); }
58 void SetMetricFieldMin(int nNewMin
) { m_pField
->set_min(nNewMin
, FieldUnit::NONE
); }
59 void SetMetricFieldMax(int nNewMax
) { m_pField
->set_max(nNewMax
, FieldUnit::NONE
); }
60 void SetMetricFieldRange(int nNewMin
, int nNewMax
) { m_pField
->set_range(nNewMin
, nNewMax
, FieldUnit::NONE
); }
61 void GetMetricFieldRange(int &rOldMin
, int& rOldMax
) const { m_pField
->get_range(rOldMin
, rOldMax
, FieldUnit::NONE
); }
63 void set_value(int nNewValue
, FieldUnit eInUnit
= FieldUnit::NONE
);
64 int get_value(FieldUnit eOutUnit
= FieldUnit::NONE
);
66 void set_min(int nNewMin
, FieldUnit eInUnit
);
67 void set_max(int nNewMax
, FieldUnit eInUnit
);
69 int get_min(FieldUnit eOutUnit
= FieldUnit::NONE
) const { return m_pField
->get_min(eOutUnit
); }
71 int NormalizePercent(int nValue
);
72 int DenormalizePercent(int nValue
);
74 void SetRefValue(int nValue
);
75 int GetRealValue(FieldUnit eOutUnit
);
77 int Convert(int nValue
, FieldUnit eInUnit
, FieldUnit eOutUnit
);
79 void ShowPercent(bool bPercent
);
81 void LockAutoCalculation(bool bLock
) {bLockAutoCalculation
= bLock
;}
85 #endif // INCLUDED_SW_SOURCE_UIBASE_INC_PRCNTFLD_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */