summaryrefslogtreecommitdiff
path: root/sc/source/ui/src
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-12-28 20:03:42 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-12-28 21:08:15 +0000
commit3c53039df67b35c495f69f14ccfad882e13a5950 (patch)
tree9012fea9f815afb0a48d3707173a77181f5b854f /sc/source/ui/src
parent7405c5a38546b026def5172dfade8e1c1e64d250 (diff)
convert xml source dialog to .ui
I'd be a bit happier if I know how to use the dialog in order to test it completely, but it should be unchanged. Change-Id: Ie9c561aef7ff697b9e829f9cf0c7e6938c58b217
Diffstat (limited to 'sc/source/ui/src')
-rw-r--r--sc/source/ui/src/xmlsourcedlg.src122
1 files changed, 0 insertions, 122 deletions
diff --git a/sc/source/ui/src/xmlsourcedlg.src b/sc/source/ui/src/xmlsourcedlg.src
deleted file mode 100644
index ff9643bdc90c..000000000000
--- a/sc/source/ui/src/xmlsourcedlg.src
+++ /dev/null
@@ -1,122 +0,0 @@
-/* -*- 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/.
- */
-
-#include "xmlsourcedlg.hrc"
-
-ModelessDialog 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 ( 6 , 52 ) ;
- Size = MAP_APPFONT ( 130 , 120 ) ;
- TabStop = TRUE ;
- };
-
- FixedText FT_MAPPED_CELL_TITLE
- {
- Pos = MAP_APPFONT( 145, 55 );
- Size = MAP_APPFONT ( 100 , 8 ) ;
-
- Text [ en-US ] = "Mapped cell";
- };
-
- Edit ED_MAPPED_CELL
- {
- Border = TRUE ;
- Pos = MAP_APPFONT ( 145 , 67 ) ;
- Size = MAP_APPFONT ( 69 , 12 ) ;
- TabStop = TRUE ;
- };
-
- ImageButton BTN_MAPPED_CELL
- {
- Pos = MAP_APPFONT ( 216 , 66 ) ;
- Size = MAP_APPFONT ( 13 , 15 ) ;
- TabStop = TRUE ;
- QuickHelpText [ en-US ] = "Shrink" ;
- };
-
- Image IMG_ELEMENT_DEFAULT
- {
- ImageBitmap = Bitmap { File = "xml_element.png" ; };
- MaskColor = STD_MASKCOLOR ;
- };
-
- Image IMG_ELEMENT_REPEAT
- {
- ImageBitmap = Bitmap { File = "xml_element_repeat.png" ; };
- MaskColor = STD_MASKCOLOR ;
- };
-
- Image IMG_ELEMENT_ATTRIBUTE
- {
- ImageBitmap = Bitmap { File = "xml_attribute.png" ; };
- MaskColor = STD_MASKCOLOR ;
- };
-
- Image IMG_FILE_OPEN
- {
- ImageBitmap = Bitmap { File = "file.png" ; };
- MaskColor = STD_MASKCOLOR ;
- };
-
- OKButton BTN_OK
- {
- Text [ en-US ] = "~Import" ;
- Pos = MAP_APPFONT ( 139 , 181 ) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
- };
-
- CancelButton BTN_CANCEL
- {
- Pos = MAP_APPFONT ( 194 , 181 ) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
- };
-};
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */