xref: /aoo4110/main/svl/inc/svl/eitem.hxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _SFXENUMITEM_HXX
25 #define _SFXENUMITEM_HXX
26 
27 #include "svl/svldllapi.h"
28 #include <svl/cenumitm.hxx>
29 
30 //============================================================================
31 class SVL_DLLPUBLIC SfxEnumItem: public CntEnumItem
32 {
33 protected:
SfxEnumItem(sal_uInt16 which=0,sal_uInt16 nValue=0)34 	SfxEnumItem(sal_uInt16 which = 0, sal_uInt16 nValue = 0):
35 		CntEnumItem(which, nValue) {}
36 
SfxEnumItem(sal_uInt16 which,SvStream & rStream)37 	SfxEnumItem(sal_uInt16 which, SvStream & rStream):
38 		CntEnumItem(which, rStream) {}
39 
40 public:
41 	TYPEINFO();
42 
43 };
44 
45 //============================================================================
46 class SVL_DLLPUBLIC SfxBoolItem: public CntBoolItem
47 {
48 public:
49 	TYPEINFO();
50 
SfxBoolItem(sal_uInt16 which=0,sal_Bool bValue=sal_False)51 	SfxBoolItem(sal_uInt16 which = 0, sal_Bool bValue = sal_False):
52 		CntBoolItem(which, bValue) {}
53 
SfxBoolItem(sal_uInt16 which,SvStream & rStream)54 	SfxBoolItem(sal_uInt16 which, SvStream & rStream):
55 		CntBoolItem(which, rStream) {}
56 
Create(SvStream & rStream,sal_uInt16) const57 	virtual SfxPoolItem * Create(SvStream & rStream, sal_uInt16) const
58 	{ return new SfxBoolItem(Which(), rStream); }
59 
Clone(SfxItemPool * =0) const60 	virtual SfxPoolItem * Clone(SfxItemPool * = 0) const
61 	{ return new SfxBoolItem(*this); }
62 };
63 
64 #endif //  _SFXENUMITEM_HXX
65 
66