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.
piklab/src/libgui/gui_prog_manager.h

39 lines
1.3 KiB

/***************************************************************************
* 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
TQ_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