1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
19 
20 #ifndef INCLUDED_SVX_FRMDIRLBOX_HXX
21 #define INCLUDED_SVX_FRMDIRLBOX_HXX
22 
23 #include <vcl/weld.hxx>
24 #include <editeng/frmdir.hxx>
25 #include <svx/svxdllapi.h>
26 
27 namespace svx {
28 
29 /** This listbox contains entries to select horizontal text direction.
30 
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.
33  */
34 class SAL_WARN_UNUSED SVX_DLLPUBLIC FrameDirectionListBox
35 {
36 private:
37     std::unique_ptr<weld::ComboBox> m_xControl;
38 public:
39     explicit FrameDirectionListBox(std::unique_ptr<weld::ComboBox> pControl);
40     virtual ~FrameDirectionListBox();
get_visible() const41     bool get_visible() const { return m_xControl->get_visible(); }
save_value()42     void save_value() { m_xControl->save_value(); }
get_value_changed_from_saved() const43     bool get_value_changed_from_saved() const { return m_xControl->get_value_changed_from_saved(); }
get_active_id() const44     SvxFrameDirection get_active_id() const { return static_cast<SvxFrameDirection>(m_xControl->get_active_id().toUInt32()); }
set_active_id(SvxFrameDirection eDir)45     void set_active_id(SvxFrameDirection eDir) { m_xControl->set_active_id(OUString::number(static_cast<sal_uInt32>(eDir))); }
remove_id(SvxFrameDirection eDir)46     void remove_id(SvxFrameDirection eDir)
47     {
48         int nPos = m_xControl->find_id(OUString::number(static_cast<sal_uInt32>(eDir)));
49         if (nPos != -1)
50             m_xControl->remove(nPos);
51     }
set_active(int pos)52     void set_active(int pos) { m_xControl->set_active(pos); }
get_active() const53     int get_active() const { return m_xControl->get_active(); }
set_sensitive(bool bSensitive)54     void set_sensitive(bool bSensitive) { m_xControl->set_sensitive(bSensitive); }
hide()55     void hide() { m_xControl->hide(); }
set_visible(bool bVisible)56     void set_visible(bool bVisible) { m_xControl->set_visible(bVisible); }
show()57     void show() { m_xControl->show(); }
get_count() const58     int get_count() const { return m_xControl->get_count(); }
59     /** Inserts a string with corresponding direction enum into the listbox. */
append(SvxFrameDirection eDirection,const OUString & rString)60     void append(SvxFrameDirection eDirection, const OUString& rString)
61     {
62         m_xControl->append(OUString::number(static_cast<sal_uInt32>(eDirection)), rString);
63     }
connect_changed(const Link<weld::ComboBox &,void> & rLink)64     void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_xControl->connect_changed(rLink); }
65 };
66 
67 }
68 
69 #endif
70 
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
72