blob: 9457fff8660998167f45f12c6da35045177e78bf (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _LABEL_HRC
#define _LABEL_HRC
// #include *****************************************************************
#include "envelp.hrc"
// Lokale Resourcen *********************************************************
#define TXT_WRITING 1
#define BOX_ADDR 2
#define EDT_WRITING 3
#define FT_DATABASE 4
#define LB_DATABASE 5
#define FT_TABLE 6
#define LB_TABLE 7
#define FL_WRITING 8
#define BTN_CONT 9
#define BTN_SHEET 10
#define TXT_MAKE 11
#define BOX_MAKE 12
#define TXT_TYPE 13
#define BOX_TYPE 14
#define INF_FORMAT 15
#define FL_FORMAT 16
#define FT_DBFIELD 17
#define LB_DBFIELD 18
#define BTN_INSERT 19
#define BTN_SYNC 20
#define RB_FROM_AUTO_TEXT 1
#define RB_FROM_EDIT 2
#define LB_AUTO_TEXT 3
#define FT_AUTO_TEXT_GROUP 4
#define LB_AUTO_TEXT_GROUP 5
#define ED_TEXT 6
#define FL_CONTENT 7
#define WIN_EXAMPLE 8
#define ST_VISCARD_GROUP 10
#define FL_DATA 30
#define FT_NAME 31
#define ED_FIRSTNAME 32
#define ED_NAME 33
#define ED_SHORTCUT 34
#define FT_STREET 35
#define ED_STREET 36
#define FT_ZIPCITY 37
#define ED_ZIP 38
#define ED_CITY 39
#define FT_COUNTRYSTATE 40
#define ED_COUNTRY 41
#define FT_TITLEPROF 42
#define ED_PROFESSION 43
#define ED_TITLE 44
#define ED_PHONE 46
#define ED_MOBILE 47
#define ED_FAX 49
#define FT_WWWMAIL 50
#define ED_WWW 51
#define ED_MAIL 52
#define ED_STATE 53
#define FT_COMP 54
#define ED_COMP 55
#define FT_COMP_EXT 56
#define ED_COMP_EXT 57
#define FT_SLOGAN 58
#define ED_SLOGAN 59
#define FT_POSITION 60
#define ED_POSITION 61
#define ST_BUSINESSCARDDLG 62
#define ST_FIRSTPAGE_LAB 63
#define ST_FIRSTPAGE_BC 64
#define FT_NAME_2 65
#define ED_FIRSTNAME_2 66
#define ED_NAME_2 67
#define ED_SHORTCUT_2 68
#define FT_PHONE_MOBILE 70
//#define FT_PHONE 71
//#define FT_MOBILE 72
#define FT_FAX 73
// Globale Resourcen ********************************************************
#define STR_DOC_TITLE (RC_LABEL_BEGIN)
#define STR_CUSTOM (RC_LABEL_BEGIN + 1)
// Ueberlaufpruefung ********************************************************
#define LABEL_ACT_END STR_CUSTOM
#if LABEL_ACT_END > RC_LABEL_END
#error Resource-Ueberlauf in #file, #line
#endif
#endif
|