xref: /trunk/main/sw/source/ui/dbui/customizeaddresslistdialog.src (revision e1826db30507060a527474946bac0a9ba8207e9d)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22#include <customizeaddresslistdialog.hrc>
23#include <dbui.hrc>
24#include <helpid.h>
25
26ModalDialog DLG_MM_CUSTOMIZE_ADDRESS_LIST
27{
28    OutputSize = TRUE ;
29    SVLook = TRUE ;
30    HelpID = HID_MM_CUSTOMIZE_ADDRESS_LIST ;
31    Size = MAP_APPFONT ( 200, 171 ) ;
32    Moveable = TRUE ;
33
34    Text [ en-US ] = "Customize Address List" ;
35
36    FixedText FT_FIELDS
37    {
38        Pos = MAP_APPFONT ( 6, 3 ) ;
39        Size = MAP_APPFONT ( 100, 8 ) ;
40        Text [ en-US ] = "A~ddress list elements" ;
41    };
42    ListBox LB_FIELDS
43    {
44        HelpID = "sw:ListBox:DLG_MM_CUSTOMIZE_ADDRESS_LIST:LB_FIELDS" ;
45        Pos = MAP_APPFONT ( 6, 14 ) ;
46        Size = MAP_APPFONT ( 112, 120 ) ;
47        Border = TRUE ;
48    };
49    PushButton PB_ADD
50    {
51        HelpID = "sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_ADD" ;
52        Pos = MAP_APPFONT ( 144, 3 ) ;
53        Size = MAP_APPFONT ( 50, 14 ) ;
54        Text [ en-US ] = "~Add..." ;
55    };
56    PushButton PB_DELETE
57    {
58        HelpID = "sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DELETE" ;
59        Pos = MAP_APPFONT ( 144, 20 ) ;
60        Size = MAP_APPFONT ( 50, 14 ) ;
61        Text [ en-US ] = "~Delete" ;
62    };
63    PushButton PB_RENAME
64    {
65        HelpID = "sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_RENAME" ;
66        Pos = MAP_APPFONT ( 144, 37 ) ;
67        Size = MAP_APPFONT ( 50, 14 ) ;
68        Text [ en-US ] = "~Rename..." ;
69    };
70    ImageButton PB_UP
71    {
72        HelpID = "sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_UP" ;
73        Pos = MAP_APPFONT ( 124, 58 ) ;
74        Size = MAP_APPFONT ( 14, 14 ) ;
75        SYMBOL = IMAGEBUTTON_ARROW_UP;
76        QuickHelpText [ en-US ] = "Move up" ;
77    };
78    ImageButton PB_DOWN
79    {
80        HelpID = "sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DOWN" ;
81        Pos = MAP_APPFONT ( 124, 75 ) ;
82        Size = MAP_APPFONT ( 14, 14 ) ;
83        SYMBOL = IMAGEBUTTON_ARROW_DOWN;
84        QuickHelpText [ en-US ] = "Move down" ;
85    };
86    FixedLine FL_SEPARATOR
87    {
88        Pos = MAP_APPFONT ( 0, 140 ) ;
89        Size = MAP_APPFONT ( 200, 8 ) ;
90    };
91    OKButton PB_OK
92    {
93        Pos = MAP_APPFONT ( 35, 151 ) ;
94        Size = MAP_APPFONT ( 50, 14 ) ;
95        DefButton = TRUE ;
96    };
97    CancelButton PB_CANCEL
98    {
99        Pos = MAP_APPFONT ( 88, 151 ) ;
100        Size = MAP_APPFONT ( 50, 14 ) ;
101    };
102    {
103        Pos = MAP_APPFONT ( 144, 151 ) ;
104        Size = MAP_APPFONT ( 50, 14 ) ;
105    };
106};
107
108ModalDialog DLG_MM_ADD_RENAME_ENTRY
109{
110    OutputSize = TRUE ;
111    SVLook = TRUE ;
112    HelpID = HID_MM_ADD_RENAME_ENTRY ;
113    Size = MAP_APPFONT ( 188, 60 ) ;
114    Moveable = TRUE ;
115
116    Text [ en-US ] = "Add Element" ;
117
118    FixedText FT_FIELDNAME
119    {
120        Pos = MAP_APPFONT ( 6, 3 ) ;
121        Size = MAP_APPFONT ( 50, 8 ) ;
122        Text [ en-US ] = "Element ~name" ;
123    };
124    Edit ED_FIELDNAME
125    {
126        HelpID = "sw:Edit:DLG_MM_ADD_RENAME_ENTRY:ED_FIELDNAME" ;
127        Pos = MAP_APPFONT ( 6, 14 ) ;
128        Size = MAP_APPFONT ( 120, 12 ) ;
129        Border = TRUE ;
130    };
131
132    OKButton PB_OK
133    {
134        Pos = MAP_APPFONT ( 132, 3 ) ;
135        Size = MAP_APPFONT ( 50, 14 ) ;
136        DefButton = TRUE ;
137    };
138    CancelButton PB_CANCEL
139    {
140        Pos = MAP_APPFONT ( 132, 20 ) ;
141        Size = MAP_APPFONT ( 50, 14 ) ;
142    };
143    HelpButton PB_HELP
144    {
145        Pos = MAP_APPFONT ( 132, 40 ) ;
146        Size = MAP_APPFONT ( 50, 14 ) ;
147    };
148    String ST_RENAME_TITLE
149    {
150        Text [ en-US ] = "Rename Element" ;
151    };
152    String ST_ADD_BUTTON
153    {
154        Text [ en-US ] = "Add" ;
155    };
156};
157
158// ********************************************************************** EOF
159