summaryrefslogtreecommitdiffstats
path: root/kradio3/src/include/standardscandialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kradio3/src/include/standardscandialog.h')
-rw-r--r--kradio3/src/include/standardscandialog.h101
1 files changed, 0 insertions, 101 deletions
diff --git a/kradio3/src/include/standardscandialog.h b/kradio3/src/include/standardscandialog.h
deleted file mode 100644
index 2be7c74..0000000
--- a/kradio3/src/include/standardscandialog.h
+++ /dev/null
@@ -1,101 +0,0 @@
-/***************************************************************************
- standardscandialog.h - description
- -------------------
- begin : Son Aug 3 2003
- copyright : (C) 2003 by Martin Witte
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
-#ifndef KRADIO_STANDARDSCANDIALOG_H
-#define KRADIO_STANDARDSCANDIALOG_H
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <standardscandialog-ui.h>
-#include "radiodevice_interfaces.h"
-#include "radio_interfaces.h"
-#include "stationlist.h"
-
-#include <tqtimer.h>
-#include <tqdatetime.h>
-
-class StandardScanDialog : public StandardScanDialogUI,
- public ISeekRadioClient,
-// public IRadioSoundClient,
- public IRadioClient
-{
-Q_OBJECT
-
-public:
- StandardScanDialog(TQWidget *parent);
- ~StandardScanDialog();
-
- bool connectI (Interface *i);
- bool disconnectI (Interface *i);
-
- void start();
- void stop();
-
- const StationList &getStations() const { return m_stations; }
-
-// ISeekRadioClient
-
-RECEIVERS:
- bool noticeSeekStarted (bool up);
- bool noticeSeekStopped ();
- bool noticeSeekFinished (const RadioStation &s, bool goodQuality);
- bool noticeProgress (float f);
-
-// // ISoundRadioClient
-//
-// RECEIVERS:
-// bool noticeVolumeChanged(float /*v*/) { return false; }
-// bool noticeTrebleChanged(float /*v*/) { return false; }
-// bool noticeBassChanged(float /*v*/) { return false; }
-// bool noticeBalanceChanged(float /*v*/) { return false; }
-// bool noticeSignalQualityChanged(float /*q*/) { return false; }
-// bool noticeSignalQualityChanged(bool /*good*/) { return false; }
-// bool noticeSignalMinQualityChanged(float /*q*/) { return false; }
-// bool noticeStereoChanged(bool /*s*/) { return false; }
-// bool noticeMuted(bool /*m*/) { return false; }
-
-// IRadioClient
-
-RECEIVERS:
- bool noticePowerChanged(bool on);
- bool noticeStationChanged (const RadioStation &, int /*idx*/){ return false; }
- bool noticeStationsChanged(const StationList &/*sl*/) { return false; }
- bool noticePresetFileChanged(const TQString &/*f*/) { return false; }
-
- bool noticeCurrentSoundStreamIDChanged(SoundStreamID /*id*/) { return false; }
-
-protected slots:
-
- void slotCancelDone();
-
-protected:
-
- int m_count;
- bool m_running;
- bool m_oldPowerOn;
- RadioStation *m_oldStation;
- TQDateTime m_startTime;
-
- StationList m_stations;
-
- bool m_ignorePower;
-};
-
-
-#endif