2007/04/23 12:32:34 ihi 1.1.2.6: #i72301# German removed 2006/06/28 09:51:56 dr 1.1.2.5: german umlauts in UTF-8 2005/10/11 09:20:17 bm 1.1.2.4: license header change 2004/08/10 12:16:18 bm 1.1.2.3: resource changes (removal of translations and change to de, en-US and x-comment 2004/05/17 17:33:52 iha 1.1.2.2: provide object naming; resource cleanup 2004/05/05 20:39:54 iha 1.1.2.1: #i20344# location tab page for chart wizard
82 lines
2.7 KiB
Plaintext
82 lines
2.7 KiB
Plaintext
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: tp_Location.src,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: vg $ $Date: 2007-05-22 17:46:59 $
|
|
*
|
|
* 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
|
|
*
|
|
************************************************************************/
|
|
#include "HelpIds.hrc"
|
|
#include "tp_Location.hrc"
|
|
#include "dlg_CreationWizard.hrc"
|
|
|
|
#ifndef _SVT_CONTROLDIMS_HRC_
|
|
#include <svtools/controldims.hrc>
|
|
#endif
|
|
|
|
#define MASKCOLOR MaskColor = Color { Red = 0xC000 ; Green = 0xC000 ; Blue = 0xC000 ; }
|
|
#define WIZ_POSX1 6
|
|
#define WIZ_POSY1 6
|
|
#define WIZ_POSX2 (6+4)
|
|
#define WIZ_POSY2 (WIZ_POSY1+RSC_CD_FIXEDTEXT_HEIGHT+4)
|
|
#define TEXT_WIDTH 50
|
|
#define WIZ_POSX3 (WIZ_POSX2+TEXT_WIDTH+6)
|
|
#define WIZ_FIXEDLINE_WIDTH (CHART_WIZARD_PAGEWIDTH-WIZ_POSX1-6)
|
|
#define WIZ_LISTBOX_WIDTH (CHART_WIZARD_PAGEWIDTH-WIZ_POSX2-TEXT_WIDTH-6-6)
|
|
|
|
|
|
TabPage TP_LOCATION
|
|
{
|
|
Hide = TRUE ;
|
|
SVLook = TRUE ;
|
|
Size = MAP_APPFONT ( CHART_WIZARD_PAGEWIDTH , CHART_WIZARD_PAGEHEIGHT ) ;
|
|
|
|
FixedLine FL_TABLE
|
|
{
|
|
Pos = MAP_APPFONT ( WIZ_POSX1 , WIZ_POSY1 ) ;
|
|
Size = MAP_APPFONT ( WIZ_FIXEDLINE_WIDTH , RSC_CD_FIXEDTEXT_HEIGHT ) ;
|
|
|
|
Text [ en-US ] = "Place chart" ;
|
|
};
|
|
FixedText FT_TABLE
|
|
{
|
|
Pos = MAP_APPFONT ( WIZ_POSX2 , WIZ_POSY2 ) ;
|
|
Size = MAP_APPFONT ( TEXT_WIDTH , RSC_CD_FIXEDTEXT_HEIGHT ) ;
|
|
|
|
Text [ en-US ] = "~Insert in sheet" ;
|
|
};
|
|
ListBox LB_TABLE
|
|
{
|
|
Border = TRUE ;
|
|
DropDown = TRUE ;
|
|
Pos = MAP_APPFONT ( WIZ_POSX3 , WIZ_POSY2 ) ;
|
|
Size = MAP_APPFONT ( WIZ_LISTBOX_WIDTH , RSC_CD_FIXEDTEXT_HEIGHT ) ;
|
|
};
|
|
};
|