Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / cui / source / inc / align.hxx
blobcaea33e4215022cb968b3871d424b84977f43b3c
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 #pragma once
21 // list box indexes
22 #define ALIGNDLG_HORALIGN_STD 0
23 #define ALIGNDLG_HORALIGN_LEFT 1
24 #define ALIGNDLG_HORALIGN_CENTER 2
25 #define ALIGNDLG_HORALIGN_RIGHT 3
26 #define ALIGNDLG_HORALIGN_BLOCK 4
27 #define ALIGNDLG_HORALIGN_FILL 5
28 #define ALIGNDLG_HORALIGN_DISTRIBUTED 6
30 #define ALIGNDLG_VERALIGN_STD 0
31 #define ALIGNDLG_VERALIGN_TOP 1
32 #define ALIGNDLG_VERALIGN_MID 2
33 #define ALIGNDLG_VERALIGN_BOTTOM 3
34 #define ALIGNDLG_VERALIGN_BLOCK 4
35 #define ALIGNDLG_VERALIGN_DISTRIBUTED 5
37 #include <sfx2/tabdlg.hxx>
38 #include <svtools/valueset.hxx>
39 #include <svx/dialcontrol.hxx>
40 #include <svx/frmdirlbox.hxx>
41 #include <vcl/weld.hxx>
43 class SfxEnumItemInterface;
45 namespace svx {
48 class AlignmentTabPage : public SfxTabPage
50 static const WhichRangesContainer s_pRanges;
52 public:
53 virtual ~AlignmentTabPage() override;
54 static std::unique_ptr<SfxTabPage> Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rAttrSet );
55 explicit AlignmentTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rCoreSet);
57 static WhichRangesContainer GetRanges() { return s_pRanges; }
59 virtual bool FillItemSet( SfxItemSet* rSet ) override;
60 virtual void Reset( const SfxItemSet* rSet ) override;
61 virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
63 private:
64 void InitVsRefEgde();
65 void UpdateEnableControls();
67 bool HasAlignmentChanged( const SfxItemSet& rNew, TypedWhichId<SfxEnumItemInterface> nWhich ) const;
69 DECL_LINK(UpdateEnableHdl, weld::ComboBox&, void);
70 DECL_LINK(StackedClickHdl, weld::Toggleable&, void);
71 DECL_LINK(AsianModeClickHdl, weld::Toggleable&, void);
72 DECL_LINK(WrapClickHdl, weld::Toggleable&, void);
73 DECL_LINK(HyphenClickHdl, weld::Toggleable&, void);
74 DECL_LINK(ShrinkClickHdl, weld::Toggleable&, void);
76 private:
77 weld::TriStateEnabled m_aStackedState;
78 weld::TriStateEnabled m_aAsianModeState;
79 weld::TriStateEnabled m_aWrapState;
80 weld::TriStateEnabled m_aHyphenState;
81 weld::TriStateEnabled m_aShrinkState;
83 ValueSet m_aVsRefEdge;
85 std::unique_ptr<weld::ComboBox> m_xLbHorAlign;
86 std::unique_ptr<weld::Label> m_xFtIndent;
87 std::unique_ptr<weld::MetricSpinButton> m_xEdIndent;
88 std::unique_ptr<weld::Label> m_xFtVerAlign;
89 std::unique_ptr<weld::ComboBox> m_xLbVerAlign;
91 std::unique_ptr<weld::Label> m_xFtRotate;
92 std::unique_ptr<weld::MetricSpinButton> m_xNfRotate;
93 std::unique_ptr<weld::Label> m_xFtRefEdge;
94 std::unique_ptr<weld::CheckButton> m_xCbStacked;
95 std::unique_ptr<weld::CheckButton> m_xCbAsianMode;
97 std::unique_ptr<weld::CheckButton> m_xBtnWrap;
98 std::unique_ptr<weld::CheckButton> m_xBtnHyphen;
99 std::unique_ptr<weld::CheckButton> m_xBtnShrink;
100 std::unique_ptr<svx::FrameDirectionListBox> m_xLbFrameDir;
102 // hidden labels/string
103 std::unique_ptr<weld::Label> m_xFtBotLock;
104 std::unique_ptr<weld::Label> m_xFtTopLock;
105 std::unique_ptr<weld::Label> m_xFtCelLock;
106 std::unique_ptr<weld::Label> m_xFtABCD;
108 std::unique_ptr<weld::Widget> m_xAlignmentFrame;
109 std::unique_ptr<weld::Widget> m_xOrientFrame;
110 std::unique_ptr<weld::Widget> m_xPropertiesFrame;
112 std::unique_ptr<weld::CustomWeld> m_xVsRefEdge;
113 std::unique_ptr<DialControl> m_xCtrlDial;
114 std::unique_ptr<weld::CustomWeld> m_xCtrlDialWin;
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */