You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
5.4 KiB
149 lines
5.4 KiB
15 years ago
|
/***************************************************************************
|
||
|
v4lradio-configuration.h - description
|
||
|
-------------------
|
||
|
begin : Fre Jun 20 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_V4LRADIO_CONFIGURATION_H
|
||
|
#define KRADIO_V4LRADIO_CONFIGURATION_H
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include "../../src/include/radiodevice_interfaces.h"
|
||
|
#include "../../src/include/soundstreamclient_interfaces.h"
|
||
|
#include "../../src/include/gui_list_helper.h"
|
||
|
|
||
|
#include "v4lradio-configuration-ui.h"
|
||
|
#include "v4lcfg_interfaces.h"
|
||
|
|
||
|
class V4LRadio;
|
||
14 years ago
|
class TQWidget;
|
||
15 years ago
|
|
||
|
class V4LRadioConfiguration : public V4LRadioConfigurationUI,
|
||
|
public IV4LCfgClient,
|
||
|
public IFrequencyRadioClient,
|
||
|
public ISoundStreamClient,
|
||
|
public IRadioDeviceClient
|
||
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
public :
|
||
13 years ago
|
V4LRadioConfiguration (TQWidget *parent, SoundStreamID id);
|
||
15 years ago
|
~V4LRadioConfiguration ();
|
||
|
|
||
|
bool connectI (Interface *i);
|
||
|
bool disconnectI (Interface *i);
|
||
|
|
||
|
void noticeConnectedSoundClient(ISoundStreamClient::thisInterface *i, bool pointer_valid);
|
||
|
void noticeDisconnectedSoundClient(ISoundStreamClient::thisInterface *i, bool pointer_valid);
|
||
|
|
||
|
// IV4LCfgClient
|
||
|
|
||
|
RECEIVERS:
|
||
14 years ago
|
bool noticeRadioDeviceChanged(const TQString &s);
|
||
|
bool noticePlaybackMixerChanged(const TQString &soundStreamClientID, const TQString &Channel);
|
||
|
bool noticeCaptureMixerChanged (const TQString &soundStreamClientID, const TQString &Channel);
|
||
15 years ago
|
bool noticeDeviceVolumeChanged(float v);
|
||
|
bool noticeCapabilitiesChanged(const V4LCaps &c);
|
||
|
bool noticeActivePlaybackChanged(bool a);
|
||
|
bool noticeMuteOnPowerOffChanged(bool a);
|
||
|
bool noticeVolumeZeroOnPowerOffChanged(bool a);
|
||
|
|
||
|
// IRadioDeviceClient
|
||
|
|
||
|
RECEIVERS:
|
||
|
bool noticePowerChanged (bool /*on*/, const IRadioDevice */*sender = NULL*/) { return false; }
|
||
|
bool noticeStationChanged (const RadioStation &, const IRadioDevice */*sender = NULL*/) { return false; }
|
||
14 years ago
|
bool noticeDescriptionChanged (const TQString &, const IRadioDevice *sender = NULL);
|
||
15 years ago
|
|
||
|
bool noticeCurrentSoundStreamIDChanged(SoundStreamID /*id*/, const IRadioDevice */*sender*/) { return false; }
|
||
|
|
||
|
// 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);
|
||
|
|
||
|
// ISoundStreamClient
|
||
|
|
||
|
RECEIVERS:
|
||
|
void noticeConnectedI (ISoundStreamServer *s, bool pointer_valid);
|
||
|
|
||
|
bool noticeTrebleChanged(SoundStreamID id, float t);
|
||
|
bool noticeBassChanged(SoundStreamID id, float b);
|
||
|
bool noticeBalanceChanged(SoundStreamID id, float b);
|
||
|
bool noticeSignalMinQualityChanged(SoundStreamID id, float q);
|
||
|
|
||
14 years ago
|
bool noticePlaybackChannelsChanged(const TQString & /*client_id*/, const TQStringList &/*channels*/);
|
||
|
bool noticeCaptureChannelsChanged (const TQString & /*client_id*/, const TQStringList &/*channels*/);
|
||
15 years ago
|
bool noticeSoundStreamCreated(SoundStreamID /*id*/);
|
||
|
|
||
|
|
||
|
protected:
|
||
|
|
||
14 years ago
|
bool eventFilter(TQObject *o, TQEvent *e);
|
||
15 years ago
|
|
||
|
protected slots:
|
||
|
|
||
|
void selectRadioDevice();
|
||
|
void slotEditRadioDeviceChanged();
|
||
|
void slotComboPlaybackMixerSelected(int idx);
|
||
|
void slotComboCaptureMixerSelected(int idx);
|
||
|
|
||
|
void slotOK();
|
||
|
void slotCancel();
|
||
|
|
||
|
void guiMinFrequencyChanged(int v);
|
||
|
void guiMaxFrequencyChanged(int v);
|
||
|
|
||
|
void slotDeviceVolumeChanged (double v); // for KDoubleNumInput, 0.0..1.0
|
||
|
void slotTrebleChanged (double t); // for KDoubleNumInput, 0.0..1.0
|
||
|
void slotBassChanged (double b); // for KDoubleNumInput, 0.0..1.0
|
||
|
void slotBalanceChanged(double b); // for KDoubleNumInput, -1.0..1.0
|
||
|
|
||
|
void slotDeviceVolumeChanged (int v); // for slider, 0..65535
|
||
|
void slotTrebleChanged (int t); // for slider, 0..65535
|
||
|
void slotBassChanged (int b); // for slider, 0..65535
|
||
|
void slotBalanceChanged(int b); // for slider, 0..65535
|
||
|
void slotBalanceCenter ();
|
||
|
|
||
|
protected:
|
||
|
|
||
|
SoundStreamID m_SoundStreamID;
|
||
|
|
||
|
bool m_ignoreGUIChanges;
|
||
|
|
||
|
int m_myControlChange;
|
||
|
float m_orgTreble,
|
||
|
m_orgBass,
|
||
|
m_orgBalance,
|
||
|
m_orgDeviceVolume;
|
||
|
|
||
|
V4LCaps m_caps;
|
||
|
|
||
14 years ago
|
typedef GUIListHelper<TQComboBox, TQString> StringListHelper;
|
||
|
typedef GUISimpleListHelper<TQComboBox> ChannelListHelper;
|
||
15 years ago
|
|
||
|
StringListHelper m_PlaybackMixerHelper,
|
||
|
m_CaptureMixerHelper;
|
||
|
ChannelListHelper m_PlaybackChannelHelper,
|
||
|
m_CaptureChannelHelper;
|
||
|
};
|
||
|
|
||
|
#endif
|