summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorSven Jacobi <sj@openoffice.org>2002-08-15 08:23:38 +0000
committerSven Jacobi <sj@openoffice.org>2002-08-15 08:23:38 +0000
commita807df25a18d9b2ded8200dd3b4916c1fa24910b (patch)
tree765c58d2af8c57d4e5d45ad48a8ebb5e874d2fc8 /goodies
parentf00cf338e6ed75c6414fa836c4e609052e42c6ae (diff)
#101650# removed text options, so the user doesn't have to decide to use glyph or text export
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.cxx14
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.hrc6
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.hxx6
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.src157
4 files changed, 9 insertions, 174 deletions
diff --git a/goodies/source/filter.vcl/eps/dlgeps.cxx b/goodies/source/filter.vcl/eps/dlgeps.cxx
index 87515fd74f6b..2cd3b1b1c96e 100644
--- a/goodies/source/filter.vcl/eps/dlgeps.cxx
+++ b/goodies/source/filter.vcl/eps/dlgeps.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgeps.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: sj $ $Date: 2002-07-16 10:16:32 $
+ * last change: $Author: sj $ $Date: 2002-08-15 09:23:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,8 +87,6 @@ DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) :
aGrpCompression ( this, ResId( GRP_COMPRESSION ) ),
aRBCompressionLZW ( this, ResId( RB_COMPRESSION_LZW ) ),
aRBCompressionNone ( this, ResId( RB_COMPRESSION_NONE ) ),
- aGrpText ( this, ResId( GRP_TEXT ) ),
- aLBTextMode ( this, ResId( LB_TEXT_MODE ) ),
aBtnOK ( this, ResId( BTN_OK ) ),
aBtnCancel ( this, ResId( BTN_CANCEL ) ),
aBtnHelp ( this, ResId( BTN_HELP ) ),
@@ -111,11 +109,6 @@ DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) :
sal_Int32 nVersion = pConfigItem->ReadInt32( sVersion, 2 );
sal_Int32 nColor = pConfigItem->ReadInt32( sColorFormat, 0 );
sal_Int32 nCompr = pConfigItem->ReadInt32( sCompressionMode, 2 );
- sal_uInt16 nTextMode = (sal_Int16)pConfigItem->ReadInt32( sTextMode, 0 );
-
- if ( nTextMode > 1 )
- nTextMode = 0;
- aLBTextMode.SelectEntryPos( nTextMode, sal_True );
BOOL bCheck = FALSE;
if ( nPreview & 1 )
@@ -202,9 +195,6 @@ IMPL_LINK( DlgExportEPS, OK, void *, EMPTYARG )
String sCompressionMode( RTL_CONSTASCII_USTRINGPARAM( "CompressionMode" ) );
pConfigItem->WriteInt32( sCompressionMode, nCheck );
- String sTextMode( RTL_CONSTASCII_USTRINGPARAM( "TextMode" ) );
- pConfigItem->WriteInt32( sTextMode, aLBTextMode.GetSelectEntryPos() );
-
rFltCallPara.aFilterData = pConfigItem->GetFilterData();
EndDialog( RET_OK );
diff --git a/goodies/source/filter.vcl/eps/dlgeps.hrc b/goodies/source/filter.vcl/eps/dlgeps.hrc
index c95c8f67a9b9..e7658ec6e4b8 100644
--- a/goodies/source/filter.vcl/eps/dlgeps.hrc
+++ b/goodies/source/filter.vcl/eps/dlgeps.hrc
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgeps.hrc,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: sj $ $Date: 2001-04-28 15:38:19 $
+ * last change: $Author: sj $ $Date: 2002-08-15 09:23:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,7 +67,6 @@
#define GRP_VERSION 2
#define GRP_COLOR 3
#define GRP_COMPRESSION 4
-#define GRP_TEXT 5
#define CB_PREVIEW_TIFF 1
#define CB_PREVIEW_EPSI 2
#define RB_LEVEL1 1
@@ -76,4 +75,3 @@
#define RB_GRAYSCALE 4
#define RB_COMPRESSION_LZW 5
#define RB_COMPRESSION_NONE 6
-#define LB_TEXT_MODE 1
diff --git a/goodies/source/filter.vcl/eps/dlgeps.hxx b/goodies/source/filter.vcl/eps/dlgeps.hxx
index bb5d349f4faa..43e116c66422 100644
--- a/goodies/source/filter.vcl/eps/dlgeps.hxx
+++ b/goodies/source/filter.vcl/eps/dlgeps.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgeps.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: sj $ $Date: 2002-07-16 10:16:33 $
+ * last change: $Author: sj $ $Date: 2002-08-15 09:23:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -97,8 +97,6 @@ private:
FixedLine aGrpCompression;
RadioButton aRBCompressionLZW;
RadioButton aRBCompressionNone;
- FixedLine aGrpText;
- ListBox aLBTextMode;
OKButton aBtnOK;
CancelButton aBtnCancel;
HelpButton aBtnHelp;
diff --git a/goodies/source/filter.vcl/eps/dlgeps.src b/goodies/source/filter.vcl/eps/dlgeps.src
index 8c94a7a67828..1e59b78a1f13 100644
--- a/goodies/source/filter.vcl/eps/dlgeps.src
+++ b/goodies/source/filter.vcl/eps/dlgeps.src
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgeps.src,v $
*
- * $Revision: 1.33 $
+ * $Revision: 1.34 $
*
- * last change: $Author: kz $ $Date: 2002-02-05 21:08:22 $
+ * last change: $Author: sj $ $Date: 2002-08-15 09:23:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,7 +64,7 @@ ModalDialog DLG_EXPORT_EPS
{
OutputSize = TRUE ;
SVLook = TRUE ;
- Size = MAP_APPFONT ( 230, 185 ) ;
+ Size = MAP_APPFONT ( 230, 161 ) ;
Moveable = TRUE ;
Closeable = TRUE ;
Text = "EPS Export Optionen" ;
@@ -459,157 +459,6 @@ ModalDialog DLG_EXPORT_EPS
Text[ finnish ] = "Ei mitn";
Text[ catalan ] = "Cap";
};
-
- FixedLine GRP_TEXT
- {
- Pos = MAP_APPFONT ( 6 , 154 ) ;
- Size = MAP_APPFONT ( 162, 8 ) ;
- Text = "Text Einstellungen";
- Text [ ENGLISH ] = "TextMode";
- Text[ english_us ] = "Text settings";
- Text[ portuguese ] = "Configurao de texto";
- Text[ russian ] = " ";
- Text[ greek ] = " ";
- Text[ dutch ] = "Tekstinstellingen";
- Text[ french ] = "Paramtres de texte";
- Text[ spanish ] = "Configuracin de texto";
- Text[ italian ] = "Impostazioni testo";
- Text[ danish ] = "TextMode";
- Text[ swedish ] = "Textinstllningar";
- Text[ polish ] = "Ustawienia tekstu";
- Text[ portuguese_brazilian ] = "TextMode";
- Text[ japanese ] = "文字設定";
- Text[ korean ] = "텍스트 설정";
- Text[ chinese_simplified ] = "设定文字";
- Text[ chinese_traditional ] = "設定文字";
- Text[ turkish ] = "TextMode";
- Text[ arabic ] = "TextMode";
- Text[ catalan ] = "Parmetres de text";
- Text[ finnish ] = "Tekstin asetukset";
- };
- ListBox LB_TEXT_MODE
- {
- Border = TRUE ;
- Pos = MAP_APPFONT( 12, 165 );
- Size = MAP_APPFONT( 150, 48 );
- TabStop = TRUE ;
- DropDown = TRUE ;
- StringList =
- {
- < "Glyph Outlines immer exportieren" ; > ;
- < "Glyph Outlines niemals exportieren" ; > ;
- };
- StringList [ ENGLISH ] =
- {
- < "always export glyph outlines" ; > ;
- < "newer export glyph outlines " ; > ;
- };
- StringList [ language_user1 ] =
- {
- < "Glyph Outlines immer exportieren" ; > ;
- < "Glyph Outlines niemals exportieren" ; > ;
- };
- StringList [ english_us ] =
- {
- < "Always export glyph outlines" ; > ;
- < "Never export glyph outlines" ; > ;
- };
- StringList [ portuguese ] =
- {
- < "Exportar sempre Glyph Outlines" ; > ;
- < "Nunca exportar Glyph Outlines" ; > ;
- };
- StringList [ russian ] =
- {
- < " Glyph Outlines" ; > ;
- < " Glyph Outlines" ; > ;
- };
- StringList [ greek ] =
- {
- < " Glyph Outlines" ; > ;
- < " Glyph Outlines" ; > ;
- };
- StringList [ dutch ] =
- {
- < "Glyph Outlines altijd exporteren" ; > ;
- < "Glyph Outlines nooit exporteren" ; > ;
- };
- StringList [ french ] =
- {
- < "Toujours exporter les contours glyphes" ; > ;
- < "Ne jamais exporter les contours glyphes" ; > ;
- };
- StringList [ spanish ] =
- {
- < "Exportar siempre Glyph Outlines" ; > ;
- < "No exportar nunca Glyph Outlines" ; > ;
- };
- StringList [ italian ] =
- {
- < "Esporta sempre Glyph Outlines" ; > ;
- < "Non esportare mai Glyph Outlines" ; > ;
- };
- StringList [ danish ] =
- {
- < "Glyph Outlines immer exportieren" ; > ;
- < "Glyph Outlines niemals exportieren" ; > ;
- };
- StringList [ swedish ] =
- {
- < "Exportera alltid glyfkonturer" ; > ;
- < "Exportera aldrig glyfkonturer" ; > ;
- };
- StringList [ polish ] =
- {
- < "Eksportuj zawsze kontury glifw (glyph outlines)" ; > ;
- < "Nie nigdy eksportuj konturw glifw (glyph outlines)" ; > ;
- };
- StringList [ portuguese_brazilian ] =
- {
- < "Glyph Outlines immer exportieren" ; > ;
- < "Glyph Outlines niemals exportieren" ; > ;
- };
- StringList [ japanese ] =
- {
- < "グリフ・アウトラインは常にエクスポートする" ; > ;
- < "グリフ・アウトラインは絶対にエクスポートしない" ; > ;
- };
- StringList [ korean ] =
- {
- < "글리프 아웃라인 항상 내보내기" ; > ;
- < "글리프 아웃 라인 절대 내보내지 않기" ; > ;
- };
- StringList [ chinese_simplified ] =
- {
- < "自动输出字体轮廓" ; > ;
- < "永不输出字体轮廓" ; > ;
- };
- StringList [ chinese_traditional ] =
- {
- < "自動匯出字型輪廓" ; > ;
- < "永不匯出字型輪廓" ; > ;
- };
- StringList [ turkish ] =
- {
- < "Glyph Outlines immer exportieren" ; > ;
- < "Glyph Outlines niemals exportieren" ; > ;
- };
- StringList [ arabic ] =
- {
- < "Glyph Outlines immer exportieren" ; > ;
- < "Glyph Outlines niemals exportieren" ; > ;
- };
- StringList [ catalan ] =
- {
- < "Exporta sempre els contorns dels gravats" ; > ;
- < "No exportis mai els contorns dels gravats" ; > ;
- };
- StringList [ finnish ] =
- {
- < "Vie symbolien jsennys aina" ; > ;
- < "l vie symbolien jsennyst koskaan" ; > ;
- };
- };
Text[ italian ] = "Opzioni d'esportazione EPS";
Text[ portuguese_brazilian ] = "EPS Export Optionen";
Text[ portuguese ] = "Opes exportao EPS";