diff options
author | Greg Frost <gregfrost1@bigpond.com> | 2009-08-01 23:56:22 (GMT) |
---|---|---|
committer | Greg Frost <gregfrost1@bigpond.com> | 2009-08-01 23:56:22 (GMT) |
commit | 3f300e50406f82e3fde4f48dd7c14fa79cbcd99a (patch) | |
tree | bf1e47d23befa44bba74f5d47c109fe3dfbc069e /abs/core-testing/mythinstall/autocard.h | |
parent | d5b30b14e06db375bcf5069f23f47213a65adeed (diff) | |
download | linhes_pkgbuild-3f300e50406f82e3fde4f48dd7c14fa79cbcd99a.zip linhes_pkgbuild-3f300e50406f82e3fde4f48dd7c14fa79cbcd99a.tar.gz linhes_pkgbuild-3f300e50406f82e3fde4f48dd7c14fa79cbcd99a.tar.bz2 |
LinHES-config mythinstall: add mythinstall with changes for tz autodetect
Diffstat (limited to 'abs/core-testing/mythinstall/autocard.h')
-rwxr-xr-x | abs/core-testing/mythinstall/autocard.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/abs/core-testing/mythinstall/autocard.h b/abs/core-testing/mythinstall/autocard.h new file mode 100755 index 0000000..623fcc0 --- /dev/null +++ b/abs/core-testing/mythinstall/autocard.h @@ -0,0 +1,30 @@ +#ifndef AUTOCARD_H +#define AUTOCARD_H + +#include "qstringlist.h" +#include "libmyth/settings.h" +#include "libmyth/mythwidgets.h" + +class MPUBLIC AutoCard : public QObject, public ConfigurationDialog +{ + Q_OBJECT + + public: + AutoCard(); + virtual int exec(void); + virtual void load(void); + virtual void save(void) { }; + virtual void save(QString) { }; + virtual MythDialog* dialogWidget(MythMainWindow* parent, + const char* widgetName=0); + static QStringList GetNames(void); + protected slots: + void open(QString name); + void popup_menu(void); + + protected: + ListBoxSetting *listbox; + QString lastValue; +}; + +#endif |