xref: /trunk/main/extensions/inc/extensio.hrc (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef EXTENSIONS_INC_EXTENSIO_HRC
28#define EXTENSIONS_INC_EXTENSIO_HRC
29
30#include <svl/solar.hrc>
31
32// -----------------------------------------------------------------------
33// - resource id ranges
34
35#define RID_ABP_START		( RID_MORE_EXTENSIONS_START +   0 )
36#define RID_ABP_END			( RID_MORE_EXTENSIONS_START +  19 )
37
38#define RID_DBP_START       ( RID_MORE_EXTENSIONS_START +  20 )
39#define RID_DBP_END         ( RID_MORE_EXTENSIONS_START +  39 )
40
41// !!! please adjust RID_LAST_EXTENSIONS_RANGE if you add new ranges here !!!
42
43#define RID_LAST_EXTENSIONS_RANGE RID_DBP_END
44
45#if RID_LAST_EXTENSIONS_RANGE > RID_MORE_EXTENSIONS_END
46    #error id range overflow
47#endif
48
49// -----------------------------------------------------------------------
50// - help id ranges
51
52#define HID_DBP_START		( HID_EXTENSIONS_START +   0 )
53#define HID_DBP_END			( HID_EXTENSIONS_START +  19 )
54
55#define HID_ABP_START		( HID_EXTENSIONS_START +  20 )
56#define HID_ABP_END			( HID_EXTENSIONS_START +  39 )
57
58#define HID_BIBLIO_START    ( HID_EXTENSIONS_START +   40 )
59#define HID_BIBLIO_END      ( HID_EXTENSIONS_START +   89 )
60
61#define HID_PROPC_START     ( HID_EXTENSIONS_START +   90 )
62#define HID_PROPC_END       ( HID_EXTENSIONS_START +  499 )
63
64#define HID_UPDATE_START    ( HID_EXTENSIONS_START +  500 )
65#define HID_UPDATE_END      ( HID_EXTENSIONS_START +  519 )
66
67// !!! please adjust HID_LAST_EXTENSIONS_RANGE if you add new ranges here !!!
68
69#define HID_LAST_EXTENSIONS_RANGE HID_UPDATE_END
70
71#if HID_LAST_EXTENSIONS_RANGE > HID_EXTENSIONS_END
72    #error id range overflow
73#endif
74
75#endif
76