00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef VIEWMANAGER_H
00025 #define VIEWMANAGER_H
00026
00027 #include <qguardedptr.h>
00028 #include <qobject.h>
00029
00030 class QWidget;
00031 class QtVision;
00032 class ConfigData;
00033 class ChannelEditor;
00034 class SettingsDialog;
00035 class DeviceWidgetImpl;
00036
00037 #include "pluginfactory.h"
00038
00044 class ViewManager : public QObject
00045 {
00046 Q_OBJECT
00047
00048 public:
00049 ViewManager( QtVision *qtv, const char *name=0 );
00050 ~ViewManager();
00051
00052 int launchSourceDialog( QWidget *parent );
00053 int launchWizard( QWidget *parent );
00054 int launchSettings( QWidget *parent );
00055
00056 ChannelEditor *createChannelEditor( QWidget *parent );
00057
00058 ConfigData *getConfig();
00059
00060 public slots:
00061 void update();
00062
00063 protected slots:
00064 void setOptions(ConfigData *);
00065 void destroySettings();
00066
00067 void slotHueChanged(int);
00068 void slotColourChanged(int);
00069 void slotBrightnessChanged(int);
00070 void slotWhitenessChanged(int);
00071 void slotContrastChanged(int);
00072
00073 signals:
00074 void showSelectedChanged(bool);
00075 void setFixedAspectRatio(bool, int);
00076 void disableScreenSaver(bool, int);
00077 void stayOnTopChanged(bool);
00078 void useListingsURL(bool);
00079 void getNewListingsURL(QString *);
00080
00081 private:
00082 QVSourcePlugin *dev;
00083 QtVision *qtv;
00084 ConfigData *cfg;
00085 SettingsDialog *settingsDialog;
00086 DeviceWidgetImpl *ssdlg;
00087
00088 };
00089
00090 #endif // VIEWMANAGER_H
00091
00092
00093