Bump version to 6.4-15
[LibreOffice.git] / include / svx / frmdirlbox.hxx
blob4a508eea55bde6b3596d9b037e6c91081411cbed
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 .
20 #ifndef INCLUDED_SVX_FRMDIRLBOX_HXX
21 #define INCLUDED_SVX_FRMDIRLBOX_HXX
23 #include <vcl/weld.hxx>
24 #include <editeng/frmdir.hxx>
25 #include <svx/svxdllapi.h>
27 namespace svx {
29 /** This listbox contains entries to select horizontal text direction.
31 The control works on the SvxFrameDirection enumeration (i.e. left-to-right,
32 right-to-left), used i.e. in conjunction with the SvxFrameDirectionItem.
34 class SAL_WARN_UNUSED SVX_DLLPUBLIC FrameDirectionListBox
36 private:
37 std::unique_ptr<weld::ComboBox> m_xControl;
38 public:
39 explicit FrameDirectionListBox(std::unique_ptr<weld::ComboBox> pControl);
40 virtual ~FrameDirectionListBox();
41 bool get_visible() const { return m_xControl->get_visible(); }
42 void save_value() { m_xControl->save_value(); }
43 bool get_value_changed_from_saved() const { return m_xControl->get_value_changed_from_saved(); }
44 SvxFrameDirection get_active_id() const { return static_cast<SvxFrameDirection>(m_xControl->get_active_id().toUInt32()); }
45 void set_active_id(SvxFrameDirection eDir) { m_xControl->set_active_id(OUString::number(static_cast<sal_uInt32>(eDir))); }
46 void remove_id(SvxFrameDirection eDir)
48 int nPos = m_xControl->find_id(OUString::number(static_cast<sal_uInt32>(eDir)));
49 if (nPos != -1)
50 m_xControl->remove(nPos);
52 void set_active(int pos) { m_xControl->set_active(pos); }
53 int get_active() const { return m_xControl->get_active(); }
54 void set_sensitive(bool bSensitive) { m_xControl->set_sensitive(bSensitive); }
55 void hide() { m_xControl->hide(); }
56 void set_visible(bool bVisible) { m_xControl->set_visible(bVisible); }
57 void show() { m_xControl->show(); }
58 int get_count() const { return m_xControl->get_count(); }
59 /** Inserts a string with corresponding direction enum into the listbox. */
60 void append(SvxFrameDirection eDirection, const OUString& rString)
62 m_xControl->append(OUString::number(static_cast<sal_uInt32>(eDirection)), rString);
64 void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_xControl->connect_changed(rLink); }
69 #endif
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */