/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: directsql.src,v $ * * $Revision: 1.24 $ * * last change: $Author: hr $ $Date: 2005-09-26 10:27:18 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ #ifndef _DBACCESS_UI_DIRECTSQL_HRC_ #include "directsql.hrc" #endif #ifndef _DBU_DLG_HRC_ #include "dbu_dlg.hrc" #endif #define BUTTON_SIZE_X 50 #define BUTTON_SIZE_Y 14 #define WINDOW_SIZE_X 200 #define WINDOW_SIZE_Y 210 + BUTTON_SIZE_Y + BUTTON_SIZE_Y ModalDialog DLG_DIRECTSQL { OutputSize = TRUE ; Moveable = TRUE ; Closeable = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ; FixedLine FL_SQL { Pos = MAP_APPFONT( 4, 3 ); Size = MAP_APPFONT( WINDOW_SIZE_X - 8, 8 ); Text [ de ] = "SQL Kommando"; Text [ en-US ] = "SQL command"; }; FixedText FT_SQL { Pos = MAP_APPFONT( 7, 15 ); Size = MAP_APPFONT( WINDOW_SIZE_X - 14, 8 ); Text [ de ] = "auszuführendes Kommando"; Text [ en-US ] = "Command to execute"; }; MultiLineEdit ME_SQL { Pos = MAP_APPFONT( 7, 26 ); Size = MAP_APPFONT( WINDOW_SIZE_X - 14, 80 ); SVLook = TRUE; Border = TRUE; TabStop = TRUE; IgnoreTab = TRUE; }; PushButton PB_EXECUTE { Pos = MAP_APPFONT( WINDOW_SIZE_X - BUTTON_SIZE_X - 7, 109 ); Size = MAP_APPFONT( BUTTON_SIZE_X, BUTTON_SIZE_Y ); Text [ de ] = "Ausführen"; Text [ en-US ] = "Execute"; DefButton = TRUE; }; FixedText FT_HISTORY { Pos = MAP_APPFONT( 7, 110 + BUTTON_SIZE_Y + 3 ); Size = MAP_APPFONT( WINDOW_SIZE_X - 14, 8 ); Text [ de ] = "Vorherige Kommandos"; Text [ en-US ] = "Previous commands"; }; ListBox LB_HISTORY { Pos = MAP_APPFONT( 7, 121 + BUTTON_SIZE_Y + 3 ); Size = MAP_APPFONT( WINDOW_SIZE_X - 14, 14 ); SvLook = TRUE; DropDown = TRUE; Border = TRUE; }; FixedLine FL_STATUS { Pos = MAP_APPFONT( 4, 138 + BUTTON_SIZE_Y + 4 ); Size = MAP_APPFONT( WINDOW_SIZE_X - 8, 8 ); Text [ de ] = "Status"; Text [ en-US ] = "Status"; }; MultiLineEdit ME_STATUS { Pos = MAP_APPFONT( 7, 153 + BUTTON_SIZE_Y ); Size = MAP_APPFONT( WINDOW_SIZE_X - 14, 41 ); Border = TRUE; ReadOnly = TRUE; VScroll = TRUE; }; FixedLine FL_BUTTONS { Pos = MAP_APPFONT( 4, 193 + BUTTON_SIZE_Y + 4 ); Size = MAP_APPFONT( WINDOW_SIZE_X - 8, 8 ); }; HelpButton PB_HELP { Pos = MAP_APPFONT( WINDOW_SIZE_X - 7 - BUTTON_SIZE_X - 3 - BUTTON_SIZE_X, 207 + BUTTON_SIZE_Y ); Size = MAP_APPFONT( BUTTON_SIZE_X, BUTTON_SIZE_Y ); }; PushButton PB_CLOSE { Pos = MAP_APPFONT( WINDOW_SIZE_X - 7 - BUTTON_SIZE_X, 207 + BUTTON_SIZE_Y ); Size = MAP_APPFONT( BUTTON_SIZE_X, BUTTON_SIZE_Y ); Text [ de ] = "Schließen"; Text [ en-US ] = "Close"; }; Text [ de ] = "SQL Statement ausführen" ; Text [ en-US ] = "Execute SQL Statement" ; Text [ x-comment ] = "; zl: statement means SQL commandos which are directly executed."; }; String STR_COMMAND_EXECUTED_SUCCESSFULLY { Text [ de ] = "Befehl erfolgreich ausgeführt." ; Text [ en-US ] = "Command successfully executed." ; }; String STR_DIRECTSQL_CONNECTIONLOST { Text [ de ] = "Die Verbindung zur Datenbank wurde gelöscht. Dieser Dialog wird geschlossen."; Text [ en-US ] = "The connection to the database has been lost. This dialog will be closed."; };