LibreOffice Module svx (master) 1
frmdirlbox.hxx
Go to the documentation of this file.
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
27namespace svx
28{
35{
36private:
37 std::unique_ptr<weld::ComboBox> m_xControl;
38
39public:
40 explicit FrameDirectionListBox(std::unique_ptr<weld::ComboBox> pControl);
41 virtual ~FrameDirectionListBox();
42 bool get_visible() const { return m_xControl->get_visible(); }
43 void save_value() { m_xControl->save_value(); }
44 bool get_value_changed_from_saved() const { return m_xControl->get_value_changed_from_saved(); }
46 {
47 return static_cast<SvxFrameDirection>(m_xControl->get_active_id().toUInt32());
48 }
50 {
51 m_xControl->set_active_id(OUString::number(static_cast<sal_uInt32>(eDir)));
52 }
54 {
55 int nPos = m_xControl->find_id(OUString::number(static_cast<sal_uInt32>(eDir)));
56 if (nPos != -1)
57 m_xControl->remove(nPos);
58 }
59 void set_active(int pos) { m_xControl->set_active(pos); }
60 int get_active() const { return m_xControl->get_active(); }
61 void set_sensitive(bool bSensitive) { m_xControl->set_sensitive(bSensitive); }
62 void hide() { m_xControl->hide(); }
63 void set_visible(bool bVisible) { m_xControl->set_visible(bVisible); }
64 void show() { m_xControl->show(); }
65 int get_count() const { return m_xControl->get_count(); }
67 void append(SvxFrameDirection eDirection, const OUString& rString)
68 {
69 m_xControl->append(OUString::number(static_cast<sal_uInt32>(eDirection)), rString);
70 }
72 {
73 m_xControl->connect_changed(rLink);
74 }
75};
76}
77
78#endif
79
80/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This listbox contains entries to select horizontal text direction.
Definition: frmdirlbox.hxx:35
void append(SvxFrameDirection eDirection, const OUString &rString)
Inserts a string with corresponding direction enum into the listbox.
Definition: frmdirlbox.hxx:67
std::unique_ptr< weld::ComboBox > m_xControl
Definition: frmdirlbox.hxx:37
SvxFrameDirection get_active_id() const
Definition: frmdirlbox.hxx:45
bool get_value_changed_from_saved() const
Definition: frmdirlbox.hxx:44
void connect_changed(const Link< weld::ComboBox &, void > &rLink)
Definition: frmdirlbox.hxx:71
void set_sensitive(bool bSensitive)
Definition: frmdirlbox.hxx:61
void set_visible(bool bVisible)
Definition: frmdirlbox.hxx:63
void remove_id(SvxFrameDirection eDir)
Definition: frmdirlbox.hxx:53
void set_active_id(SvxFrameDirection eDir)
Definition: frmdirlbox.hxx:49
SvxFrameDirection
sal_uInt16 nPos
#define SVX_DLLPUBLIC
Definition: svxdllapi.h:28
bool bVisible
#define SAL_WARN_UNUSED
Reference< XControl > m_xControl
size_t pos