Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : : #ifndef _SDTAITM_HXX
29 : : #define _SDTAITM_HXX
30 : :
31 : : #include <svl/eitem.hxx>
32 : : #include <svx/svddef.hxx>
33 : : #include "svx/svxdllapi.h"
34 : :
35 : : //------------------------------
36 : : // class SdrTextVertAdjustItem
37 : : //------------------------------
38 : :
39 : : enum SdrTextVertAdjust {SDRTEXTVERTADJUST_TOP, // aligned to top (normally used)
40 : : SDRTEXTVERTADJUST_CENTER, // centered (for example for the title texts in Draw)
41 : : SDRTEXTVERTADJUST_BOTTOM, // aligned to bottom
42 : : SDRTEXTVERTADJUST_BLOCK // support vertical full with supported now
43 : : /*,SDRTEXTVERTADJUST_STRETCH*/}; // also stretch letters in their height (ni)
44 : :
45 [ - + ]: 2032 : class SVX_DLLPUBLIC SdrTextVertAdjustItem: public SfxEnumItem {
46 : : public:
47 : : TYPEINFO();
48 : 2032 : SdrTextVertAdjustItem(SdrTextVertAdjust eAdj=SDRTEXTVERTADJUST_TOP): SfxEnumItem(SDRATTR_TEXT_VERTADJUST,(sal_uInt16)eAdj) {}
49 : : SdrTextVertAdjustItem(SvStream& rIn) : SfxEnumItem(SDRATTR_TEXT_VERTADJUST,rIn) {}
50 : : virtual SfxPoolItem* Clone(SfxItemPool* pPool=NULL) const;
51 : : virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nVer) const;
52 : : virtual sal_uInt16 GetValueCount() const; // { return 5; }
53 : 0 : SdrTextVertAdjust GetValue() const { return (SdrTextVertAdjust)SfxEnumItem::GetValue(); }
54 : :
55 : : virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
56 : : virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
57 : :
58 : : virtual rtl::OUString GetValueTextByPos(sal_uInt16 nPos) const;
59 : : virtual SfxItemPresentation GetPresentation(SfxItemPresentation ePres, SfxMapUnit eCoreMetric, SfxMapUnit ePresMetric, String& rText, const IntlWrapper * = 0) const;
60 : : };
61 : :
62 : : //------------------------------
63 : : // class SdrTextHorzAdjustItem
64 : : //------------------------------
65 : :
66 : : enum SdrTextHorzAdjust {SDRTEXTHORZADJUST_LEFT, // left adjusted
67 : : SDRTEXTHORZADJUST_CENTER, // centered (for example for title texts in Draw)
68 : : SDRTEXTHORZADJUST_RIGHT, // right adjusted
69 : : SDRTEXTHORZADJUST_BLOCK // use the whole text frame width
70 : : /*,SDRTEXTHORZADJUST_STRETCH*/}; // FitToSize in X direction (ni).
71 : :
72 [ - + ]: 1863 : class SVX_DLLPUBLIC SdrTextHorzAdjustItem: public SfxEnumItem {
73 : : public:
74 : : TYPEINFO();
75 : 1863 : SdrTextHorzAdjustItem(SdrTextHorzAdjust eAdj=SDRTEXTHORZADJUST_BLOCK): SfxEnumItem(SDRATTR_TEXT_HORZADJUST,(sal_uInt16)eAdj) {}
76 : : SdrTextHorzAdjustItem(SvStream& rIn) : SfxEnumItem(SDRATTR_TEXT_HORZADJUST,rIn) {}
77 : : virtual SfxPoolItem* Clone(SfxItemPool* pPool=NULL) const;
78 : : virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nVer) const;
79 : : virtual sal_uInt16 GetValueCount() const;
80 : 0 : SdrTextHorzAdjust GetValue() const { return (SdrTextHorzAdjust)SfxEnumItem::GetValue(); }
81 : :
82 : : virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const;
83 : : virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 nMemberId = 0 );
84 : :
85 : : virtual rtl::OUString GetValueTextByPos(sal_uInt16 nPos) const;
86 : : virtual SfxItemPresentation GetPresentation(SfxItemPresentation ePres, SfxMapUnit eCoreMetric, SfxMapUnit ePresMetric, String& rText, const IntlWrapper * = 0) const;
87 : : };
88 : :
89 : : #endif
90 : :
91 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|