diff options
Diffstat (limited to 'include/vcl/ppdparser.hxx')
-rw-r--r-- | include/vcl/ppdparser.hxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/vcl/ppdparser.hxx b/include/vcl/ppdparser.hxx index 71cc2105006a..92edf09eed2e 100644 --- a/include/vcl/ppdparser.hxx +++ b/include/vcl/ppdparser.hxx @@ -95,11 +95,9 @@ public: const PPDValue* getValue( const OUString& rOption ) const; const PPDValue* getValueCaseInsensitive( const OUString& rOption ) const; const PPDValue* getDefaultValue() const { return m_pDefaultValue; } - const PPDValue* getQueryValue() const { return m_bQueryValue ? &m_aQueryValue : NULL; } const OUString& getKey() const { return m_aKey; } bool isUIKey() const { return m_bUIOption; } - UIType getUIType() const { return m_eUIType; } SetupType getSetupType() const { return m_eSetupType; } int getOrderDependency() const { return m_nOrderDependency; } }; @@ -195,9 +193,6 @@ private: static OUString getPPDFile( const OUString& rFile ); public: static const PPDParser* getParser( const OUString& rFile ); - static void freeAll(); - - const OUString& getFilename() const { return m_aFile; } const PPDKey* getKey( int n ) const; const PPDKey* getKey( const OUString& rKey ) const; @@ -206,11 +201,6 @@ public: const ::std::list< PPDConstraint >& getConstraints() const { return m_aConstraints; } - const OUString& getPrinterName() const - { return m_aPrinterName.isEmpty() ? m_aNickName : m_aPrinterName; } - const OUString& getNickName() const - { return m_aNickName.isEmpty() ? m_aPrinterName : m_aNickName; } - bool isColorDevice() const { return m_bColorDevice; } bool isType42Capable() const { return m_bType42Capable; } sal_uLong getLanguageLevel() const { return m_nLanguageLevel; } @@ -222,8 +212,6 @@ public: int& rWidth, int& rHeight ) const; // width and height in pt // returns false if paper not found - int getPaperDimensions() const - { return m_pPaperDimensions ? m_pPaperDimensions->countValues() : 0; } // match the best paper for width and height OUString matchPaper( int nWidth, int nHeight ) const; @@ -237,21 +225,12 @@ public: // values int pt OUString getDefaultInputSlot() const; - int getInputSlots() const - { return m_pInputSlots ? m_pInputSlots->countValues() : 0; } void getDefaultResolution( int& rXRes, int& rYRes ) const; // values in dpi static void getResolutionFromString( const OUString&, int&, int& ); // helper function - int getDuplexTypes() const - { return m_pDuplexTypes ? m_pDuplexTypes->countValues() : 0; } - - int getFonts() const - { return m_pFontList ? m_pFontList->countValues() : 0; } - - OUString translateKey( const OUString& i_rKey, const com::sun::star::lang::Locale& i_rLocale = com::sun::star::lang::Locale() ) const; OUString translateOption( const OUString& i_rKey, |