Bump version to 4.1-6
[LibreOffice.git] / sfx2 / source / dialog / inputdlg.src
blobcf7e3ecf8405593f0a16637eed643163e8160377
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
10 #include "inputdlg.hrc"
12 ModalDialog DLG_INPUT_BOX
14     OutputSize = TRUE;
15     SVLook = TRUE;
16     Moveable = TRUE;
17     Closeable = TRUE;
18     Size = MAP_APPFONT ( 215, 40 );
20     FixedText LABEL_INPUT_TEXT
21     {
22         Pos = MAP_APPFONT(5,6);
23         Size = MAP_APPFONT(80,10);
24     };
26     Edit EDT_INPUT_FIELD
27     {
28         Border = TRUE;
29         Pos = MAP_APPFONT(90,5);
30         Size = MAP_APPFONT(120,10);
31     };
33     PushButton BTN_INPUT_OK
34     {
35         Pos = MAP_APPFONT(125,20);
36         Size = MAP_APPFONT(40,15);
37         TabStop = TRUE;
38         DefButton = TRUE;
39         Text [en-US] = "OK";
40     };
42     PushButton BTN_INPUT_CANCEL
43     {
44         Pos = MAP_APPFONT(170,20);
45         Size = MAP_APPFONT(40,15);
46         TabStop = TRUE;
47         Text [en-US] = "Cancel";
48     };
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */