diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-30 19:40:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-05-31 01:17:58 +0900 |
commit | d95a4fea540b371fa86493d069fdbd54f33c5b40 (patch) | |
tree | 079b038ab559439eb7ded40a07bd79fd92926b3b /tderadio3/plugins/gui-standard-display/radioview_frequencyradio.h | |
parent | e54890e0480e5adee69f5220a7c6dd072bbd75ea (diff) | |
download | tderadio-d95a4fea540b371fa86493d069fdbd54f33c5b40.tar.gz tderadio-d95a4fea540b371fa86493d069fdbd54f33c5b40.zip |
Standardize folder structure.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tderadio3/plugins/gui-standard-display/radioview_frequencyradio.h')
-rw-r--r-- | tderadio3/plugins/gui-standard-display/radioview_frequencyradio.h | 109 |
1 files changed, 0 insertions, 109 deletions
diff --git a/tderadio3/plugins/gui-standard-display/radioview_frequencyradio.h b/tderadio3/plugins/gui-standard-display/radioview_frequencyradio.h deleted file mode 100644 index fb3bd59..0000000 --- a/tderadio3/plugins/gui-standard-display/radioview_frequencyradio.h +++ /dev/null @@ -1,109 +0,0 @@ -/*************************************************************************** - tderadiodisplay.h - description - ------------------- - begin : Mit Jan 29 2003 - copyright : (C) 2003 by Martin Witte - email : witte@kawo1.rwth-aachen.de - ***************************************************************************/ - -/*************************************************************************** - * * - * 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_RADIOVIEW_FREQUENCYRADIO_H -#define KRADIO_RADIOVIEW_FREQUENCYRADIO_H - -#include "../../src/include/radiodevice_interfaces.h" -#include "../../src/include/soundstreamclient_interfaces.h" -#include "radioview_element.h" -#include "displaycfg_interfaces.h" - -/** - *@author Martin Witte - */ - -class RadioViewFrequencyRadio : public RadioViewElement, // is a TQObject, must be first - public IRadioDeviceClient, - public IFrequencyRadioClient, - public ISoundStreamClient, - public IDisplayCfg -{ -Q_OBJECT - -public: - RadioViewFrequencyRadio(TQWidget *parent, const TQString &name); - ~RadioViewFrequencyRadio(); - - float getUsability (Interface *) const; - - virtual void saveState (TDEConfig *) const; - virtual void restoreState (TDEConfig *); - - ConfigPageInfo createConfigurationPage(); - -// Interface - - bool connectI (Interface *); - bool disconnectI(Interface *); - -// IDisplayCfg - -RECEIVERS: - bool setDisplayColors(const TQColor &activeColor, const TQColor &inactiveColor, const TQColor &bkgnd); - bool setDisplayFont (const TQFont &f); - -ANSWERS: - const TQColor &getDisplayActiveColor() const { return m_colorActiveText; } - const TQColor &getDisplayInactiveColor() const { return m_colorInactiveText; } - const TQColor &getDisplayBkgndColor() const { return m_colorButton; } - const TQFont &getDisplayFont() const { return m_font; } - -// IRadioDeviceClient -RECEIVERS: - bool noticePowerChanged (bool on, const IRadioDevice *sender = NULL); - bool noticeStationChanged (const RadioStation &, const IRadioDevice *sender = NULL); - bool noticeDescriptionChanged (const TQString &, const IRadioDevice *sender = NULL); - bool noticeCurrentSoundStreamIDChanged(SoundStreamID /*id*/, const IRadioDevice */*sender*/) { return false; } - -// ISoundStreamClient -RECEIVERS: - void noticeConnectedI (ISoundStreamServer *s, bool pointer_valid); - - bool noticeSignalQualityChanged(SoundStreamID id, float q); - bool noticeStereoChanged(SoundStreamID id, bool s); - -// IFrequencyRadioClient -RECEIVERS: - bool noticeFrequencyChanged(float f, const RadioStation *s); - bool noticeMinMaxFrequencyChanged(float min, float max); - bool noticeDeviceMinMaxFrequencyChanged(float min, float max); - bool noticeScanStepChanged(float s); - -// own stuff ;) - -public: - - void reparent (TQWidget *parent, WFlags f, const TQPoint &p, bool showIt = FALSE); - -protected: - - void drawContents(TQPainter *p); - -protected: - - TQColor m_colorActiveText, m_colorInactiveText, m_colorButton; - TQFont m_font; - - bool m_power; - bool m_valid; - float m_frequency; - float m_quality; - bool m_stereo; -}; - -#endif |