summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/UserAdmin.src
blob: 1b6c808d534a8454ec6602ccce35e22cbdf85e28 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/* -*- 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 .
 */

#include "UserAdmin.hrc"
#include "dbu_dlg.hrc"
#include "dbaccess_helpid.hrc"

#define WINDOW_SIZE_X 260
#define WINDOW_SIZE_Y 185

TabPage TAB_PAGE_USERADMIN
{
    SVLook      = TRUE ;
    HelpId      = HID_TAB_PAGE_USERADMIN ;
    Size        = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;
    Hide = TRUE;

    FixedLine FL_USER
    {
        Pos                 = MAP_APPFONT ( 6 , 3  ) ;
        Size                = MAP_APPFONT ( WINDOW_SIZE_X - 8, 8) ;
        Text [ en-US ]  = "User selection";
    };

    FixedText FT_USER
    {
        Pos                 = MAP_APPFONT ( 12 , 14 ) ;
        Size                = MAP_APPFONT ( 90 , 10 ) ;
        Text [ en-US ]  = "Us~er:";
    };

    ListBox LB_USER
    {
        Border              = TRUE ;
        Pos                 = MAP_APPFONT ( 108 , 13) ;
        Size                = MAP_APPFONT ( 105 , 97 ) ;
        TabStop             = TRUE ;
        HScroll             = TRUE ;
        Sort                = TRUE ;
        DropDown            = TRUE ;
        HelpId              = HID_TAB_PAGE_LBUSER ;
    };

    PushButton PB_NEWUSER
    {
        Pos                 = MAP_APPFONT ( 12 , 29 ) ;
        Size                = MAP_APPFONT ( 70 , 14 ) ;
        TabStop             = TRUE ;
        DefButton           = TRUE ;
        HelpId              = HID_TAB_PAGE_PBUSER ;
        Text [ en-US ] = "~Add User...";
    };

    PushButton PB_CHANGEPWD
    {
        Pos                 = MAP_APPFONT ( 95 , 29 ) ;
        Size                = MAP_APPFONT ( 70 , 14 ) ;
        TabStop             = TRUE ;
        DefButton           = TRUE ;
        HelpId              = HID_TAB_PAGE_PBCHGPWD ;
        Text [ en-US ] = "Change ~Password...";
    };

    PushButton PB_DELETEUSER
    {
        Pos                 = MAP_APPFONT ( WINDOW_SIZE_X - 82 , 29 ) ;
        Size                = MAP_APPFONT ( 70 , 14 ) ;
        TabStop             = TRUE ;
        DefButton           = TRUE ;
        HelpId              = HID_TAB_PAGE_PBUSERDELETE ;
        Text [ en-US ] = "~Delete User...";
    };

    FixedLine FL_TABLE_GRANTS
    {
        Pos                 = MAP_APPFONT ( 6 , 52  ) ;
        Size                = MAP_APPFONT ( WINDOW_SIZE_X - 8, 8) ;
        Text [ en-US ] = "Access rights for selected user";
    };

    Control CTRL_TABLE_GRANTS
    {
        Pos                 = MAP_APPFONT ( 12 , 63  ) ;
        Size                = MAP_APPFONT ( WINDOW_SIZE_X - 22, WINDOW_SIZE_Y - 75 );
        Border              = TRUE ;
        TabStop             = TRUE ;
        HelpId              = HID_TAB_PAGE_TBLGRANTS ;
    };
};

QueryBox QUERY_USERADMIN_DELETE_USER
{
    Buttons = WB_YES_NO ;
    Message [ en-US ] = "Do you really want to delete the user?";
};

String STR_USERADMIN_NOT_AVAILABLE
{
    Text [ en-US ] = "The database does not support user administration." ;
};

#define EDIT_SIZE_X     50
#define FT_SIZE_X       90
#define WIN_X           220
#define WIN_Y           72

ModalDialog DLG_PASSWORD
{
    HelpId = HID_DLG_PASSWORD ;
    Border = TRUE ;
    Moveable = TRUE ;
    OutputSize = TRUE ;
    SVLook = TRUE ;
    Size = MAP_APPFONT ( WIN_X , WIN_Y ) ;

    FixedLine FL_USER
    {
        Pos = MAP_APPFONT ( 3 , 3 ) ;
        Size = MAP_APPFONT ( WIN_X - 3 - 6 - 6 - 50 , 8 ) ;
        Text [ en-US ] = "User \"$name$:  $\"";
    };
    FixedText FT_OLDPASSWORD
    {
        Pos = MAP_APPFONT ( 6 , 17 ) ;
        Size = MAP_APPFONT ( FT_SIZE_X , 10 ) ;
        Text [ en-US ] = "Old p~assword";
    };
    Edit ED_OLDPASSWORD
    {
        HelpID = "dbaccess:Edit:DLG_PASSWORD:ED_OLDPASSWORD";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 + FT_SIZE_X , 16 ) ;
        Size = MAP_APPFONT ( EDIT_SIZE_X , 12 ) ;
        PassWord = TRUE ;
    };

    FixedText FT_PASSWORD
    {
        Pos = MAP_APPFONT ( 6 , 35 ) ;
        Size = MAP_APPFONT ( FT_SIZE_X , 10 ) ;
        Text [ en-US ] = "~Password";
    };
    Edit ED_PASSWORD
    {
        HelpID = "dbaccess:Edit:DLG_PASSWORD:ED_PASSWORD";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 + FT_SIZE_X , 34 ) ;
        Size = MAP_APPFONT ( EDIT_SIZE_X , 12 ) ;
        PassWord = TRUE ;
    };
    FixedText FT_PASSWORD_REPEAT
    {
        Pos = MAP_APPFONT ( 6 , 52 ) ;
        Size = MAP_APPFONT ( FT_SIZE_X , 10 ) ;
        Text [ en-US ] = "~Confirm password";
    };
    Edit ED_PASSWORD_REPEAT
    {
        HelpID = "dbaccess:Edit:DLG_PASSWORD:ED_PASSWORD_REPEAT";
        Border = TRUE ;
        Pos = MAP_APPFONT ( 12 + FT_SIZE_X , 51 ) ;
        Size = MAP_APPFONT ( EDIT_SIZE_X , 12 ) ;
        PassWord = TRUE ;
    };

    OKButton BTN_PASSWORD_OK
    {
        Pos = MAP_APPFONT ( WIN_X - 56 , 6 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
        DefButton = TRUE ;
    };
    CancelButton BTN_PASSWORD_CANCEL
    {
        Pos = MAP_APPFONT ( WIN_X - 56 , 23 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    HelpButton BTN_PASSWORD_HELP
    {
        Pos = MAP_APPFONT ( WIN_X - 56 , 43 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
    Text [ en-US ] = "Change Password";
};

String STR_ERROR_PASSWORDS_NOT_IDENTICAL
{
    Text [ en-US ] = "The passwords do not match. Please enter the password again.";
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */