Fix typo in code
[LibreOffice.git] / include / svx / relfld.hxx
blob85cec451cb94d9018d6b110e4933f0570f4ea7ef
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_SVX_RELFLD_HXX
20 #define INCLUDED_SVX_RELFLD_HXX
22 #include <tools/fldunit.hxx>
23 #include <svtools/unitconv.hxx>
24 #include <vcl/weld.hxx>
25 #include <svx/svxdllapi.h>
27 class SVX_DLLPUBLIC SvxRelativeField
29 private:
30 std::unique_ptr<weld::MetricSpinButton> m_xSpinButton;
32 sal_uInt16 nRelMin;
33 sal_uInt16 nRelMax;
34 bool bRelativeMode;
35 bool bRelative;
36 bool bNegativeEnabled;
38 DECL_DLLPRIVATE_LINK(ModifyHdl, weld::Entry&, void);
40 public:
41 SvxRelativeField(std::unique_ptr<weld::MetricSpinButton> pControl);
43 void EnableRelativeMode( sal_uInt16 nMin, sal_uInt16 nMax );
44 void SetRelative( bool bRelative );
45 bool IsRelative() const { return bRelative; }
46 void EnableNegativeMode() {bNegativeEnabled = true;}
48 void set_sensitive(bool sensitive) { m_xSpinButton->set_sensitive(sensitive); }
49 bool get_sensitive() const { return m_xSpinButton->get_sensitive(); }
50 void set_value(int nValue, FieldUnit eValueUnit) { m_xSpinButton->set_value(nValue, eValueUnit); }
51 int get_value(FieldUnit eDestUnit) const { return m_xSpinButton->get_value(eDestUnit); }
52 int get_min(FieldUnit eValueUnit) const { return m_xSpinButton->get_min(eValueUnit); }
53 void set_min(int min, FieldUnit eValueUnit) { m_xSpinButton->set_min(min, eValueUnit); }
54 void set_max(int max, FieldUnit eValueUnit) { m_xSpinButton->set_max(max, eValueUnit); }
55 int normalize(int nValue) const { return m_xSpinButton->normalize(nValue); }
56 int denormalize(int nValue) const { return m_xSpinButton->denormalize(nValue); }
57 void connect_value_changed(const Link<weld::MetricSpinButton&, void>& rLink) { m_xSpinButton->connect_value_changed(rLink); }
58 OUString get_text() const { return m_xSpinButton->get_text(); }
59 void set_text(const OUString& rText) { m_xSpinButton->set_text(rText); }
60 void save_value() { m_xSpinButton->save_value(); }
61 bool get_value_changed_from_saved() const { return m_xSpinButton->get_value_changed_from_saved(); }
62 weld::SpinButton& get_widget() { return m_xSpinButton->get_widget(); }
64 int GetCoreValue(MapUnit eUnit) const { return ::GetCoreValue(*m_xSpinButton, eUnit); }
65 void SetFieldUnit(FieldUnit eUnit, bool bAll = false) { ::SetFieldUnit(*m_xSpinButton, eUnit, bAll); }
66 void SetMetricValue(int lCoreValue, MapUnit eUnit) { ::SetMetricValue(*m_xSpinButton, lCoreValue, eUnit); }
69 #endif
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */