diff options
Diffstat (limited to 'kradio3/plugins/v4lradio/v4lradio-configuration.h')
-rw-r--r-- | kradio3/plugins/v4lradio/v4lradio-configuration.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/kradio3/plugins/v4lradio/v4lradio-configuration.h b/kradio3/plugins/v4lradio/v4lradio-configuration.h index bf41b54..e6cf60b 100644 --- a/kradio3/plugins/v4lradio/v4lradio-configuration.h +++ b/kradio3/plugins/v4lradio/v4lradio-configuration.h @@ -30,7 +30,7 @@ #include "v4lcfg_interfaces.h" class V4LRadio; -class QWidget; +class TQWidget; class V4LRadioConfiguration : public V4LRadioConfigurationUI, public IV4LCfgClient, @@ -39,8 +39,9 @@ class V4LRadioConfiguration : public V4LRadioConfigurationUI, public IRadioDeviceClient { Q_OBJECT + TQ_OBJECT public : - V4LRadioConfiguration (QWidget *parent, SoundStreamID id); + V4LRadioConfiguration (TQWidget *tqparent, SoundStreamID id); ~V4LRadioConfiguration (); bool connectI (Interface *i); @@ -52,9 +53,9 @@ public : // IV4LCfgClient RECEIVERS: - bool noticeRadioDeviceChanged(const QString &s); - bool noticePlaybackMixerChanged(const QString &soundStreamClientID, const QString &Channel); - bool noticeCaptureMixerChanged (const QString &soundStreamClientID, const QString &Channel); + bool noticeRadioDeviceChanged(const TQString &s); + bool noticePlaybackMixerChanged(const TQString &soundStreamClientID, const TQString &Channel); + bool noticeCaptureMixerChanged (const TQString &soundStreamClientID, const TQString &Channel); bool noticeDeviceVolumeChanged(float v); bool noticeCapabilitiesChanged(const V4LCaps &c); bool noticeActivePlaybackChanged(bool a); @@ -66,7 +67,7 @@ RECEIVERS: RECEIVERS: bool noticePowerChanged (bool /*on*/, const IRadioDevice */*sender = NULL*/) { return false; } bool noticeStationChanged (const RadioStation &, const IRadioDevice */*sender = NULL*/) { return false; } - bool noticeDescriptionChanged (const QString &, const IRadioDevice *sender = NULL); + bool noticeDescriptionChanged (const TQString &, const IRadioDevice *sender = NULL); bool noticeCurrentSoundStreamIDChanged(SoundStreamID /*id*/, const IRadioDevice */*sender*/) { return false; } @@ -88,14 +89,14 @@ RECEIVERS: bool noticeBalanceChanged(SoundStreamID id, float b); bool noticeSignalMinQualityChanged(SoundStreamID id, float q); - bool noticePlaybackChannelsChanged(const QString & /*client_id*/, const QStringList &/*channels*/); - bool noticeCaptureChannelsChanged (const QString & /*client_id*/, const QStringList &/*channels*/); + bool noticePlaybackChannelsChanged(const TQString & /*client_id*/, const TQStringList &/*channels*/); + bool noticeCaptureChannelsChanged (const TQString & /*client_id*/, const TQStringList &/*channels*/); bool noticeSoundStreamCreated(SoundStreamID /*id*/); protected: - bool eventFilter(QObject *o, QEvent *e); + bool eventFilter(TQObject *o, TQEvent *e); protected slots: @@ -135,8 +136,8 @@ protected: V4LCaps m_caps; - typedef GUIListHelper<QComboBox, QString> StringListHelper; - typedef GUISimpleListHelper<QComboBox> ChannelListHelper; + typedef GUIListHelper<TQComboBox, TQString> StringListHelper; + typedef GUISimpleListHelper<TQComboBox> ChannelListHelper; StringListHelper m_PlaybackMixerHelper, m_CaptureMixerHelper; |