fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / editeng / bulletitem.hxx
blobdeb122f556d4d5ab0823ec0c48e5a57502118c1c
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 _SVX_BULITEM_HXX
20 #define _SVX_BULITEM_HXX
22 #include "editeng/editengdllapi.h"
25 // define ----------------------------------------------------------------
27 // Styles
28 #define BS_ABC_BIG 0
29 #define BS_ABC_SMALL 1
30 #define BS_ROMAN_BIG 2
31 #define BS_ROMAN_SMALL 3
32 #define BS_123 4
33 #define BS_NONE 5
34 #define BS_BULLET 6
35 #define BS_BMP 128
37 // Justification
38 #define BJ_HLEFT 0x01
39 #define BJ_HRIGHT 0x02
40 #define BJ_HCENTER 0x04
41 #define BJ_VTOP 0x08
42 #define BJ_VBOTTOM 0x10
43 #define BJ_VCENTER 0x20
45 // Valid-Bits
46 // First, only the values that are changed by the dialogue ...
47 #define VALID_FONTCOLOR 0x0001
48 #define VALID_FONTNAME 0x0002
49 #define VALID_SYMBOL 0x0004
50 #define VALID_BITMAP 0x0008
51 #define VALID_SCALE 0x0010
52 #define VALID_START 0x0020
53 #define VALID_STYLE 0x0040
54 #define VALID_PREVTEXT 0x0080
55 #define VALID_FOLLOWTEXT 0x0100
56 #include <svl/poolitem.hxx>
57 #include <vcl/font.hxx>
58 #include <svtools/grfmgr.hxx>
60 // class SvxBulletItem ---------------------------------------------------
62 class EDITENG_DLLPUBLIC SvxBulletItem : public SfxPoolItem
64 Font aFont;
65 GraphicObject* pGraphicObject;
66 String aPrevText;
67 String aFollowText;
68 sal_uInt16 nStart;
69 sal_uInt16 nStyle;
70 long nWidth;
71 sal_uInt16 nScale;
72 sal_Unicode cSymbol;
73 sal_uInt8 nJustify;
74 sal_uInt16 nValidMask; // Only temporary for GetAttribs / setAttribs,
75 // because of the large Bullets
77 void SetDefaultFont_Impl();
78 void SetDefaults_Impl();
80 public:
81 TYPEINFO();
83 explicit SvxBulletItem( sal_uInt16 nWhich = 0 );
84 explicit SvxBulletItem( SvStream& rStrm, sal_uInt16 nWhich = 0 );
85 SvxBulletItem( const SvxBulletItem& );
86 ~SvxBulletItem();
88 virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
89 virtual SfxPoolItem* Create( SvStream&, sal_uInt16 nVersion ) const;
90 virtual SvStream& Store( SvStream & , sal_uInt16 nItemVersion ) const;
92 String GetFullText() const;
93 sal_Unicode GetSymbol() const { return cSymbol; }
94 String GetPrevText() const { return aPrevText; }
95 String GetFollowText() const { return aFollowText; }
97 sal_uInt16 GetStart() const { return nStart; }
98 long GetWidth() const { return nWidth; }
99 sal_uInt16 GetStyle() const { return nStyle; }
100 sal_uInt8 GetJustification() const { return nJustify; }
101 Font GetFont() const { return aFont; }
102 sal_uInt16 GetScale() const { return nScale; }
104 const GraphicObject& GetGraphicObject() const;
105 void SetGraphicObject( const GraphicObject& rGraphicObject );
107 void SetSymbol( sal_Unicode c) { cSymbol = c; }
108 void SetPrevText( const String& rStr) { aPrevText = rStr;}
109 void SetFollowText(const String& rStr) { aFollowText=rStr;}
111 void SetStart( sal_uInt16 nNew ) { nStart = nNew; }
112 void SetWidth( long nNew ) { nWidth = nNew; }
113 void SetStyle( sal_uInt16 nNew ) { nStyle = nNew; }
114 void SetJustification( sal_uInt8 nNew ) { nJustify = nNew; }
115 void SetFont( const Font& rNew) { aFont = rNew; }
116 void SetScale( sal_uInt16 nNew ) { nScale = nNew; }
118 virtual sal_uInt16 GetVersion(sal_uInt16 nFileVersion) const;
119 virtual int operator==( const SfxPoolItem& ) const;
120 virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
121 SfxMapUnit eCoreMetric,
122 SfxMapUnit ePresMetric,
123 OUString &rText, const IntlWrapper * = 0 ) const;
125 static void StoreFont( SvStream&, const Font& );
126 static Font CreateFont( SvStream&, sal_uInt16 nVer );
128 sal_uInt16& GetValidMask() { return nValidMask; }
129 sal_uInt16 GetValidMask() const { return nValidMask; }
130 sal_uInt16 IsValid( sal_uInt16 nFlag ) const { return nValidMask & nFlag; }
131 void SetValid( sal_uInt16 nFlag, sal_Bool bValid )
133 if ( bValid )
134 nValidMask |= nFlag;
135 else
136 nValidMask &= ~nFlag;
138 void CopyValidProperties( const SvxBulletItem& rCopyFrom );
142 #endif
144 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */