blob: 9bfd5400b98c9051e41457b2004f8377033d259e (
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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 _DBUI_HRC
#define _DBUI_HRC
#include "rcid.hrc"
// Strings ------------------------------------------------------------------
#define SA_ADDRESS_HEADER (RC_DBUI_BEGIN + 1)
#define STR_NOTASSIGNED (RC_DBUI_BEGIN + 2)
#define STR_FILTER_ALL (RC_DBUI_BEGIN + 3)
#define STR_FILTER_SXB (RC_DBUI_BEGIN + 4)
#define STR_FILTER_SXC (RC_DBUI_BEGIN + 5)
#define STR_FILTER_DBF (RC_DBUI_BEGIN + 6)
#define STR_FILTER_XLS (RC_DBUI_BEGIN + 7)
#define STR_FILTER_TXT (RC_DBUI_BEGIN + 8)
#define STR_FILTER_CSV (RC_DBUI_BEGIN + 9)
#define STR_FILTER_ALL_DATA (RC_DBUI_BEGIN + 10)
#define STR_FILTER_MDB (RC_DBUI_BEGIN + 11)
#define STR_FILTER_ACCDB (RC_DBUI_BEGIN + 12)
#define ST_SALUTATION (RC_DBUI_BEGIN + 13)
#define ST_PUNCTUATION (RC_DBUI_BEGIN + 14)
#define ST_TEXT (RC_DBUI_BEGIN + 15)
#define RA_SALUTATION (RC_DBUI_BEGIN + 16)
#define RA_PUNCTUATION (RC_DBUI_BEGIN + 18)
#define ST_TITLE_MALE (RC_DBUI_BEGIN + 19)
#define ST_TITLE_FEMALE (RC_DBUI_BEGIN + 20)
#define ST_SALUTATIONELEMENTS (RC_DBUI_BEGIN + 21)
#define ST_INSERTSALUTATIONFIELD (RC_DBUI_BEGIN + 22)
#define ST_REMOVESALUTATIONFIELD (RC_DBUI_BEGIN + 23)
#define ST_DRAGSALUTATION (RC_DBUI_BEGIN + 24)
#define ST_TITLE_EDIT (RC_DBUI_BEGIN + 25)
#define ST_SAVESTART (RC_DBUI_BEGIN + 26)
#define ST_SAVEMERGED (RC_DBUI_BEGIN + 27)
#define ST_PRINT (RC_DBUI_BEGIN + 28)
#define ST_SENDMAIL (RC_DBUI_BEGIN + 29)
#define ST_DEFAULTATTACHMENT (RC_DBUI_BEGIN + 30)
#define ST_NOSUBJECT (RC_DBUI_BEGIN + 31)
#define ST_CONFIGUREMAIL (RC_DBUI_BEGIN + 32)
#define ST_FILTERNAME (RC_DBUI_BEGIN + 33)
#define ST_TYPE (RC_DBUI_BEGIN + 34)
#define ST_NAME (RC_DBUI_BEGIN + 35)
#define ST_TABLE (RC_DBUI_BEGIN + 36)
#define ST_QUERY (RC_DBUI_BEGIN + 37)
#define ST_SALUTATIONPREVIEW (RC_DBUI_BEGIN + 38)
#define ST_SALUTATIONMATCHING (RC_DBUI_BEGIN + 39)
#define ST_SALUTATIONELEMENT (RC_DBUI_BEGIN + 40)
#define ST_ADDRESSELEMENT (RC_DBUI_BEGIN + 41)
#define ST_MATCHESTO (RC_DBUI_BEGIN + 42)
#define ST_PREVIEW (RC_DBUI_BEGIN + 43)
#define ST_CONTINUE (RC_DBUI_BEGIN + 44)
#define ST_TASK (RC_DBUI_BEGIN + 45)
#define ST_STATUS (RC_DBUI_BEGIN + 46)
#define ST_SEND (RC_DBUI_BEGIN + 47)
#define ST_SENDINGTO (RC_DBUI_BEGIN + 48)
#define ST_COMPLETED (RC_DBUI_BEGIN + 49)
#define ST_FAILED (RC_DBUI_BEGIN + 50)
#define ST_TERMINATEQUERY (RC_DBUI_BEGIN + 51)
#define ST_STARTING (RC_DBUI_BEGIN + 52)
#define ST_DOCUMETNTYPE (RC_DBUI_BEGIN + 53)
#define ST_ADDRESSBLOCK (RC_DBUI_BEGIN + 54)
#define ST_GREETINGSLINE (RC_DBUI_BEGIN + 55)
#define ST_LAYOUT (RC_DBUI_BEGIN + 56)
#define ST_PREPAREMERGE (RC_DBUI_BEGIN + 57)
#define ST_MERGE (RC_DBUI_BEGIN + 58)
#define ST_OUTPUT (RC_DBUI_BEGIN + 59)
#define ST_FINISH (RC_DBUI_BEGIN + 60)
#define ST_ADDRESSLIST (RC_DBUI_BEGIN + 61)
// ImageList
#define ILIST (RC_DBUI_BEGIN + 62)
// Elements -----------------------------------------------------------------
#define MM_PART_TITLE 0
#define MM_PART_FIRSTNAME 1
#define MM_PART_LASTNAME 2
#define MM_PART_COMPANY 3
#define MM_PART_ADDRESS_1 4
#define MM_PART_ADDRESS_2 5
#define MM_PART_CITY 6
#define MM_PART_REGION 7
#define MM_PART_ZIP 8
#define MM_PART_COUNTRY 9
#define MM_PART_PHONE_PRIVATE 10
#define MM_PART_PHONE_BUSINESS 11
#define MM_PART_E_MAIL 12
#define MM_PART_GENDER 13
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|