fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / lotuswordpro / source / filter / lwpbreaksoverride.hxx
blob3c3c4e362175c51fe6ee1b56487d304a66ecee6f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * The Contents of this file are made available subject to the terms of
5 * either of the following licenses
7 * - GNU Lesser General Public License Version 2.1
8 * - Sun Industry Standards Source License Version 1.1
10 * Sun Microsystems Inc., October, 2000
12 * GNU Lesser General Public License Version 2.1
13 * =============================================
14 * Copyright 2000 by Sun Microsystems, Inc.
15 * 901 San Antonio Road, Palo Alto, CA 94303, USA
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License version 2.1, as published by the Free Software Foundation.
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
26 * You should have received a copy of the GNU Lesser General Public
27 * License along with this library; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
32 * Sun Industry Standards Source License Version 1.1
33 * =================================================
34 * The contents of this file are subject to the Sun Industry Standards
35 * Source License Version 1.1 (the "License"); You may not use this file
36 * except in compliance with the License. You may obtain a copy of the
37 * License at http://www.openoffice.org/license.html.
39 * Software provided under this License is provided on an "AS IS" basis,
40 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
41 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
42 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
43 * See the License for the specific provisions governing your rights and
44 * obligations concerning the Software.
46 * The Initial Developer of the Original Code is: IBM Corporation
48 * Copyright: 2008 by IBM Corporation
50 * All Rights Reserved.
52 * Contributor(s): _______________________________________
55 ************************************************************************/
56 /*************************************************************************
57 * @file
58 * Breaks override of Wordpro.
59 ************************************************************************/
60 #ifndef _LWPBREAKSOVERRIDE_HXX
61 #define _LWPBREAKSOVERRIDE_HXX
63 #include "lwpoverride.hxx"
65 class LwpObjectStream;
66 class LwpAtomHolder;
67 class LwpBreaksOverride : public LwpOverride
70 public:
71 LwpBreaksOverride();
72 virtual ~LwpBreaksOverride();
74 virtual LwpBreaksOverride* clone() const;
76 enum
78 BO_PAGEBEFORE = 0x01, // page break before this style
79 BO_PAGEAFTER = 0x02, // page break after this style
80 BO_KEEPTOGETHER = 0x04,
81 BO_COLBEFORE = 0x08, // col break before this style
82 BO_COLAFTER = 0x10, // col break after this style
83 BO_KEEPPREV = 0x20, // not with-PAGE BEF, COL BEF or WITHIN
84 BO_KEEPNEXT = 0x40, // not with-PAGE AFT, COL AFT or WITHIN
85 BO_USENEXTSTYLE = 0x80, // use next style name
86 BO_NEXTSTYLE = 0x100 // next style name
88 public:
89 virtual void Read(LwpObjectStream *pStrm);
91 //add by , 01/28/2005
92 void Override(LwpBreaksOverride* pOther);
94 inline sal_Bool IsPageBreakBefore();
95 inline sal_Bool IsPageBreakAfter();
96 inline sal_Bool IsPageBreakWithin();
97 inline sal_Bool IsColumnBreakBefore();
98 inline sal_Bool IsColumnBreakAfter();
99 inline sal_Bool IsKeepWithNext();
100 inline sal_Bool IsKeepWithPrevious();
101 inline sal_Bool IsUseNextStyle();
103 inline sal_Bool IsPageBreakBeforeOverridden();
104 inline sal_Bool IsPageBreakAfterOverridden();
105 inline sal_Bool IsPageBreakWithinOverridden();
106 inline sal_Bool IsColumnBreakBeforeOverridden();
107 inline sal_Bool IsColumnBreakAfterOverridden();
108 inline sal_Bool IsKeepWithNextOverridden();
109 inline sal_Bool IsKeepWithPreviousOverridden();
110 inline sal_Bool IsUseNextStyleOverridden();
112 inline void RevertPageBreakBefore();
113 inline void RevertPageBreakAfter();
114 inline void RevertPageBreakWithin();
115 inline void RevertColumnBreakBefore();
116 inline void RevertColumnBreakAfter();
117 inline void RevertKeepWithNext();
118 inline void RevertKeepWithPrevious();
119 inline void RevertUseNextStyle();
122 void OverridePageBreakBefore(sal_Bool bVal);
123 void OverridePageBreakAfter(sal_Bool bVal);
124 void OverridePageBreakWithin(sal_Bool bVal);
125 void OverrideColumnBreakBefore(sal_Bool bVal);
126 void OverrideColumnBreakAfter(sal_Bool bVal);
127 void OverrideKeepWithNext(sal_Bool bVal);
128 void OverrideKeepWithPrevious(sal_Bool bVal);
129 void OverrideUseNextStyle(sal_Bool bVal);
132 inline LwpAtomHolder* GetNextStyle();
133 //end add
135 protected:
136 LwpBreaksOverride(LwpBreaksOverride const& rOther);
138 private:
139 LwpBreaksOverride& operator=(const LwpBreaksOverride& rOther); // not implemented
141 private:
142 LwpAtomHolder *m_pNextStyle;
145 inline sal_Bool LwpBreaksOverride::IsPageBreakBefore()
147 return (sal_Bool)((m_nValues & BO_PAGEBEFORE) != 0);
150 inline sal_Bool LwpBreaksOverride::IsPageBreakAfter()
152 return (sal_Bool)((m_nValues & BO_PAGEAFTER) != 0);
154 inline sal_Bool LwpBreaksOverride::IsPageBreakWithin()
156 return (sal_Bool)((m_nValues & BO_KEEPTOGETHER) != 0);
158 inline sal_Bool LwpBreaksOverride::IsColumnBreakBefore()
160 return (sal_Bool)((m_nValues & BO_COLBEFORE) != 0);
162 inline sal_Bool LwpBreaksOverride::IsColumnBreakAfter()
164 return (sal_Bool)((m_nValues & BO_COLAFTER) != 0);
166 inline sal_Bool LwpBreaksOverride::IsKeepWithNext()
168 return (sal_Bool)((m_nValues & BO_KEEPNEXT) != 0);
170 inline sal_Bool LwpBreaksOverride::IsKeepWithPrevious()
172 return (sal_Bool)((m_nValues & BO_KEEPPREV) != 0);
174 inline sal_Bool LwpBreaksOverride::IsUseNextStyle()
176 return (sal_Bool)((m_nValues & BO_USENEXTSTYLE) != 0);
179 inline sal_Bool LwpBreaksOverride::IsPageBreakBeforeOverridden()
181 return (sal_Bool)((m_nOverride& BO_PAGEBEFORE) != 0);
183 inline sal_Bool LwpBreaksOverride::IsPageBreakAfterOverridden()
185 return (sal_Bool)((m_nOverride& BO_PAGEAFTER) != 0);
187 inline sal_Bool LwpBreaksOverride::IsPageBreakWithinOverridden()
189 return (sal_Bool)((m_nOverride& BO_KEEPTOGETHER) != 0);
191 inline sal_Bool LwpBreaksOverride::IsColumnBreakBeforeOverridden()
193 return (sal_Bool)((m_nOverride& BO_COLBEFORE) != 0);
195 inline sal_Bool LwpBreaksOverride::IsColumnBreakAfterOverridden()
197 return (sal_Bool)((m_nOverride& BO_COLAFTER) != 0);
199 inline sal_Bool LwpBreaksOverride::IsKeepWithNextOverridden()
201 return (sal_Bool)((m_nOverride& BO_KEEPNEXT) != 0);
203 inline sal_Bool LwpBreaksOverride::IsKeepWithPreviousOverridden()
205 return (sal_Bool)((m_nOverride& BO_KEEPPREV) != 0);
207 inline sal_Bool LwpBreaksOverride::IsUseNextStyleOverridden()
209 return (sal_Bool)((m_nOverride& BO_USENEXTSTYLE) != 0);
212 inline void LwpBreaksOverride::RevertPageBreakBefore()
214 LwpOverride::Override(BO_PAGEBEFORE, STATE_STYLE);
216 inline void LwpBreaksOverride::RevertPageBreakAfter()
218 LwpOverride::Override(BO_PAGEAFTER, STATE_STYLE);
220 inline void LwpBreaksOverride::RevertPageBreakWithin()
222 LwpOverride::Override(BO_KEEPTOGETHER, STATE_STYLE);
224 inline void LwpBreaksOverride::RevertColumnBreakBefore()
226 LwpOverride::Override(BO_COLBEFORE, STATE_STYLE);
228 inline void LwpBreaksOverride::RevertColumnBreakAfter()
230 LwpOverride::Override(BO_COLAFTER, STATE_STYLE);
232 inline void LwpBreaksOverride::RevertKeepWithNext()
234 LwpOverride::Override(BO_KEEPNEXT, STATE_STYLE);
236 inline void LwpBreaksOverride::RevertKeepWithPrevious()
238 LwpOverride::Override(BO_KEEPPREV, STATE_STYLE);
240 inline void LwpBreaksOverride::RevertUseNextStyle()
242 LwpOverride::Override(BO_USENEXTSTYLE, STATE_STYLE);
245 inline LwpAtomHolder* LwpBreaksOverride::GetNextStyle()
247 return m_pNextStyle;
251 #endif
253 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */