Branch libreoffice-5-0-4
[LibreOffice.git] / include / rsc / rscsfx.hxx
blobcc6a23fea57929ef780d06dad5be05d6ab78dd2a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_RSC_RSCSFX_HXX
20 #define INCLUDED_RSC_RSCSFX_HXX
22 // StarView (RSC_NOTYPE) bis (RSC_NOTYPE + 0x190)
23 // Sfx (RSC_NOTYPE + 0x200) bis (RSC_NOTYPE + 0x20F)
24 #define RSC_SFX_STYLE_FAMILIES (0x100 + 0x201)
25 #define RSC_SFX_STYLE_FAMILY_ITEM (0x100 + 0x202)
26 #define RSC_SFX_SLOT_INFO (0x100 + 0x203)
27 // StarMoney (RSC_NOTYPE + 0x210) bis (RSC_NOTYPE + 0x22F)
28 // Public (RSC_NOTYPE + 0x300) bis (RSC_NOTYPE + 0x3FF)
30 //========== S F X =======================================
31 enum SfxStyleFamily { SFX_STYLE_FAMILY_CHAR = 1,
32 SFX_STYLE_FAMILY_PARA = 2,
33 SFX_STYLE_FAMILY_FRAME = 4,
34 SFX_STYLE_FAMILY_PAGE = 8,
35 SFX_STYLE_FAMILY_PSEUDO = 16,
36 SFX_STYLE_FAMILY_ALL = 0x7fff
40 // SfxTemplate
41 #define RSC_SFX_STYLE_ITEM_LIST 0x1
42 #define RSC_SFX_STYLE_ITEM_BITMAP 0x2
43 #define RSC_SFX_STYLE_ITEM_TEXT 0x4
44 #define RSC_SFX_STYLE_ITEM_HELPTEXT 0x8
45 #define RSC_SFX_STYLE_ITEM_STYLEFAMILY 0x10
46 #define RSC_SFX_STYLE_ITEM_IMAGE 0x20
49 // SfxSlotInfo
50 #define RSC_SFX_SLOT_INFO_SLOTNAME 0x1
51 #define RSC_SFX_SLOT_INFO_HELPTEXT 0x2
54 #endif
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */