#101108# filterdata is now directly passed to all filters
This commit is contained in:
parent
c840c000db
commit
68a9e2a4bd
2 changed files with 11 additions and 7 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: dlgeps.cxx,v $
|
||||
*
|
||||
* $Revision: 1.5 $
|
||||
* $Revision: 1.6 $
|
||||
*
|
||||
* last change: $Author: sj $ $Date: 2001-10-09 12:09:18 $
|
||||
* last change: $Author: sj $ $Date: 2002-07-16 10:16:32 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -92,13 +92,13 @@ DlgExportEPS::DlgExportEPS( FltCallDialogParameter& rPara ) :
|
|||
aBtnOK ( this, ResId( BTN_OK ) ),
|
||||
aBtnCancel ( this, ResId( BTN_CANCEL ) ),
|
||||
aBtnHelp ( this, ResId( BTN_HELP ) ),
|
||||
pMgr ( rPara.pResMgr )
|
||||
pMgr ( rPara.pResMgr ),
|
||||
rFltCallPara ( rPara )
|
||||
{
|
||||
FreeResource();
|
||||
|
||||
|
||||
String aFilterConfigPath( RTL_CONSTASCII_USTRINGPARAM( "Office.Common/Filter/Graphic/Export/EPS" ) );
|
||||
pConfigItem = new FilterConfigItem( aFilterConfigPath );
|
||||
pConfigItem = new FilterConfigItem( aFilterConfigPath, &rPara.aFilterData );
|
||||
|
||||
// Config-Parameter lesen
|
||||
String sPreview( RTL_CONSTASCII_USTRINGPARAM( "Preview" ) );
|
||||
|
@ -205,6 +205,7 @@ IMPL_LINK( DlgExportEPS, OK, void *, EMPTYARG )
|
|||
String sTextMode( RTL_CONSTASCII_USTRINGPARAM( "TextMode" ) );
|
||||
pConfigItem->WriteInt32( sTextMode, aLBTextMode.GetSelectEntryPos() );
|
||||
|
||||
rFltCallPara.aFilterData = pConfigItem->GetFilterData();
|
||||
EndDialog( RET_OK );
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: dlgeps.hxx,v $
|
||||
*
|
||||
* $Revision: 1.4 $
|
||||
* $Revision: 1.5 $
|
||||
*
|
||||
* last change: $Author: sj $ $Date: 2001-04-28 15:40:36 $
|
||||
* last change: $Author: sj $ $Date: 2002-07-16 10:16:33 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -82,6 +82,9 @@ class ResMgr;
|
|||
class DlgExportEPS : public ModalDialog
|
||||
{
|
||||
private:
|
||||
|
||||
FltCallDialogParameter& rFltCallPara;
|
||||
|
||||
FixedLine aGrpPreview;
|
||||
CheckBox aCBPreviewTiff;
|
||||
CheckBox aCBPreviewEPSI;
|
||||
|
|
Loading…
Reference in a new issue