##// END OF EJS Templates
Adding metatype declarations in qml plugin for Qt5...
Adding metatype declarations in qml plugin for Qt5 Not sure why they are needed for Qt5. Definetly NOT needed for Qt4.

File last commit:

r2254:3e008d6a7c89
r2257:b97c592cff78
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