summaryrefslogtreecommitdiffstats
path: root/src/libgui/gui_prog_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgui/gui_prog_manager.h')
-rw-r--r--src/libgui/gui_prog_manager.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/libgui/gui_prog_manager.h b/src/libgui/gui_prog_manager.h
new file mode 100644
index 0000000..b19186e
--- /dev/null
+++ b/src/libgui/gui_prog_manager.h
@@ -0,0 +1,37 @@
+/***************************************************************************
+ * Copyright (C) 2005-2006 Nicolas Hadacek <hadacek@kde.org> *
+ * *
+ * 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 GUI_PROG_MANAGER_H
+#define GUI_PROG_MANAGER_H
+
+#include "progs/manager/prog_manager.h"
+#include "libgui/main_global.h"
+
+namespace Programmer
+{
+class GuiManager : public Manager
+{
+Q_OBJECT
+public:
+ GuiManager(QObject *parent) : Manager(parent) {}
+ virtual void createProgrammer(const Device::Data *data);
+ virtual void setState(State state) { Main::setState(state==Idle ? Main::Idle : Main::Programming); }
+
+public slots:
+ void toggleDevicePower();
+ void showAdvancedDialog();
+
+private:
+ virtual const Group &group() const { return Main::programmerGroup(); }
+ virtual bool internalInitProgramming(bool debugging);
+ virtual const Device::Data *device() const { return Main::deviceData(); }
+};
+
+} // namespace
+
+#endif