Added "up arrow" to SimplePreview.

This commit is contained in:
Jim Evins
2013-11-17 01:34:37 -05:00
parent f255f561ce
commit 64a9076b18
2 changed files with 101 additions and 22 deletions
+8 -3
View File
@@ -40,15 +40,20 @@ namespace gLabels
SimplePreview( QWidget *parent );
void setTemplate( const libglabels::Template *tmplate );
void setRotate( bool rotateFlag );
private:
void update();
void clearScene();
void drawPaper( double pw, double ph );
void drawLabels( const libglabels::Template *tmplate );
void drawLabels();
void drawLabel( double x, double y, const QPainterPath &path );
void drawArrow();
QGraphicsScene *mScene;
double mScale;
QGraphicsScene *mScene;
double mScale;
const libglabels::Template *mTmplate;
bool mRotateFlag;
};