diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmimagemap.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmimagemap.h')
-rw-r--r-- | kpovmodeler/pmimagemap.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kpovmodeler/pmimagemap.h b/kpovmodeler/pmimagemap.h index 3291994d..3a43d949 100644 --- a/kpovmodeler/pmimagemap.h +++ b/kpovmodeler/pmimagemap.h @@ -68,7 +68,7 @@ public: /** */ virtual PMObject* copy( ) const { return new PMImageMap( *this ); } /** */ - virtual QString description( ) const; + virtual TQString description( ) const; /** */ virtual PMMetaObject* metaObject( ) const; @@ -76,17 +76,17 @@ public: virtual void cleanUp( ) const; /** */ - virtual QString pixmap( ) const { return QString( "pmimagemap" ); } + virtual TQString pixmap( ) const { return TQString( "pmimagemap" ); } /** */ - virtual void serialize( QDomElement& e, QDomDocument& doc ) const; + virtual void serialize( TQDomElement& e, TQDomDocument& doc ) const; /** */ virtual void readAttributes( const PMXMLHelper& h ); /** * Returns a new @ref PMImageMapEdit */ - virtual PMDialogEditBase* editWidget( QWidget* parent ) const; + virtual PMDialogEditBase* editWidget( TQWidget* parent ) const; /** * Gets the bitmap type @@ -95,7 +95,7 @@ public: /** * Gets the bitmap file name */ - QString bitmapFile( ) const { return m_bitmapFile; } + TQString bitmapFile( ) const { return m_bitmapFile; } /** * Returns true if filter all is enabled */ @@ -127,11 +127,11 @@ public: /** * Gets the list of indexed filters */ - QValueList<PMPaletteValue> filters( ) const { return m_filters; } + TQValueList<PMPaletteValue> filters( ) const { return m_filters; } /** * Gets the list of indexed transmits */ - QValueList<PMPaletteValue> transmits( ) const { return m_transmits; } + TQValueList<PMPaletteValue> transmits( ) const { return m_transmits; } /** * Sets the imagemap type @@ -139,7 +139,7 @@ public: void setBitmapType( PMBitmapType c ); /** * Sets the bitmap file name*/ - void setBitmapFileName( const QString& c ); + void setBitmapFileName( const TQString& c ); /** * Enables/Disables Filter All */ @@ -171,11 +171,11 @@ public: /** * Set the list of indexed filters */ - void setFilters( const QValueList<PMPaletteValue>& filters ); + void setFilters( const TQValueList<PMPaletteValue>& filters ); /** * Set the list of indexed transmits */ - void setTransmits( const QValueList<PMPaletteValue>& transmits ); + void setTransmits( const TQValueList<PMPaletteValue>& transmits ); /** */ virtual void restoreMemento( PMMemento* s ); private: @@ -192,7 +192,7 @@ private: * ImageMap type */ PMBitmapType m_bitmapType; - QString m_bitmapFile; + TQString m_bitmapFile; bool m_enableFilterAll; float m_filterAll; bool m_enableTransmitAll; @@ -200,8 +200,8 @@ private: bool m_once; PMMapType m_mapType; PMInterpolateType m_interpolateType; - QValueList<PMPaletteValue> m_filters; - QValueList<PMPaletteValue> m_transmits; + TQValueList<PMPaletteValue> m_filters; + TQValueList<PMPaletteValue> m_transmits; static PMMetaObject* s_pMetaObject; }; |