1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28#include "ucbexplorer.hrc" 29 30Menu MENU_MAIN 31{ 32 ItemList = 33 34 { 35 MenuItem 36 { 37 Identifier = MENU_FILE ; 38 Text [ en-US ] = "~File" ; 39 SubMenu = Menu 40 { 41 ItemList = 42 43 { 44 MenuItem 45 { 46 Identifier = MENU_EXIT ; 47 Text [ en-US ] = "~Exit" ; 48 AccelKey = KeyCode 49 { 50 Function = KEYFUNC_QUIT ; 51 }; 52 }; 53 }; 54 }; 55 }; 56 }; 57}; 58 59Menu MENU_POPUP 60{ 61 ItemList = 62 63 { 64 MenuItem 65 { 66 Identifier = MENU_NEW ; 67 Text [ en-US ] = "~New" ; 68 }; 69 MenuItem 70 { 71 Identifier = MENU_RENAME ; 72 Text [ en-US ] = "~Rename" ; 73 }; 74 MenuItem 75 { 76 Identifier = MENU_DELETE ; 77 Text [ en-US ] = "~Delete" ; 78 }; 79 }; 80}; 81 82/* 83Bitmap BMP_FOLDER_CLOSED 84{ 85 File = "bmp/fldclose.bmp" ; 86}; 87Bitmap BMP_FOLDER_OPENED 88{ 89 File = "bmp/fldopen.bmp" ; 90}; 91Bitmap BMP_DOCUMENT 92{ 93 File = "bmp/document.bmp" ; 94}; 95Bitmap BMP_LINK 96{ 97 File = "bmp/link.bmp" ; 98}; 99*/ 100 101ModalDialog DLG_STRINGINPUT 102{ 103 HelpID = "ucbhelper:ModalDialog:DLG_STRINGINPUT"; 104 Border = TRUE ; 105 Moveable = TRUE ; 106 OutputSize = TRUE ; 107 SVLook = TRUE ; 108 Size = MAP_APPFONT ( 218 , 44 ) ; 109 FixedText FT_STRINGINPUT_DLG_NAME 110 { 111 Pos = MAP_APPFONT ( 12 , 18 ) ; 112 Size = MAP_APPFONT ( 28 , 10 ) ; 113 Text [ en-US ] = "~Value" ; 114 }; 115 Edit ED_STRINGINPUT_DLG_NAME 116 { 117 HelpID = "ucbhelper:Edit:DLG_STRINGINPUT:ED_STRINGINPUT_DLG_NAME"; 118 Pos = MAP_APPFONT ( 40 , 16 ) ; 119 Size = MAP_APPFONT ( 110 , 12 ) ; 120 Border = TRUE ; 121 Left = TRUE ; 122 }; 123 GroupBox GB_STRINGINPUT_DLG_NAME 124 { 125 Group = TRUE ; 126 Pos = MAP_APPFONT ( 6 , 3 ) ; 127 Size = MAP_APPFONT ( 150 , 36 ) ; 128 }; 129 OKButton BT_STRINGINPUT_DLG_OK 130 { 131 Pos = MAP_APPFONT ( 162 , 6 ) ; 132 Size = MAP_APPFONT ( 50 , 14 ) ; 133 DefButton = TRUE ; 134 }; 135 CancelButton BT_STRINGINPUT_DLG_CANCEL 136 { 137 Pos = MAP_APPFONT ( 162 , 23 ) ; 138 Size = MAP_APPFONT ( 50 , 14 ) ; 139 }; 140 HelpButton BT_STRINGINPUT_DLG_HELP 141 { 142 Pos = MAP_APPFONT ( 162 , 200 ) ; 143 Size = MAP_APPFONT ( 50 , 14 ) ; 144 }; 145}; 146 147String TEXT_TITLEBAR 148{ 149 Text [ en-US ] = "UCB Explorer" ; 150}; 151 152