blob: af27dfc2544cdf47339a1ba309bedde61872bce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/***************************************************************************
* 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(TQObject *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
|