Line data Source code
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_SW_SOURCE_UIBASE_INC_CAPTION_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_INC_CAPTION_HXX
21 :
22 : #include <rtl/ustring.hxx>
23 : #include <tools/globname.hxx>
24 : #include <SwCapObjType.hxx>
25 : #include "swdllapi.h"
26 :
27 : class SW_DLLPUBLIC InsCaptionOpt
28 : {
29 : private:
30 : bool bUseCaption;
31 : SwCapObjType eObjType;
32 : SvGlobalName aOleId;
33 : OUString sCategory;
34 : sal_uInt16 nNumType;
35 : OUString sNumberSeparator;
36 : OUString sCaption;
37 : sal_uInt16 nPos;
38 : sal_uInt16 nLevel;
39 : OUString sSeparator;
40 : OUString sCharacterStyle;
41 :
42 : bool bIgnoreSeqOpts; // is not being saved
43 : bool bCopyAttributes; // -""-
44 :
45 : public:
46 : InsCaptionOpt(const SwCapObjType eType = FRAME_CAP, const SvGlobalName* pOleId = 0);
47 : InsCaptionOpt(const InsCaptionOpt&);
48 : ~InsCaptionOpt();
49 :
50 531 : inline bool& UseCaption() { return bUseCaption; }
51 0 : inline bool UseCaption() const { return bUseCaption; }
52 :
53 0 : inline SwCapObjType GetObjType() const { return eObjType; }
54 : inline void SetObjType(const SwCapObjType eType) { eObjType = eType; }
55 :
56 0 : inline const SvGlobalName& GetOleId() const { return aOleId; }
57 : inline void SetOleId(const SvGlobalName &rId) { aOleId = rId; }
58 :
59 0 : inline const OUString& GetCategory() const { return sCategory; }
60 531 : inline void SetCategory(const OUString& rCat) { sCategory = rCat; }
61 :
62 0 : inline sal_uInt16 GetNumType() const { return nNumType; }
63 531 : inline void SetNumType(const sal_uInt16 nNT) { nNumType = nNT; }
64 :
65 0 : const OUString& GetNumSeparator() const { return sNumberSeparator; }
66 531 : void SetNumSeparator(const OUString& rSet) {sNumberSeparator = rSet;}
67 :
68 0 : inline const OUString& GetCaption() const { return sCaption; }
69 531 : inline void SetCaption(const OUString& rCap) { sCaption = rCap; }
70 :
71 0 : inline sal_uInt16 GetPos() const { return nPos; }
72 531 : inline void SetPos(const sal_uInt16 nP) { nPos = nP; }
73 :
74 0 : inline sal_uInt16 GetLevel() const { return nLevel; }
75 531 : inline void SetLevel(const sal_uInt16 nLvl) { nLevel = nLvl; }
76 :
77 0 : inline const OUString& GetSeparator() const { return sSeparator; }
78 531 : inline void SetSeparator(const OUString& rSep) { sSeparator = rSep; }
79 :
80 0 : const OUString& GetCharacterStyle() const { return sCharacterStyle; }
81 0 : void SetCharacterStyle(const OUString& rStyle)
82 0 : { sCharacterStyle = rStyle; }
83 :
84 0 : inline bool& IgnoreSeqOpts() { return bIgnoreSeqOpts; }
85 0 : inline bool IgnoreSeqOpts() const { return bIgnoreSeqOpts; }
86 :
87 0 : inline bool& CopyAttributes() { return bCopyAttributes; }
88 0 : inline bool CopyAttributes() const { return bCopyAttributes; }
89 :
90 : bool operator==( const InsCaptionOpt& rOpt ) const;
91 : InsCaptionOpt& operator= ( const InsCaptionOpt& rOpt );
92 : inline bool operator< ( const InsCaptionOpt & rObj ) const
93 : { return aOleId < rObj.aOleId; }
94 : };
95 :
96 : #endif
97 :
98 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|