diff options
Diffstat (limited to 'amarok/src/statusbar/queueLabel.h')
-rw-r--r-- | amarok/src/statusbar/queueLabel.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/amarok/src/statusbar/queueLabel.h b/amarok/src/statusbar/queueLabel.h index 61cd215f..71432fab 100644 --- a/amarok/src/statusbar/queueLabel.h +++ b/amarok/src/statusbar/queueLabel.h @@ -23,15 +23,15 @@ #include "playlistitem.h" #include "popupMessage.h" -#include <qlabel.h> -#include <qtimer.h> +#include <tqlabel.h> +#include <tqtimer.h> -class QueueLabel: public QLabel //homonym, heh heh +class QueueLabel: public TQLabel //homonym, heh heh { Q_OBJECT public: - QueueLabel( QWidget *parent, const char *name = 0 ); + QueueLabel( TQWidget *parent, const char *name = 0 ); signals: void queueChanged( const PLItemList &, const PLItemList & ); @@ -39,28 +39,28 @@ class QueueLabel: public QLabel //homonym, heh heh public slots: virtual void update(); virtual void setNum( int num ); - void enterEvent( QEvent * ); - void leaveEvent( QEvent * ); + void enterEvent( TQEvent * ); + void leaveEvent( TQEvent * ); private slots: void aboutToShow(); - void slotCoverChanged( const QString &artist, const QString &album ); + void slotCoverChanged( const TQString &artist, const TQString &album ); protected: - virtual void mousePressEvent( QMouseEvent* e ); + virtual void mousePressEvent( TQMouseEvent* e ); private: void showToolTip(); void hideToolTip(); - QString veryNiceTitle( PlaylistItem * item, bool bold = false ) const; - void getCover( const QString &artist, const QString &album ); + TQString veryNiceTitle( PlaylistItem * item, bool bold = false ) const; + void getCover( const TQString &artist, const TQString &album ); - inline int mapXToGlobal( int x ) { return mapToGlobal( QPoint( x, 0 ) ).x(); } - inline int mapYToGlobal( int y ) { return mapToGlobal( QPoint( 0, y ) ).y(); } + inline int mapXToGlobal( int x ) { return mapToGlobal( TQPoint( x, 0 ) ).x(); } + inline int mapYToGlobal( int y ) { return mapToGlobal( TQPoint( 0, y ) ).y(); } - QTimer m_timer; + TQTimer m_timer; - QString m_cover; + TQString m_cover; KDE::PopupMessage *m_tooltip; bool m_tooltipShowing; |