Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / src / xmlsourcedlg.src
blobff9643bdc90cb1f845940417ca21ed775b0af617
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 "xmlsourcedlg.hrc"
12 ModelessDialog RID_SCDLG_XML_SOURCE
14     HelpID = "sc:ModalDialog:RID_SCDLG_XML_SOURCE";
15     Text [ en-US ] = "XML Source" ;
16     Size = MAP_APPFONT ( 250 , 200 ) ;
17     Moveable = TRUE ;
18     Closeable = TRUE ;
20     FixedLine FL_SOURCE_FILE
21     {
22         Pos = MAP_APPFONT ( 6 , 5 ) ;
23         Size = MAP_APPFONT ( 238 , 8 ) ;
25         Text [ en-US ] = "Source file";
26     };
28     ImageButton BTN_SELECT_SOURCE_FILE
29     {
30         Pos = MAP_APPFONT ( 6 , 17 ) ;
31         Size = MAP_APPFONT ( 13 , 15 ) ;
33         QuickHelpText [ en-US ] = "Browse to set source file.";
34     };
36     FixedText FT_SOURCE_FILE
37     {
38         Pos = MAP_APPFONT ( 25 , 21 ) ;
39         Size = MAP_APPFONT ( 219 , 8 ) ;
41         Text [ en-US ] = "- not set -";
42     };
44     FixedLine FL_MAP_XML_TO_DOCUMENT
45     {
46         Pos = MAP_APPFONT ( 6 , 38 ) ;
47         Size = MAP_APPFONT ( 238 , 8 ) ;
49         Text [ en-US ] = "Map to document";
50     };
52     Control LB_SOURCE_TREE
53     {
54         Border = TRUE ;
55         Pos = MAP_APPFONT ( 6 , 52 ) ;
56         Size = MAP_APPFONT ( 130 , 120 ) ;
57         TabStop = TRUE ;
58     };
60     FixedText FT_MAPPED_CELL_TITLE
61     {
62         Pos = MAP_APPFONT( 145, 55 );
63         Size = MAP_APPFONT ( 100 , 8 ) ;
65         Text [ en-US ] = "Mapped cell";
66     };
68     Edit ED_MAPPED_CELL
69     {
70         Border = TRUE ;
71         Pos = MAP_APPFONT ( 145 , 67 ) ;
72         Size = MAP_APPFONT ( 69 , 12 ) ;
73         TabStop = TRUE ;
74     };
76     ImageButton BTN_MAPPED_CELL
77     {
78         Pos = MAP_APPFONT ( 216 , 66 ) ;
79         Size = MAP_APPFONT ( 13 , 15 ) ;
80         TabStop = TRUE ;
81         QuickHelpText [ en-US ] = "Shrink" ;
82     };
84     Image IMG_ELEMENT_DEFAULT
85     {
86         ImageBitmap = Bitmap { File = "xml_element.png" ; };
87         MaskColor = STD_MASKCOLOR ;
88     };
90     Image IMG_ELEMENT_REPEAT
91     {
92         ImageBitmap = Bitmap { File = "xml_element_repeat.png" ; };
93         MaskColor = STD_MASKCOLOR ;
94     };
96     Image IMG_ELEMENT_ATTRIBUTE
97     {
98         ImageBitmap = Bitmap { File = "xml_attribute.png" ; };
99         MaskColor = STD_MASKCOLOR ;
100     };
102     Image IMG_FILE_OPEN
103     {
104         ImageBitmap = Bitmap { File = "file.png" ; };
105         MaskColor = STD_MASKCOLOR ;
106     };
108     OKButton BTN_OK
109     {
110         Text [ en-US ] = "~Import" ;
111         Pos = MAP_APPFONT ( 139 , 181 ) ;
112         Size = MAP_APPFONT ( 50 , 14 ) ;
113     };
115     CancelButton BTN_CANCEL
116     {
117         Pos = MAP_APPFONT ( 194 , 181 ) ;
118         Size = MAP_APPFONT ( 50 , 14 ) ;
119     };
122 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */