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 _FMTRUBY_HXX
29 : : #define _FMTRUBY_HXX
30 : :
31 : :
32 : : #include <tools/string.hxx>
33 : : #include <svl/poolitem.hxx>
34 : :
35 : : class SwTxtRuby;
36 : :
37 : : class SW_DLLPUBLIC SwFmtRuby : public SfxPoolItem
38 : : {
39 : : friend class SwTxtRuby;
40 : :
41 : : String sRubyTxt; // The ruby txt.
42 : : String sCharFmtName; // Name of the charformat.
43 : : SwTxtRuby* pTxtAttr; // The TextAttribute.
44 : : sal_uInt16 nCharFmtId; // PoolId of the charformat.
45 : : sal_uInt16 nPosition; // Position of the Ruby-character.
46 : : sal_uInt16 nAdjustment; // Specific adjustment of the Ruby-ch.
47 : :
48 : : public:
49 : : SwFmtRuby( const String& rRubyTxt );
50 : : SwFmtRuby( const SwFmtRuby& rAttr );
51 : : virtual ~SwFmtRuby();
52 : :
53 : : SwFmtRuby& operator=( const SwFmtRuby& rAttr );
54 : :
55 : : // "Pure virtual methods" of SfxPoolItem.
56 : : virtual int operator==( const SfxPoolItem& ) const;
57 : : virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const;
58 : :
59 : : virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
60 : : SfxMapUnit eCoreMetric,
61 : : SfxMapUnit ePresMetric,
62 : : String &rText,
63 : : const IntlWrapper* pIntl = 0 ) const;
64 : :
65 : : virtual bool QueryValue( com::sun::star::uno::Any& rVal,
66 : : sal_uInt8 nMemberId = 0 ) const;
67 : : virtual bool PutValue( const com::sun::star::uno::Any& rVal,
68 : : sal_uInt8 nMemberId = 0 );
69 : :
70 : :
71 : 12 : const SwTxtRuby* GetTxtRuby() const { return pTxtAttr; }
72 : : SwTxtRuby* GetTxtRuby() { return pTxtAttr; }
73 : :
74 : 672 : const String& GetText() const { return sRubyTxt; }
75 : 0 : void SetText( const String& rTxt ) { sRubyTxt = rTxt; }
76 : :
77 : 336 : const String& GetCharFmtName() const { return sCharFmtName; }
78 : 8 : void SetCharFmtName( const String& rNm ) { sCharFmtName = rNm; }
79 : :
80 : 60 : sal_uInt16 GetCharFmtId() const { return nCharFmtId; }
81 : 16 : void SetCharFmtId( sal_uInt16 nNew ) { nCharFmtId = nNew; }
82 : :
83 : 348 : sal_uInt16 GetPosition() const { return nPosition; }
84 : 0 : void SetPosition( sal_uInt16 nNew ) { nPosition = nNew; }
85 : :
86 : 348 : sal_uInt16 GetAdjustment() const { return nAdjustment; }
87 : 0 : void SetAdjustment( sal_uInt16 nNew ) { nAdjustment = nNew; }
88 : : };
89 : :
90 : :
91 : : #endif
92 : :
93 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|