##// END OF EJS Templates
Fix domain switching
Fix domain switching

File last commit:

r2254:3e008d6a7c89
r2288:a12d6a605fab
Show More
graphicsbutton.h
28 lines | 543 B | text/x-c | CLexer
#ifndef GRAPHICSBUTTON_H
#define GRAPHICSBUTTON_H
#include <QWidget>
#include <QDir>
class QProcess;
class GraphicsButton : public QWidget
{
Q_OBJECT
public:
explicit GraphicsButton(const QString& path, QDir appFolder, const QString& app, QWidget *parent = 0);
~GraphicsButton();
protected:
void mousePressEvent(QMouseEvent * event);
void paintEvent(QPaintEvent *);
private:
QPixmap m_pixmap;
QString m_path;
QDir m_appFolder;
QString m_app;
QProcess *m_demoApp;
};
#endif // GRAPHICSBUTTON_H