##// END OF EJS Templates
Fix to domain initialization when log base was preset on axis before adding it to chart
Fix to domain initialization when log base was preset on axis before adding it to chart

File last commit:

r2254:3e008d6a7c89
r2295:8468c10170a2
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