blob: 2bfc38b696c07abbdd9e5e32681e3f36caf2856c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef _FRMUI_HRC
#define _FRMUI_HRC
#include "rcid.hrc"
#include "globals.hrc"
#define DLG_COLUMN (RC_FRMDLG_BEGIN + 4)
#define DLG_CAPTION (RC_FRMDLG_BEGIN + 11)
#define DLG_SEQUENCE_OPTION (RC_FRMDLG_BEGIN + 12)
#define TP_FOOTNOTEOPTION (RC_FRMDLG_BEGIN + 12)
#define TP_ENDNOTEOPTION (RC_FRMDLG_BEGIN + 13)
#define STR_FRMUI_BORDER (RC_FRMDLG_BEGIN + 16)
#define STR_FRMUI_PATTERN (RC_FRMDLG_BEGIN + 17)
#define STR_FRMUI_WRAP (RC_FRMDLG_BEGIN + 18)
#define BMP_BEGIN (RC_FRMDLG_BEGIN + 18)
#define BMP_NOWRAP (BMP_BEGIN+5)
#define BMP_END (BMP_NOWRAP)
#define MN_BACKGROUND (BMP_END + 4)
#define MN_FOOTNOTE (BMP_END + 7)
#define STR_FRMDLG_BEGIN (MN_FOOTNOTE + 1)
#define STR_TOPPRT (STR_FRMDLG_BEGIN + 1)
#define STR_BORDER (STR_FRMDLG_BEGIN + 16)
#define STR_COLUMN (STR_FRMDLG_BEGIN + 17)
#define STR_CHAR (STR_FRMDLG_BEGIN + 19)
#define STR_OLE_INSERT (STR_FRMDLG_BEGIN + 45)
#define STR_OLE_EDIT (STR_FRMDLG_BEGIN + 46)
#define STR_COLL_HEADER (STR_FRMDLG_BEGIN + 47)
#define MSG_COLUMN_ERR_BOUNDWIDTH (STR_FRMDLG_BEGIN + 48)
#define STR_EDIT_GRF (STR_FRMDLG_BEGIN + 49)
#define STR_LINE_TOP (STR_FRMDLG_BEGIN + 50)
#define STR_LINE_BOTTOM (STR_FRMDLG_BEGIN + 51)
#define STR_LINE_CENTER (STR_FRMDLG_BEGIN + 52)
#define STR_CHAR_TOP (STR_FRMDLG_BEGIN + 53)
#define STR_CHAR_BOTTOM (STR_FRMDLG_BEGIN + 54)
#define STR_CHAR_CENTER (STR_FRMDLG_BEGIN + 55)
#define FRMDLG_ACT_END STR_CHAR_CENTER
#if FRMDLG_ACT_END > RC_FRMDLG_END
#error Resource-Id Ueberlauf in #file, #line
#endif
#endif // FRMUI_HRC
|