xref: /aoo4110/main/rsc/inc/rsc/rscsfx.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 #ifndef _RSCSFX_HXX
24 #define _RSCSFX_HXX
25 
26 // StarView 	(RSC_NOTYPE) bis (RSC_NOTYPE + 0x190)
27 // Sfx 			(RSC_NOTYPE + 0x200) bis (RSC_NOTYPE + 0x20F)
28 #define RSC_SFX_STYLE_FAMILIES     (0x100 + 0x201)
29 #define RSC_SFX_STYLE_FAMILY_ITEM  (0x100 + 0x202)
30 #define RSC_SFX_SLOT_INFO          (0x100 + 0x203)
31 // StarMoney	(RSC_NOTYPE + 0x210) bis (RSC_NOTYPE + 0x22F)
32 // Public   	(RSC_NOTYPE + 0x300) bis (RSC_NOTYPE + 0x3FF)
33 
34 //========== S F X =======================================
35 enum SfxStyleFamily { SFX_STYLE_FAMILY_CHAR    = 1,
36                       SFX_STYLE_FAMILY_PARA    = 2,
37                       SFX_STYLE_FAMILY_FRAME   = 4,
38                       SFX_STYLE_FAMILY_PAGE    = 8,
39                       SFX_STYLE_FAMILY_PSEUDO  = 16,
40                       SFX_STYLE_FAMILY_ALL   = 0x7fff
41                       };
42 
43 
44 // SfxTemplateDialog
45 #define RSC_SFX_STYLE_ITEM_LIST         0x1
46 #define RSC_SFX_STYLE_ITEM_BITMAP       0x2
47 #define RSC_SFX_STYLE_ITEM_TEXT         0x4
48 #define RSC_SFX_STYLE_ITEM_HELPTEXT     0x8
49 #define RSC_SFX_STYLE_ITEM_STYLEFAMILY  0x10
50 #define RSC_SFX_STYLE_ITEM_IMAGE        0x20
51 
52 
53 // SfxSlotInfo
54 #define RSC_SFX_SLOT_INFO_SLOTNAME      0x1
55 #define RSC_SFX_SLOT_INFO_HELPTEXT      0x2
56 
57 
58 #endif
59