/src/libreoffice/include/editeng/charrotateitem.hxx
Line | Count | Source |
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 | | #ifndef INCLUDED_EDITENG_CHARROTATEITEM_HXX |
20 | | #define INCLUDED_EDITENG_CHARROTATEITEM_HXX |
21 | | |
22 | | #include <svl/intitem.hxx> |
23 | | #include <tools/degree.hxx> |
24 | | #include <editeng/editengdllapi.h> |
25 | | |
26 | | // class SvxTextRotateItem ---------------------------------------------- |
27 | | |
28 | | /* [Description] |
29 | | |
30 | | This item defines a text rotation value. Currently |
31 | | text can only be rotated 90,0 and 270,0 degrees. |
32 | | |
33 | | */ |
34 | | |
35 | | class EDITENG_DLLPUBLIC SvxTextRotateItem : public SfxUInt16Item |
36 | | { |
37 | | public: |
38 | | DECLARE_ITEM_TYPE_FUNCTION(SvxTextRotateItem) |
39 | | SvxTextRotateItem(Degree10 nValue, TypedWhichId<SvxTextRotateItem> nId); |
40 | | |
41 | | virtual SvxTextRotateItem* Clone(SfxItemPool *pPool = nullptr) const override; |
42 | | |
43 | | virtual bool GetPresentation(SfxItemPresentation ePres, |
44 | | MapUnit eCoreMetric, |
45 | | MapUnit ePresMetric, |
46 | | OUString &rText, |
47 | | const IntlWrapper&) const override; |
48 | | |
49 | | virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override; |
50 | | virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override; |
51 | | |
52 | 97.6k | Degree10 GetValue() const { return Degree10(SfxUInt16Item::GetValue()); } |
53 | 235 | void SetValue(Degree10 val) { SfxUInt16Item::SetValue(val.get()); } |
54 | | |
55 | | // our currently only degree values |
56 | 0 | void SetTopToBottom() { SetValue(2700_deg10); } |
57 | 0 | void SetBottomToTop() { SetValue(900_deg10); } |
58 | 0 | bool IsTopToBottom() const { return 2700_deg10 == GetValue(); } |
59 | 0 | bool IsBottomToTop() const { return 900_deg10 == GetValue(); } |
60 | 0 | bool IsVertical() const { return IsTopToBottom() || IsBottomToTop(); } |
61 | | |
62 | | void dumpAsXml(xmlTextWriterPtr pWriter) const override; |
63 | | }; |
64 | | |
65 | | |
66 | | // class SvxCharRotateItem ---------------------------------------------- |
67 | | |
68 | | /* [Description] |
69 | | |
70 | | This item defines a character rotation value (0,1 degree). Currently |
71 | | character can only be rotated 90,0 and 270,0 degrees. |
72 | | The flag FitToLine defines only a UI-Information - |
73 | | if true it must also create a SvxCharScaleItem. |
74 | | |
75 | | */ |
76 | | |
77 | | class EDITENG_DLLPUBLIC SvxCharRotateItem final : public SvxTextRotateItem |
78 | | { |
79 | | bool bFitToLine; |
80 | | public: |
81 | | static SfxPoolItem* CreateDefault(); |
82 | | DECLARE_ITEM_TYPE_FUNCTION(SvxCharRotateItem) |
83 | | SvxCharRotateItem( Degree10 nValue /*= 0*/, |
84 | | bool bFitIntoLine /*= false*/, |
85 | | TypedWhichId<SvxCharRotateItem> nId ); |
86 | | |
87 | | virtual SvxCharRotateItem* Clone( SfxItemPool *pPool = nullptr ) const override; |
88 | | |
89 | | virtual bool GetPresentation( SfxItemPresentation ePres, |
90 | | MapUnit eCoreMetric, |
91 | | MapUnit ePresMetric, |
92 | | OUString &rText, |
93 | | const IntlWrapper& ) const override; |
94 | | |
95 | | virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override; |
96 | | virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override; |
97 | | |
98 | | virtual bool operator==( const SfxPoolItem& ) const override; |
99 | | |
100 | 6.77k | bool IsFitToLine() const { return bFitToLine; } |
101 | 227 | void SetFitToLine( bool b ) { bFitToLine = b; } |
102 | | |
103 | | void dumpAsXml(xmlTextWriterPtr pWriter) const override; |
104 | | }; |
105 | | |
106 | | #endif |
107 | | |
108 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |