2000-09-18 15:18:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 19:36:02 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 19:36:02 +00:00
|
|
|
* $RCSfile: grid.src,v $
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2007-04-19 10:49:07 +00:00
|
|
|
* $Revision: 1.23 $
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2007-04-19 10:49:07 +00:00
|
|
|
* last change: $Author: ihi $ $Date: 2007-04-19 11:49:07 $
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 19:36:02 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 19:36:02 +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-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 19:36:02 +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-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 19:36:02 +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-09-18 15:18:56 +00:00
|
|
|
*
|
2005-09-08 19:36:02 +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-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#include <grid.hrc>
|
|
|
|
|
|
|
|
ModalDialog GRID_DIALOG
|
|
|
|
{
|
|
|
|
OutputSize = TRUE ;
|
|
|
|
SVLook = TRUE ;
|
|
|
|
Pos = MAP_APPFONT ( 10 , 10 ) ;
|
|
|
|
Size = MAP_APPFONT ( 300, 200 ) ;
|
|
|
|
Moveable = TRUE ;
|
|
|
|
Closeable = TRUE ;
|
|
|
|
|
|
|
|
OKButton GRID_DIALOG_OK_BTN
|
|
|
|
{
|
|
|
|
Pos = MAP_APPFONT( 245, 5 );
|
|
|
|
Size = MAP_APPFONT( 50, 15 );
|
|
|
|
DefButton = TRUE;
|
|
|
|
};
|
|
|
|
CancelButton GRID_DIALOG_CANCEL_BTN
|
|
|
|
{
|
|
|
|
Pos = MAP_APPFONT ( 245 , 25 ) ;
|
|
|
|
Size = MAP_APPFONT ( 50 , 15 ) ;
|
|
|
|
};
|
|
|
|
ListBox GRID_DIALOG_TYPE_BOX
|
|
|
|
{
|
|
|
|
Border = TRUE ;
|
|
|
|
Dropdown = TRUE ;
|
|
|
|
Pos = MAP_APPFONT( 245, 45 );
|
|
|
|
Size = MAP_APPFONT( 50, 130 );
|
|
|
|
};
|
|
|
|
PushButton GRID_DIALOG_RESET_BTN
|
|
|
|
{
|
|
|
|
Pos = MAP_APPFONT( 245, 65 );
|
|
|
|
Size = MAP_APPFONT( 50, 15 );
|
2004-06-25 10:26:47 +00:00
|
|
|
Text [ en-US ] = "Set";
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
Bitmap GRID_DIALOG_HANDLE_BMP
|
|
|
|
{
|
|
|
|
File = "handle.bmp";
|
|
|
|
};
|
|
|
|
String RESET_TYPE_LINEAR_ASCENDING
|
|
|
|
{
|
2004-06-25 10:26:47 +00:00
|
|
|
Text [ en-US ] = "Linear ascending";
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
String RESET_TYPE_LINEAR_DESCENDING
|
|
|
|
{
|
2004-06-25 10:26:47 +00:00
|
|
|
Text [ en-US ] = "Linear descending";
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
String RESET_TYPE_RESET
|
|
|
|
{
|
2004-06-25 10:26:47 +00:00
|
|
|
Text [ en-US ] = "Original values";
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
String RESET_TYPE_EXPONENTIAL
|
|
|
|
{
|
2004-06-25 10:26:47 +00:00
|
|
|
Text [ en-US ] = "Exponential increasing";
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
};
|
2001-06-08 21:20:02 +00:00
|
|
|
|
2001-07-13 19:56:48 +00:00
|
|
|
|
2001-08-07 14:00:52 +00:00
|
|
|
|
2001-08-14 15:37:04 +00:00
|
|
|
|
2001-08-21 20:06:14 +00:00
|
|
|
|
2001-08-25 19:16:09 +00:00
|
|
|
|
2001-08-29 08:14:13 +00:00
|
|
|
|
2001-08-29 19:50:39 +00:00
|
|
|
|
2001-11-16 21:40:01 +00:00
|
|
|
|
2003-03-25 15:04:55 +00:00
|
|
|
|
2003-04-29 16:45:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-25 15:04:55 +00:00
|
|
|
|
2003-06-13 11:49:00 +00:00
|
|
|
|
|
|
|
|
2003-03-25 15:04:55 +00:00
|
|
|
|
2003-07-17 11:37:00 +00:00
|
|
|
|
|
|
|
|
2003-07-03 16:29:10 +00:00
|
|
|
|
2003-12-17 17:20:26 +00:00
|
|
|
|
2003-03-25 15:04:55 +00:00
|
|
|
|
|
|
|
|