1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_CUI_SOURCE_INC_ALIGN_HXX
20 #define INCLUDED_CUI_SOURCE_INC_ALIGN_HXX
23 #define ALIGNDLG_HORALIGN_STD 0
24 #define ALIGNDLG_HORALIGN_LEFT 1
25 #define ALIGNDLG_HORALIGN_CENTER 2
26 #define ALIGNDLG_HORALIGN_RIGHT 3
27 #define ALIGNDLG_HORALIGN_BLOCK 4
28 #define ALIGNDLG_HORALIGN_FILL 5
29 #define ALIGNDLG_HORALIGN_DISTRIBUTED 6
31 #define ALIGNDLG_VERALIGN_STD 0
32 #define ALIGNDLG_VERALIGN_TOP 1
33 #define ALIGNDLG_VERALIGN_MID 2
34 #define ALIGNDLG_VERALIGN_BOTTOM 3
35 #define ALIGNDLG_VERALIGN_BLOCK 4
36 #define ALIGNDLG_VERALIGN_DISTRIBUTED 5
38 #include <sfx2/tabdlg.hxx>
39 #include <svtools/valueset.hxx>
40 #include <svx/dialcontrol.hxx>
41 #include <svx/frmdirlbox.hxx>
42 #include <vcl/weld.hxx>
47 class AlignmentTabPage
: public SfxTabPage
49 using TabPage::DeactivatePage
;
50 friend class VclPtr
<AlignmentTabPage
>;
51 static const sal_uInt16 s_pRanges
[];
54 virtual ~AlignmentTabPage() override
;
55 virtual void dispose() override
;
57 static VclPtr
<SfxTabPage
> Create( TabPageParent pParent
, const SfxItemSet
* rAttrSet
);
58 static const sal_uInt16
* GetRanges() { return s_pRanges
; }
60 virtual bool FillItemSet( SfxItemSet
* rSet
) override
;
61 virtual void Reset( const SfxItemSet
* rSet
) override
;
62 virtual DeactivateRC
DeactivatePage( SfxItemSet
* pSet
) override
;
63 virtual void DataChanged( const DataChangedEvent
& rDCEvt
) override
;
66 explicit AlignmentTabPage(TabPageParent pParent
, const SfxItemSet
& rCoreSet
);
69 void UpdateEnableControls();
71 bool HasAlignmentChanged( const SfxItemSet
& rNew
, sal_uInt16 nWhich
) const;
73 DECL_LINK(UpdateEnableHdl
, weld::ComboBox
&, void);
74 DECL_LINK(StackedClickHdl
, weld::ToggleButton
&, void);
75 DECL_LINK(AsianModeClickHdl
, weld::ToggleButton
&, void);
76 DECL_LINK(WrapClickHdl
, weld::ToggleButton
&, void);
77 DECL_LINK(HyphenClickHdl
, weld::ToggleButton
&, void);
78 DECL_LINK(ShrinkClickHdl
, weld::ToggleButton
&, void);
81 weld::TriStateEnabled m_aStackedState
;
82 weld::TriStateEnabled m_aAsianModeState
;
83 weld::TriStateEnabled m_aWrapState
;
84 weld::TriStateEnabled m_aHyphenState
;
85 weld::TriStateEnabled m_aShrinkState
;
87 SvxDialControl m_aCtrlDial
;
88 SvtValueSet m_aVsRefEdge
;
90 std::unique_ptr
<weld::ComboBox
> m_xLbHorAlign
;
91 std::unique_ptr
<weld::Label
> m_xFtIndent
;
92 std::unique_ptr
<weld::MetricSpinButton
> m_xEdIndent
;
93 std::unique_ptr
<weld::Label
> m_xFtVerAlign
;
94 std::unique_ptr
<weld::ComboBox
> m_xLbVerAlign
;
96 std::unique_ptr
<weld::Label
> m_xFtRotate
;
97 std::unique_ptr
<weld::SpinButton
> m_xNfRotate
;
98 std::unique_ptr
<weld::Label
> m_xFtRefEdge
;
99 std::unique_ptr
<weld::CheckButton
> m_xCbStacked
;
100 std::unique_ptr
<weld::CheckButton
> m_xCbAsianMode
;
102 std::unique_ptr
<weld::Widget
> m_xBoxDirection
;
103 std::unique_ptr
<weld::CheckButton
> m_xBtnWrap
;
104 std::unique_ptr
<weld::CheckButton
> m_xBtnHyphen
;
105 std::unique_ptr
<weld::CheckButton
> m_xBtnShrink
;
106 std::unique_ptr
<svx::FrameDirectionListBox
> m_xLbFrameDir
;
108 // hidden labels/string
109 std::unique_ptr
<weld::Label
> m_xFtBotLock
;
110 std::unique_ptr
<weld::Label
> m_xFtTopLock
;
111 std::unique_ptr
<weld::Label
> m_xFtCelLock
;
112 std::unique_ptr
<weld::Label
> m_xFtABCD
;
114 std::unique_ptr
<weld::Widget
> m_xAlignmentFrame
;
115 std::unique_ptr
<weld::Widget
> m_xOrientFrame
;
116 std::unique_ptr
<weld::Widget
> m_xPropertiesFrame
;
118 std::unique_ptr
<weld::CustomWeld
> m_xVsRefEdge
;
119 std::unique_ptr
<weld::CustomWeld
> m_xCtrlDial
;
127 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */