Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / editeng / charrotateitem.hxx
blobd8a7730655759125866a9958cfa8d563abdfb1de
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 #ifndef INCLUDED_EDITENG_CHARROTATEITEM_HXX
20 #define INCLUDED_EDITENG_CHARROTATEITEM_HXX
22 #include <svl/intitem.hxx>
23 #include <tools/degree.hxx>
24 #include <editeng/editengdllapi.h>
26 // class SvxTextRotateItem ----------------------------------------------
28 /* [Description]
30 This item defines a text rotation value. Currently
31 text can only be rotated 90,0 and 270,0 degrees.
35 class EDITENG_DLLPUBLIC SvxTextRotateItem : public SfxUInt16Item
37 public:
38 SvxTextRotateItem(Degree10 nValue, TypedWhichId<SvxTextRotateItem> nId);
40 virtual SvxTextRotateItem* Clone(SfxItemPool *pPool = nullptr) const override;
42 virtual bool GetPresentation(SfxItemPresentation ePres,
43 MapUnit eCoreMetric,
44 MapUnit ePresMetric,
45 OUString &rText,
46 const IntlWrapper&) const override;
48 virtual bool QueryValue(css::uno::Any& rVal, sal_uInt8 nMemberId = 0) const override;
49 virtual bool PutValue(const css::uno::Any& rVal, sal_uInt8 nMemberId) override;
51 Degree10 GetValue() const { return Degree10(SfxUInt16Item::GetValue()); }
52 void SetValue(Degree10 val) { SfxUInt16Item::SetValue(val.get()); }
54 // our currently only degree values
55 void SetTopToBottom() { SetValue(2700_deg10); }
56 void SetBottomToTop() { SetValue(900_deg10); }
57 bool IsTopToBottom() const { return 2700_deg10 == GetValue(); }
58 bool IsBottomToTop() const { return 900_deg10 == GetValue(); }
59 bool IsVertical() const { return IsTopToBottom() || IsBottomToTop(); }
61 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
65 // class SvxCharRotateItem ----------------------------------------------
67 /* [Description]
69 This item defines a character rotation value (0,1 degree). Currently
70 character can only be rotated 90,0 and 270,0 degrees.
71 The flag FitToLine defines only a UI-Information -
72 if true it must also create a SvxCharScaleItem.
76 class EDITENG_DLLPUBLIC SvxCharRotateItem final : public SvxTextRotateItem
78 bool bFitToLine;
79 public:
80 static SfxPoolItem* CreateDefault();
82 SvxCharRotateItem( Degree10 nValue /*= 0*/,
83 bool bFitIntoLine /*= false*/,
84 TypedWhichId<SvxCharRotateItem> nId );
86 virtual SvxCharRotateItem* Clone( SfxItemPool *pPool = nullptr ) const override;
88 virtual bool GetPresentation( SfxItemPresentation ePres,
89 MapUnit eCoreMetric,
90 MapUnit ePresMetric,
91 OUString &rText,
92 const IntlWrapper& ) const override;
94 virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override;
95 virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override;
97 virtual bool operator==( const SfxPoolItem& ) const override;
99 bool IsFitToLine() const { return bFitToLine; }
100 void SetFitToLine( bool b ) { bFitToLine = b; }
102 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
105 #endif
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */