summaryrefslogtreecommitdiff
path: root/goodies/source
diff options
context:
space:
mode:
authorSven Jacobi <sj@openoffice.org>2001-04-26 12:21:24 +0000
committerSven Jacobi <sj@openoffice.org>2001-04-26 12:21:24 +0000
commit32dff836cec8460ad6eb09ebb2bfc9b6fcf2b671 (patch)
tree8542c3333f43438f43ef690f57bcd64779c43291 /goodies/source
parent3cb15690a812f5ba4c06d2f5f12204350447220e (diff)
added some eps filteroptions : now it is possible to export text as bitmap
Diffstat (limited to 'goodies/source')
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.cxx94
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.hrc19
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.hxx19
-rw-r--r--goodies/source/filter.vcl/eps/dlgeps.src106
-rw-r--r--goodies/source/filter.vcl/eps/epsstr.src24
-rw-r--r--goodies/source/filter.vcl/eps/strings.hrc18
6 files changed, 203 insertions, 77 deletions
diff --git a/goodies/source/filter.vcl/eps/dlgeps.cxx b/goodies/source/filter.vcl/eps/dlgeps.cxx
index 7ed36c8f07f9..53fff7ac91ce 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.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sj $ $Date: 2001-03-07 20:13:45 $
+ * last change: $Author: sj $ $Date: 2001-04-26 13:17:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,6 +78,9 @@ DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) :
aGrpPreview ( this, ResId( GRP_PREVIEW ) ),
aCBPreviewTiff ( this, ResId( CB_PREVIEW_TIFF ) ),
aCBPreviewEPSI ( this, ResId( CB_PREVIEW_EPSI ) ),
+ aGrpText ( this, ResId( GRP_TEXT ) ),
+ aLBTextMode ( this, ResId( LB_TEXT_MODE ) ),
+ aLBTextResolution ( this, ResId( LB_TEXT_RESOLUTION ) ),
aGrpVersion ( this, ResId( GRP_VERSION ) ),
aRBLevel1 ( this, ResId( RB_LEVEL1 ) ),
aRBLevel2 ( this, ResId( RB_LEVEL2 ) ),
@@ -94,19 +97,56 @@ DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) :
{
FreeResource();
+
String aFilterConfigPath( RTL_CONSTASCII_USTRINGPARAM( "Office.Common/Filter/Graphic/Export/EPS" ) );
pConfigItem = new FilterConfigItem( aFilterConfigPath );
// Config-Parameter lesen
- String aPrevStr( ResId( KEY_PREVIEW, pMgr ) );
- String aVersionStr( ResId( KEY_VERSION, pMgr ) );
- String aColorStr( ResId( KEY_COLOR, pMgr ) );
- String aComprStr( ResId( KEY_COMPR, pMgr ) );
+ String sPreview( ResId( KEY_PREVIEW, pMgr ) );
+ String sVersion( ResId( KEY_VERSION, pMgr ) );
+ String sColorFormat( ResId( KEY_COLOR, pMgr ) );
+ String sCompressionMode( ResId( KEY_COMPR, pMgr ) );
+ String sTextMode( ResId( KEY_TEXTMODE, pMgr ) );
+ String sTextToBitmapResolutions( ResId( KEY_TEXTRESOLUTIONS, pMgr ) );
+ String sSelectedTextToBitmapResolution( ResId( KEY_SELECTEDTEXTRESOLUTION, pMgr ) );
+
+ sal_Int32 nPreview = pConfigItem->ReadInt32( sPreview, 0 );
+ 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 );
- sal_Int32 nPreview = pConfigItem->ReadInt32( aPrevStr, 0 );
- sal_Int32 nVersion = pConfigItem->ReadInt32( aVersionStr, 2 );
- sal_Int32 nColor = pConfigItem->ReadInt32( aColorStr, 0 );
- sal_Int32 nCompr = pConfigItem->ReadInt32( aComprStr, 2 );
+ if ( nTextMode > 2 )
+ nTextMode = 0;
+ aLBTextMode.SelectEntryPos( nTextMode, sal_True );
+
+ ::rtl::OUString sDefault( RTL_CONSTASCII_USTRINGPARAM( "150 300 600 1200" ) );
+ String sEntries( String( pConfigItem->ReadString( sTextToBitmapResolutions, sDefault ) ) );
+ sal_Int16 nSelection = (sal_Int16)pConfigItem->ReadInt32( sSelectedTextToBitmapResolution, 0 );
+ String sTextResDPI( ResId( KEY_TEXTRESOLUTION_DPI, pMgr ) );
+
+ sal_uInt16 i, nIndex, nTokenCount = sEntries.GetTokenCount( ' ' );
+ for ( i = 0; i < 2; i++ )
+ {
+ for ( nIndex = 0; nIndex < nTokenCount; nIndex++ )
+ {
+ String sToken( sEntries.GetToken( nIndex, ' ' ) );
+ sal_Int32 nVal = sToken.ToInt32();
+ if ( nVal )
+ {
+ sToken.Append( sTextResDPI );
+ aLBTextResolution.InsertEntry( sToken );
+ }
+ }
+ if ( aLBTextResolution.GetEntryCount() )
+ break;
+ sEntries = sDefault;
+ }
+ if ( aLBTextResolution.GetEntryCount() <= nSelection )
+ nSelection = 0;
+ aLBTextResolution.SelectEntryPos( nSelection, sal_True );
+ if ( nTextMode == 1 )
+ aLBTextResolution.Disable();
BOOL bCheck = FALSE;
if ( nPreview & 1 )
@@ -149,6 +189,7 @@ DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) :
aBtnOK.SetClickHdl( LINK( this, DlgExportEPS, OK ) );
aRBLevel1.SetClickHdl( LINK( this, DlgExportEPS, LEVEL1 ) );
aRBLevel2.SetClickHdl( LINK( this, DlgExportEPS, LEVEL2 ) );
+ aLBTextMode.SetSelectHdl( LINK( this, DlgExportEPS, TEXTMODE ) );
}
DlgExportEPS::~DlgExportEPS()
@@ -172,26 +213,32 @@ IMPL_LINK( DlgExportEPS, OK, void *, EMPTYARG )
if ( aCBPreviewEPSI.IsChecked() )
nCheck += 2;
- String aPrevStr( ResId( KEY_PREVIEW, pMgr ) );
- pConfigItem->WriteInt32( aPrevStr, nCheck );
+ String sPreview( ResId( KEY_PREVIEW, pMgr ) );
+ pConfigItem->WriteInt32( sPreview, nCheck );
nCheck = 1;
if ( aRBLevel2.IsChecked() )
nCheck++;
- String aVersionStr( ResId( KEY_VERSION, pMgr ) );
- pConfigItem->WriteInt32( aVersionStr, nCheck );
+ String sVersion( ResId( KEY_VERSION, pMgr ) );
+ pConfigItem->WriteInt32( sVersion, nCheck );
nCheck = 1;
if ( aRBGrayscale.IsChecked() )
nCheck++;
- String aColorStr( ResId( KEY_COLOR, pMgr ) );
- pConfigItem->WriteInt32( aColorStr, nCheck );
+ String sColorFormat( ResId( KEY_COLOR, pMgr ) );
+ pConfigItem->WriteInt32( sColorFormat, nCheck );
nCheck = 1;
if ( aRBCompressionNone.IsChecked() )
nCheck++;
- String aComprStr( ResId( KEY_COMPR, pMgr ) );
- pConfigItem->WriteInt32( aComprStr, nCheck );
+ String sCompressionMode( ResId( KEY_COMPR, pMgr ) );
+ pConfigItem->WriteInt32( sCompressionMode, nCheck );
+
+ String sTextMode( ResId( KEY_TEXTMODE, pMgr ) );
+ pConfigItem->WriteInt32( sTextMode, aLBTextMode.GetSelectEntryPos() );
+
+ String sSelectedTextToBitmapResolution( ResId( KEY_SELECTEDTEXTRESOLUTION, pMgr ) );
+ pConfigItem->WriteInt32( sSelectedTextToBitmapResolution, aLBTextResolution.GetSelectEntryPos() );
EndDialog( RET_OK );
@@ -226,3 +273,14 @@ IMPL_LINK( DlgExportEPS, LEVEL2, void*, EMPTYARG )
return 0;
}
+//------------------------------------------------------------------------
+
+IMPL_LINK( DlgExportEPS, TEXTMODE, void*, EMPTYARG )
+{
+ if ( aLBTextMode.GetSelectEntryPos() == 1 )
+ aLBTextResolution.Disable();
+ else
+ aLBTextResolution.Enable();
+ return 0;
+}
+
diff --git a/goodies/source/filter.vcl/eps/dlgeps.hrc b/goodies/source/filter.vcl/eps/dlgeps.hrc
index d7a547839311..53b477c4f5de 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.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:30:11 $
+ * last change: $Author: sj $ $Date: 2001-04-26 13:17:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,11 +67,14 @@
#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 3
-#define RB_LEVEL2 4
-#define RB_COLOR 5
-#define RB_GRAYSCALE 6
-#define RB_COMPRESSION_LZW 7
-#define RB_COMPRESSION_NONE 8
+#define RB_LEVEL1 1
+#define RB_LEVEL2 2
+#define RB_COLOR 3
+#define RB_GRAYSCALE 4
+#define RB_COMPRESSION_LZW 5
+#define RB_COMPRESSION_NONE 6
+#define LB_TEXT_MODE 1
+#define LB_TEXT_RESOLUTION 2
diff --git a/goodies/source/filter.vcl/eps/dlgeps.hxx b/goodies/source/filter.vcl/eps/dlgeps.hxx
index 5c22b1856dc7..8c0b5b03330c 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.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: sj $ $Date: 2001-03-07 20:13:51 $
+ * last change: $Author: sj $ $Date: 2001-04-26 13:18:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -64,8 +64,9 @@
#include <svtools/fltcall.hxx>
#include <vcl/dialog.hxx>
#include <vcl/button.hxx>
-#include <vcl/group.hxx>
+#include <vcl/fixed.hxx>
#include <vcl/field.hxx>
+#include <vcl/lstbox.hxx>
#include <svtools/stdctrl.hxx>
@@ -81,16 +82,19 @@ class ResMgr;
class DlgExportEPS : public ModalDialog
{
private:
- GroupBox aGrpPreview;
+ FixedLine aGrpPreview;
CheckBox aCBPreviewTiff;
CheckBox aCBPreviewEPSI;
- GroupBox aGrpVersion;
+ FixedLine aGrpText;
+ ListBox aLBTextMode;
+ ListBox aLBTextResolution;
+ FixedLine aGrpVersion;
RadioButton aRBLevel1;
RadioButton aRBLevel2;
- GroupBox aGrpColor;
+ FixedLine aGrpColor;
RadioButton aRBColor;
RadioButton aRBGrayscale;
- GroupBox aGrpCompression;
+ FixedLine aGrpCompression;
RadioButton aRBCompressionLZW;
RadioButton aRBCompressionNone;
OKButton aBtnOK;
@@ -103,6 +107,7 @@ private:
DECL_LINK( OK, void * );
DECL_LINK( LEVEL1, void* );
DECL_LINK( LEVEL2, void* );
+ DECL_LINK( TEXTMODE, void* );
public:
DlgExportEPS( FltCallDialogParameter& rPara );
diff --git a/goodies/source/filter.vcl/eps/dlgeps.src b/goodies/source/filter.vcl/eps/dlgeps.src
index 877f6028689a..b30496c4d584 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.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: kz $ $Date: 2001-03-28 12:02:12 $
+ * last change: $Author: sj $ $Date: 2001-04-26 13:20:01 $
*
* 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 ( 149 , 198 ) ;
+ Size = MAP_APPFONT ( 251, 118 ) ;
Moveable = TRUE ;
Closeable = TRUE ;
Text = "EPS Export Optionen" ;
@@ -85,28 +85,28 @@ ModalDialog DLG_EXPORT_EPS
Text[ chinese_traditional ] = "EPS Xﶵ";
OKButton BTN_OK
{
- Pos = MAP_APPFONT ( 93 , 6 ) ;
+ Pos = MAP_APPFONT ( 197 , 6 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
DefButton = TRUE ;
};
CancelButton BTN_CANCEL
{
- Pos = MAP_APPFONT ( 93 , 23 ) ;
+ Pos = MAP_APPFONT ( 197, 23 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
};
HelpButton BTN_HELP
{
- Pos = MAP_APPFONT ( 93 , 43 ) ;
+ Pos = MAP_APPFONT ( 197 , 43 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
};
- GroupBox GRP_PREVIEW
+ FixedLine GRP_PREVIEW
{
- Pos = MAP_APPFONT ( 6 , 3 ) ;
- Size = MAP_APPFONT ( 80 , 42 ) ;
+ Pos = MAP_APPFONT ( 4 , 3 ) ;
+ Size = MAP_APPFONT ( 90 , 8 ) ;
Text = "Vorschau";
Text [ ENGLISH ] = "Preview";
Text[ italian ] = "Anteprima";
@@ -132,8 +132,8 @@ ModalDialog DLG_EXPORT_EPS
};
CheckBox CB_PREVIEW_TIFF
{
- Pos = MAP_APPFONT ( 12 , 14 ) ;
- Size = MAP_APPFONT ( 71 , 10 ) ;
+ Pos = MAP_APPFONT ( 7, 14 ) ;
+ Size = MAP_APPFONT ( 84 , 10 ) ;
Text = "~Vorschau Bild (Tiff)" ;
Text [ ENGLISH ] = "~Preview picture (Tiff)" ;
TabStop = TRUE ;
@@ -160,8 +160,8 @@ ModalDialog DLG_EXPORT_EPS
};
CheckBox CB_PREVIEW_EPSI
{
- Pos = MAP_APPFONT ( 12 , 30 ) ;
- Size = MAP_APPFONT ( 71, 10 ) ;
+ Pos = MAP_APPFONT ( 7 , 28 ) ;
+ Size = MAP_APPFONT ( 84, 10 ) ;
Text = "~Interchange (EPSI)" ;
Text [ ENGLISH ] = "~Interchange (EPSI)" ;
TabStop = TRUE ;
@@ -185,10 +185,47 @@ ModalDialog DLG_EXPORT_EPS
Text[ turkish ] = "Interchange (EPSI)";
};
- GroupBox GRP_VERSION
+
+ FixedLine GRP_TEXT
+ {
+ Pos = MAP_APPFONT ( 100 , 3 ) ;
+ Size = MAP_APPFONT ( 90, 8 ) ;
+ Text = "Text als Bitmap";
+ Text [ ENGLISH ] = "Text as Bitmap";
+ };
+ ListBox LB_TEXT_MODE
+ {
+ Border = TRUE ;
+ Pos = MAP_APPFONT( 103 , 14 );
+ Size = MAP_APPFONT( 84, 48 );
+ TabStop = TRUE ;
+ DropDown = TRUE ;
+ StringList =
+ {
+ < "Immer" ; > ;
+ < "Nie" ; > ;
+ < "nicht standard Fonts" ; > ;
+ };
+ StringList [ ENGLISH ] =
+ {
+ < "always" ; > ;
+ < "never" ; > ;
+ < "non standard fonts" ; > ;
+ };
+ };
+ ListBox LB_TEXT_RESOLUTION
{
- Pos = MAP_APPFONT ( 6 , 51 ) ;
- Size = MAP_APPFONT ( 80 , 42 ) ;
+ Border = TRUE ;
+ Pos = MAP_APPFONT( 103, 28 ) ;
+ Size = MAP_APPFONT( 84, 48 ) ;
+ TabStop = TRUE ;
+ DropDown = TRUE ;
+ };
+
+ FixedLine GRP_VERSION
+ {
+ Pos = MAP_APPFONT ( 4, 41 ) ;
+ Size = MAP_APPFONT ( 90 , 8 ) ;
Text = "Version";
Text [ ENGLISH ] = "Version";
Text[ italian ] = "Versione";
@@ -214,8 +251,8 @@ ModalDialog DLG_EXPORT_EPS
};
RadioButton RB_LEVEL1
{
- Pos = MAP_APPFONT ( 12 , 62 ) ;
- Size = MAP_APPFONT ( 71 , 10 ) ;
+ Pos = MAP_APPFONT ( 7 , 52 ) ;
+ Size = MAP_APPFONT ( 84 , 10 ) ;
Text = "Level ~1" ;
Text [ ENGLISH ] = "Level ~1" ;
TabStop = TRUE ;
@@ -242,8 +279,8 @@ ModalDialog DLG_EXPORT_EPS
};
RadioButton RB_LEVEL2
{
- Pos = MAP_APPFONT ( 12 , 78 ) ;
- Size = MAP_APPFONT ( 71, 10 ) ;
+ Pos = MAP_APPFONT ( 7 , 66 ) ;
+ Size = MAP_APPFONT ( 84, 10 ) ;
Text = "Level ~2" ;
Text [ ENGLISH ] = "Level ~2" ;
TabStop = TRUE ;
@@ -269,10 +306,10 @@ ModalDialog DLG_EXPORT_EPS
Text[ turkish ] = "Dzey ~2";
};
- GroupBox GRP_COLOR
+ FixedLine GRP_COLOR
{
- Pos = MAP_APPFONT ( 6 , 99 ) ;
- Size = MAP_APPFONT ( 80 , 42 ) ;
+ Pos = MAP_APPFONT ( 4 , 79 ) ;
+ Size = MAP_APPFONT ( 90 , 8 ) ;
Text = "Farb Format";
Text [ ENGLISH ] = "Color Type";
Text[ italian ] = "Formato colore";
@@ -298,8 +335,8 @@ ModalDialog DLG_EXPORT_EPS
};
RadioButton RB_COLOR
{
- Pos = MAP_APPFONT ( 12 , 110 ) ;
- Size = MAP_APPFONT ( 71, 10 ) ;
+ Pos = MAP_APPFONT ( 7 , 90 ) ;
+ Size = MAP_APPFONT ( 84, 10 ) ;
Text = "~Farbe" ;
Text [ ENGLISH ] = "~Color" ;
TabStop = TRUE ;
@@ -326,8 +363,8 @@ ModalDialog DLG_EXPORT_EPS
};
RadioButton RB_GRAYSCALE
{
- Pos = MAP_APPFONT ( 12 , 126 ) ;
- Size = MAP_APPFONT ( 71, 10 ) ;
+ Pos = MAP_APPFONT ( 7 , 104 ) ;
+ Size = MAP_APPFONT ( 84, 10 ) ;
Text = "~Graustufen" ;
Text [ ENGLISH ] = "~Grayscale" ;
TabStop = TRUE ;
@@ -353,10 +390,10 @@ ModalDialog DLG_EXPORT_EPS
Text[ turkish ] = "Gri tonlar";
};
- GroupBox GRP_COMPRESSION
+ FixedLine GRP_COMPRESSION
{
- Pos = MAP_APPFONT ( 6 , 147 ) ;
- Size = MAP_APPFONT ( 80 , 42 ) ;
+ Pos = MAP_APPFONT ( 100 , 79 ) ;
+ Size = MAP_APPFONT ( 90 , 8 ) ;
Text = "Kompression";
Text [ ENGLISH ] = "Compression";
Text[ italian ] = "Compressione";
@@ -382,8 +419,8 @@ ModalDialog DLG_EXPORT_EPS
};
RadioButton RB_COMPRESSION_LZW
{
- Pos = MAP_APPFONT ( 12 , 158 );
- Size = MAP_APPFONT ( 71, 10 ) ;
+ Pos = MAP_APPFONT ( 103, 90 );
+ Size = MAP_APPFONT ( 84, 10 ) ;
Text = "LZW Kodierung" ;
Text [ ENGLISH ] = "LZW Compression" ;
TabStop = TRUE ;
@@ -410,8 +447,8 @@ ModalDialog DLG_EXPORT_EPS
};
RadioButton RB_COMPRESSION_NONE
{
- Pos = MAP_APPFONT ( 12 , 174 ) ;
- Size = MAP_APPFONT ( 71, 10 ) ;
+ Pos = MAP_APPFONT ( 103, 104 ) ;
+ Size = MAP_APPFONT ( 84, 10 ) ;
Text = "Keine" ;
Text [ ENGLISH ] = "None" ;
TabStop = TRUE ;
@@ -436,6 +473,7 @@ ModalDialog DLG_EXPORT_EPS
Text[ korean ] = "";
Text[ turkish ] = "Yok";
};
+
Text[ italian ] = "Opzioni d'esportazione EPS";
Text[ portuguese_brazilian ] = "EPS Export Optionen";
Text[ portuguese ] = "Opes exportao EPS";
diff --git a/goodies/source/filter.vcl/eps/epsstr.src b/goodies/source/filter.vcl/eps/epsstr.src
index 9a8c69ce7cff..0ddd9b1c83f0 100644
--- a/goodies/source/filter.vcl/eps/epsstr.src
+++ b/goodies/source/filter.vcl/eps/epsstr.src
@@ -2,9 +2,9 @@
*
* $RCSfile: epsstr.src,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: kz $ $Date: 2001-04-03 19:10:10 $
+ * last change: $Author: sj $ $Date: 2001-04-26 13:20:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,7 +62,7 @@
#include "strings.hrc"
-// Key fuer den Dialog
+// configuration keys
String KEY_PREVIEW
{
Text = "Preview";
@@ -79,6 +79,24 @@ String KEY_COMPR
{
Text = "CompressionMode";
};
+String KEY_TEXTMODE
+{
+ Text = "TextMode";
+};
+String KEY_TEXTRESOLUTIONS
+{
+ Text = "TextToBitmapResolutions";
+};
+String KEY_SELECTEDTEXTRESOLUTION
+{
+ Text = "SelectedTextToBitmapResolution";
+};
+
+String KEY_TEXTRESOLUTION_DPI
+{
+ Text = " DPI" ;
+ Text[ ENGLISH ] = " DPI" ;
+};
String KEY_VERSION_CHECK
{
diff --git a/goodies/source/filter.vcl/eps/strings.hrc b/goodies/source/filter.vcl/eps/strings.hrc
index 5b6f111d5dc5..6b3bca467221 100644
--- a/goodies/source/filter.vcl/eps/strings.hrc
+++ b/goodies/source/filter.vcl/eps/strings.hrc
@@ -2,9 +2,9 @@
*
* $RCSfile: strings.hrc,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:30:11 $
+ * last change: $Author: sj $ $Date: 2001-04-26 13:21:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -58,9 +58,13 @@
*
*
************************************************************************/
-#define KEY_COMPR 256
-#define KEY_VERSION 257
-#define KEY_COLOR 258
-#define KEY_PREVIEW 259
-#define KEY_VERSION_CHECK 260
+#define KEY_COMPR 256
+#define KEY_VERSION 257
+#define KEY_COLOR 258
+#define KEY_PREVIEW 259
+#define KEY_VERSION_CHECK 260
+#define KEY_TEXTMODE 261
+#define KEY_TEXTRESOLUTIONS 263
+#define KEY_SELECTEDTEXTRESOLUTION 264
+#define KEY_TEXTRESOLUTION_DPI 265