summaryrefslogtreecommitdiffstats
path: root/kradio3/plugins/radio/radio.h
diff options
context:
space:
mode:
Diffstat (limited to 'kradio3/plugins/radio/radio.h')
-rw-r--r--kradio3/plugins/radio/radio.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/kradio3/plugins/radio/radio.h b/kradio3/plugins/radio/radio.h
index 7913c16..d125eee 100644
--- a/kradio3/plugins/radio/radio.h
+++ b/kradio3/plugins/radio/radio.h
@@ -56,7 +56,7 @@ class Radio : public PluginBase,
public ISoundStreamClient
{
public:
- Radio(const QString &name);
+ Radio(const TQString &name);
~Radio();
@@ -66,10 +66,10 @@ public:
virtual void saveState (KConfig *) const;
virtual void restoreState (KConfig *);
- virtual QString pluginClassName() const { return "Radio"; }
+ virtual TQString pluginClassName() const { return "Radio"; }
- virtual const QString &name() const { return PluginBase::name(); }
- virtual QString &name() { return PluginBase::name(); }
+ virtual const TQString &name() const { return PluginBase::name(); }
+ virtual TQString &name() { return PluginBase::name(); }
virtual ConfigPageInfo createConfigurationPage();
virtual AboutPageInfo createAboutPage();
@@ -84,7 +84,7 @@ RECEIVERS:
bool activateStation(const RadioStation &rs);
bool activateStation(int index);
bool setStations(const StationList &sl);
- bool setPresetFile(const QString &presetFile);
+ bool setPresetFile(const TQString &presetFile);
ANSWERS:
bool isPowerOn() const { return queryIsPowerOn(); }
@@ -93,7 +93,7 @@ ANSWERS:
int getStationIdx(const RadioStation &) const;
int getCurrentStationIdx() const;
const StationList & getStations() const { return m_stationList; }
- const QString & getPresetFile() const { return m_presetFile; }
+ const TQString & getPresetFile() const { return m_presetFile; }
SoundStreamID getCurrentSoundStreamID() const;
@@ -112,8 +112,8 @@ RECEIVERS:
ANSWERS:
IRadioDevice * getActiveDevice() const;
- const QPtrList<IRadioDevice> & getDevices() const;
- const QString & getDeviceDescription() const;
+ const TQPtrList<IRadioDevice> & getDevices() const;
+ const TQString & getDeviceDescription() const;
@@ -125,17 +125,17 @@ SENDERS:
IF_SENDER ( sendPowerOff() )
IF_SENDER ( sendActivateStation (const RadioStation &rs) )
-QUERIES:
- IF_QUERY ( bool queryIsPowerOn() )
- IF_QUERY ( bool queryIsPowerOff() )
- IF_QUERY ( const RadioStation & queryCurrentStation() )
- IF_QUERY ( const QString & queryDescription() )
- IF_QUERY ( SoundStreamID queryCurrentSoundStreamID() )
+TQUERIES:
+ IF_TQUERY ( bool queryIsPowerOn() )
+ IF_TQUERY ( bool queryIsPowerOff() )
+ IF_TQUERY ( const RadioStation & queryCurrentStation() )
+ IF_TQUERY ( const TQString & queryDescription() )
+ IF_TQUERY ( SoundStreamID queryCurrentSoundStreamID() )
RECEIVERS:
virtual bool noticePowerChanged (bool on, const IRadioDevice *sender = NULL);
virtual bool noticeStationChanged (const RadioStation &rs, const IRadioDevice *sender = NULL);
- virtual bool noticeDescriptionChanged (const QString &, const IRadioDevice *sender = NULL);
+ virtual bool noticeDescriptionChanged (const TQString &, const IRadioDevice *sender = NULL);
virtual bool noticeCurrentSoundStreamIDChanged(SoundStreamID id, const IRadioDevice *sender = NULL);
@@ -145,7 +145,7 @@ RECEIVERS:
bool noticeAlarmsChanged(const AlarmVector &) { return false; } // ignore
bool noticeAlarm(const Alarm &);
bool noticeNextAlarmChanged(const Alarm *) { return false; } // ignore
- bool noticeCountdownStarted(const QDateTime &/*end*/){ return false; } // ignore
+ bool noticeCountdownStarted(const TQDateTime &/*end*/){ return false; } // ignore
bool noticeCountdownStopped() { return false; } // ignore
bool noticeCountdownZero();
bool noticeCountdownSecondsChanged(int /*n*/) { return false; } // ignore
@@ -158,7 +158,7 @@ RECEIVERS:
protected:
- QString m_presetFile;
+ TQString m_presetFile;
StationList m_stationList;
IRadioDevice *m_activeDevice;
};