diff options
author | Philipp Lohmann <pl@openoffice.org> | 2009-06-24 17:37:07 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2009-06-24 17:37:07 +0000 |
commit | d3afbfc954cd9e3f99e3bd77fa87d70055447e03 (patch) | |
tree | e6568d09b8a400495f74f295430dab98249a8958 /vcl/inc | |
parent | a22cd6b9c89f9d1bac898596942af3e889ee94d6 (diff) |
prepare for more properties from the outside (e.g. API printing)
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/vcl/print.hxx | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/vcl/inc/vcl/print.hxx b/vcl/inc/vcl/print.hxx index ca3c6030f4e4..941feb97b8e3 100644 --- a/vcl/inc/vcl/print.hxx +++ b/vcl/inc/vcl/print.hxx @@ -480,16 +480,17 @@ public: virtual void jobFinished(); // optionally release resources bound to the job // implementation details, not usable outside vcl - int SAL_DLLPRIVATE getFilteredPageCount(); - Size SAL_DLLPRIVATE getPageFile( int i_inUnfilteredPage, GDIMetaFile& rMtf, bool i_bMayUseCache = false ); - Size SAL_DLLPRIVATE getFilteredPageFile( int i_nFilteredPage, GDIMetaFile& o_rMtf, bool i_bMayUseCache = false ); - void SAL_DLLPRIVATE printFilteredPage( int i_nPage ); - void SAL_DLLPRIVATE setPrinter( const boost::shared_ptr<Printer>& ); - void SAL_DLLPRIVATE setOptionChangeHdl( const Link& ); - void SAL_DLLPRIVATE createProgressDialog(); - void SAL_DLLPRIVATE setMultipage( const MultiPageSetup& ); - const MultiPageSetup& getMultipage() const; - void SAL_DLLPRIVATE setLastPage( sal_Bool i_bLastPage ); + SAL_DLLPRIVATE int getFilteredPageCount(); + SAL_DLLPRIVATE Size getPageFile( int i_inUnfilteredPage, GDIMetaFile& rMtf, bool i_bMayUseCache = false ); + SAL_DLLPRIVATE Size getFilteredPageFile( int i_nFilteredPage, GDIMetaFile& o_rMtf, bool i_bMayUseCache = false ); + SAL_DLLPRIVATE void printFilteredPage( int i_nPage ); + SAL_DLLPRIVATE void setPrinter( const boost::shared_ptr<Printer>& ); + SAL_DLLPRIVATE void setOptionChangeHdl( const Link& ); + SAL_DLLPRIVATE void createProgressDialog(); + SAL_DLLPRIVATE void setMultipage( const MultiPageSetup& ); + SAL_DLLPRIVATE const MultiPageSetup& getMultipage() const; + SAL_DLLPRIVATE void setLastPage( sal_Bool i_bLastPage ); + SAL_DLLPRIVATE void pushPropertiesToPrinter(); }; class VCL_DLLPUBLIC PrinterOptionsHelper |