summaryrefslogtreecommitdiff
path: root/sc/source/ui/src/xmlsourcedlg.src
blob: f55110bc22c3f403480e2aa4741183a6ca6e97b3 (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
/*
 * 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/.
 */

#include "xmlsourcedlg.hrc"

ModalDialog RID_SCDLG_XML_SOURCE
{
    HelpID = "sc:ModalDialog:RID_SCDLG_XML_SOURCE";
    Text [ en-US ] = "XML Source" ;
    Size = MAP_APPFONT ( 250 , 200 ) ;
    Moveable = TRUE ;
    Closeable = TRUE ;

    FixedLine FL_SOURCE_FILE
    {
        Pos = MAP_APPFONT ( 6 , 5 ) ;
        Size = MAP_APPFONT ( 238 , 8 ) ;

        Text [ en-US ] = "Source file";
    };

    ImageButton BTN_SELECT_SOURCE_FILE
    {
        Pos = MAP_APPFONT ( 6 , 17 ) ;
        Size = MAP_APPFONT ( 13 , 15 ) ;

        QuickHelpText [ en-US ] = "Browse to set source file.";
    };

    FixedText FT_SOURCE_FILE
    {
        Pos = MAP_APPFONT ( 25 , 21 ) ;
        Size = MAP_APPFONT ( 219 , 8 ) ;

        Text [ en-US ] = "- not set -";
    };

    FixedLine FL_MAP_XML_TO_DOCUMENT
    {
        Pos = MAP_APPFONT ( 6 , 38 ) ;
        Size = MAP_APPFONT ( 238 , 8 ) ;

        Text [ en-US ] = "Map to document";
    };

    Control LB_SOURCE_TREE
    {
        Border = TRUE ;
        Pos = MAP_APPFONT ( 114 , 50 ) ;
        Size = MAP_APPFONT ( 130 , 120 ) ;
        TabStop = TRUE ;
    };

    Image IMG_ELEMENT_DEFAULT
    {
        ImageBitmap = Bitmap { File = "page.png" ; };
        MaskColor = STD_MASKCOLOR ;
    };

    Image IMG_FILE_OPEN
    {
        ImageBitmap = Bitmap { File = "file.png" ; };
        MaskColor = STD_MASKCOLOR ;
    };

    CancelButton BTN_CANCEL
    {
        Pos = MAP_APPFONT ( 194 , 181 ) ;
        Size = MAP_APPFONT ( 50 , 14 ) ;
    };
};