diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /arts/tools/artscontrolapplet_private.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'arts/tools/artscontrolapplet_private.h')
-rw-r--r-- | arts/tools/artscontrolapplet_private.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/arts/tools/artscontrolapplet_private.h b/arts/tools/artscontrolapplet_private.h index 044a156b..2b681b92 100644 --- a/arts/tools/artscontrolapplet_private.h +++ b/arts/tools/artscontrolapplet_private.h @@ -20,15 +20,15 @@ #include "artscontrolapplet.h" -#include <qobject.h> +#include <tqobject.h> -#include <qlayout.h> -#include <qlabel.h> -#include <qslider.h> -#include <qpushbutton.h> +#include <tqlayout.h> +#include <tqlabel.h> +#include <tqslider.h> +#include <tqpushbutton.h> #include <kpopupmenu.h> #include <kaction.h> -#include <qfont.h> +#include <tqfont.h> #include <kartsserver.h> #include <kartsdispatcher.h> @@ -45,13 +45,13 @@ class VolumeSlider; -class KDE_EXPORT ArtsControlAppletPrivate : public QObject { +class KDE_EXPORT ArtsControlAppletPrivate : public TQObject { Q_OBJECT private: ArtsControlApplet *_parent; ArtsActions* _artsactions; public: - QBoxLayout *layout; + TQBoxLayout *layout; KArtsServer *arts; KArtsDispatcher *dispatcher; Arts::StereoVolumeControl volume; @@ -66,7 +66,7 @@ public: KAction *_styleNormalBars, *_styleFireBars, *_styleLineBars, *_styleLEDs, *_styleAnalog, *_styleSmall; ArtsControlAppletPrivate( ArtsControlApplet *parent ) - : QObject(parent) + : TQObject(parent) , _parent( parent ) , barts( false ) , bInUpdate( false ) @@ -82,7 +82,7 @@ public: menu = new KPopupMenu( 0 ); _showSV = _artsactions->actionScopeView(); _showSV->plug( menu ); - _showSVinline = new KAction( i18n( "Toggle &Inline FFT Scope" ), "artscontrol", KShortcut(), this, SLOT( SVinline() ), this ); + _showSVinline = new KAction( i18n( "Toggle &Inline FFT Scope" ), "artscontrol", KShortcut(), this, TQT_SLOT( SVinline() ), this ); _showSVinline->plug( menu ); _showAM = _artsactions->actionAudioManager(); _showAM->plug( menu ); @@ -96,12 +96,12 @@ public: _showMediaTypes->plug( menu ); menu->insertSeparator(); menu->insertItem( i18n( "VU-Style" ), _artsactions->stylemenu() ); - connect( _artsactions, SIGNAL( styleNormal() ), this, SLOT( styleNormalBars() ) ); - connect( _artsactions, SIGNAL( styleFire() ), this, SLOT( styleFireBars() ) ); - connect( _artsactions, SIGNAL( styleLine() ), this, SLOT( styleLineBars() ) ); - connect( _artsactions, SIGNAL( styleLED() ), this, SLOT( styleLEDs() ) ); - connect( _artsactions, SIGNAL( styleAnalog() ), this, SLOT( styleAnalog() ) ); - connect( _artsactions, SIGNAL( styleSmall() ), this, SLOT( styleSmall() ) ); + connect( _artsactions, TQT_SIGNAL( styleNormal() ), this, TQT_SLOT( styleNormalBars() ) ); + connect( _artsactions, TQT_SIGNAL( styleFire() ), this, TQT_SLOT( styleFireBars() ) ); + connect( _artsactions, TQT_SIGNAL( styleLine() ), this, TQT_SLOT( styleLineBars() ) ); + connect( _artsactions, TQT_SIGNAL( styleLED() ), this, TQT_SLOT( styleLEDs() ) ); + connect( _artsactions, TQT_SIGNAL( styleAnalog() ), this, TQT_SLOT( styleAnalog() ) ); + connect( _artsactions, TQT_SIGNAL( styleSmall() ), this, TQT_SLOT( styleSmall() ) ); } ~ArtsControlAppletPrivate() { if ( svinline ) SVinline(); |