You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
481 B
C++
26 lines
481 B
C++
#ifndef _CUSTOMGRAPHVIEW_H
|
|
#define _CUSTOMGRAPHVIEW_H
|
|
|
|
#include <QFrame>
|
|
#include "qgraphicsscene.h"
|
|
#include "qlabel.h"
|
|
#include "QVBoxLayout"
|
|
class QTpGraphView : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QTpGraphView(QWidget *parent =0);
|
|
~QTpGraphView();
|
|
void setImg(QPixmap pImg);
|
|
protected:
|
|
virtual void resizeEvent(QResizeEvent *e);
|
|
private:
|
|
QLabel *m_infoLabel;
|
|
class StytleGraphView *pGraphView;
|
|
QGraphicsScene *pGrpScene;
|
|
QVBoxLayout* pVBLayout;
|
|
};
|
|
|
|
#endif // QMYFRAME_H
|