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 /kooka/thumbview.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 'kooka/thumbview.h')
-rw-r--r-- | kooka/thumbview.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/kooka/thumbview.h b/kooka/thumbview.h index c16afa84..e1bc78cb 100644 --- a/kooka/thumbview.h +++ b/kooka/thumbview.h @@ -29,11 +29,11 @@ #ifndef __THUMBVIEW_H__ #define __THUMBVIEW_H__ -#include <qwidget.h> -#include <qimage.h> -#include <qpixmap.h> -#include <qcolor.h> -#include <qvbox.h> +#include <tqwidget.h> +#include <tqimage.h> +#include <tqpixmap.h> +#include <tqcolor.h> +#include <tqvbox.h> #include <kiconview.h> #include <kurl.h> @@ -51,18 +51,18 @@ #define BG_WALLPAPER "BackGroundTile" #define STD_TILE_IMG "kooka/pics/thumbviewtile.png" -class QPixmap; -class QListViewItem; +class TQPixmap; +class TQListViewItem; class KProgress; class KIO::PreviewJob; -class ThumbView: public QVBox /* KIconView */ +class ThumbView: public TQVBox /* KIconView */ { Q_OBJECT public: - ThumbView( QWidget *parent, const char *name=0 ); + ThumbView( TQWidget *parent, const char *name=0 ); ~ThumbView(); void setCurrentDir( const KURL& s) @@ -70,9 +70,9 @@ public: KURL currentDir( ) const { return m_currentDir; } - QSize tumbSize( ) const + TQSize tumbSize( ) const { - return( QSize( m_pixWidth, m_pixHeight )); + return( TQSize( m_pixWidth, m_pixHeight )); } int thumbMargin() const @@ -85,7 +85,7 @@ public slots: m_pixWidth = w; m_pixHeight = h; } - void slSetThumbSize( const QSize& s ) + void slSetThumbSize( const TQSize& s ) { m_pixWidth = s.width(); m_pixHeight = s.height(); @@ -97,14 +97,14 @@ public slots: } void slNewFileItems( const KFileItemList& ); - void slGotPreview( const KFileItem*, const QPixmap& ); + void slGotPreview( const KFileItem*, const TQPixmap& ); void slPreviewResult( KIO::Job* ); /** * This connects to the IconView's executed signal and tells the packager * to select the image */ - void slDoubleClicked( QIconViewItem* ); + void slDoubleClicked( TQIconViewItem* ); /** * indication that a image changed, needs to be reloaded. @@ -124,26 +124,26 @@ protected: signals: /** - * selects a QListViewItem from the thumbnail. This signal only makes + * selects a TQListViewItem from the thumbnail. This signal only makes * sense if connected to a ScanPackager. */ void selectFromThumbnail( const KURL& ); private: - QPixmap createPixmap( const QPixmap& ) const; + TQPixmap createPixmap( const TQPixmap& ) const; bool deleteImage( KFileItem* ); KIconView *m_iconView; KProgress *m_progress; KURL m_currentDir; - QPixmap m_basePix; + TQPixmap m_basePix; int m_pixWidth; int m_pixHeight; int m_thumbMargin; - QColor m_marginColor1; - QColor m_marginColor2; - QString m_bgImg; + TQColor m_marginColor1; + TQColor m_marginColor2; + TQString m_bgImg; int m_cntJobsStarted; KIO::PreviewJob *m_job; |