2000-10-26 17:08:45 +00:00
|
|
|
|
/*************************************************************************
|
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* $RCSfile: paramdialog.src,v $
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* $Revision: 1.34 $
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* last change: $Author: rt $ $Date: 2005-09-08 15:08:38 $
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
|
* =============================================
|
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* 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.
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* 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.
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
2005-09-08 14:08:38 +00:00
|
|
|
|
* 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
|
2000-10-26 17:08:45 +00:00
|
|
|
|
*
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef _DBAUI_PARAMDIALOG_HRC_
|
|
|
|
|
#include "paramdialog.hrc"
|
|
|
|
|
#endif
|
2002-08-19 07:01:32 +00:00
|
|
|
|
#ifndef _DBU_DLG_HRC_
|
|
|
|
|
#include "dbu_dlg.hrc"
|
2000-10-26 17:08:45 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2001-06-07 14:09:39 +00:00
|
|
|
|
#define LIST_WIDTH 100
|
|
|
|
|
#define LIST_HEIGHT 50
|
|
|
|
|
|
2000-10-26 17:08:45 +00:00
|
|
|
|
ModalDialog DLG_PARAMETERS
|
|
|
|
|
{
|
|
|
|
|
OutputSize = TRUE ;
|
|
|
|
|
SVLook = TRUE ;
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Size = MAP_APPFONT ( 6 + LIST_WIDTH + 3 + 6 + BUTTON_WIDTH + 6, 98 ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Moveable = TRUE ;
|
|
|
|
|
Closeable = TRUE ;
|
2004-08-02 14:50:32 +00:00
|
|
|
|
|
2004-06-26 16:31:25 +00:00
|
|
|
|
Text [ de ] = "Parameter-Eingabe" ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
2001-06-07 14:09:39 +00:00
|
|
|
|
FixedLine FL_PARAMS
|
2000-10-26 17:08:45 +00:00
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 , 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( 3 + LIST_WIDTH + 3 , 8 ) ;
|
2004-06-26 16:31:25 +00:00
|
|
|
|
Text [ de ] = "~Parameter";
|
|
|
|
|
Text [ en-US ] = "~Parameters";
|
|
|
|
|
Text [ x-comment ] = " ";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
ListBox LB_ALLPARAMS
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 7 , 12 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( LIST_WIDTH , LIST_HEIGHT ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
Border = TRUE;
|
|
|
|
|
SVLook = TRUE;
|
|
|
|
|
};
|
2001-06-07 14:09:39 +00:00
|
|
|
|
FixedText FT_VALUE
|
2000-10-26 17:08:45 +00:00
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( LIST_WIDTH , 8 ) ;
|
2004-06-26 16:31:25 +00:00
|
|
|
|
Text [ de ] = "~Wert";
|
|
|
|
|
Text [ en-US ] = "~Value";
|
|
|
|
|
Text [ x-comment ] = " ";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
Edit ET_PARAM
|
|
|
|
|
{
|
|
|
|
|
Border = TRUE ;
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 + 8 + 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( LIST_WIDTH , 12 ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
TabStop = TRUE ;
|
|
|
|
|
};
|
|
|
|
|
PushButton BT_TRAVELNEXT
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 12 + LIST_HEIGHT + 4 + 8 + 3 + ( 12 - BUTTON_HEIGHT ) / 2) ;
|
|
|
|
|
Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
|
2004-06-26 16:31:25 +00:00
|
|
|
|
Text [ de ] = "~n<>chster";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
TabStop = TRUE ;
|
2004-06-26 16:31:25 +00:00
|
|
|
|
Text [ en-US ] = "~Next";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
OKButton BT_OK
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
TabStop = TRUE ;
|
|
|
|
|
DefButton = TRUE ;
|
|
|
|
|
};
|
|
|
|
|
CancelButton BT_CANCEL
|
|
|
|
|
{
|
2001-06-07 14:09:39 +00:00
|
|
|
|
Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 3 + BUTTON_HEIGHT + 3 ) ;
|
|
|
|
|
Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
TabStop = TRUE ;
|
|
|
|
|
};
|
2004-06-26 16:31:25 +00:00
|
|
|
|
Text [ en-US ] = "Parameter Input" ;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
|
|
String STR_COULD_NOT_CONVERT_PARAM
|
|
|
|
|
{
|
2004-06-26 16:31:25 +00:00
|
|
|
|
Text [ de ] = "Die Eingabe konnte nicht in einen g<>ltigen Wert f<>r die Spalte \"$name$\" umgewandelt werden";
|
|
|
|
|
Text [ en-US ] = "The entry could not be converted to a valid value for the \"$name$\"column";
|
2000-10-26 17:08:45 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
2003-03-19 16:57:12 +00:00
|
|
|
|
|