Added object layer to view. Added draw methods to objects.

This commit is contained in:
Jim Evins
2015-08-12 12:09:11 -04:00
parent 527d2e73dc
commit 781f299394
7 changed files with 121 additions and 75 deletions
+4 -4
View File
@@ -77,11 +77,11 @@ namespace glabels
///////////////////////////////////////////////////////////////
// QGraphicsItem Method Implementations
// Drawing operations
///////////////////////////////////////////////////////////////
public:
virtual QGraphicsItem* createGraphicsItem();
virtual void updateGraphicsItem( QGraphicsItem* graphicsItem );
protected:
virtual void drawShadow( QPainter* painter, bool inEditor, MergeRecord* record ) const;
virtual void drawObject( QPainter* painter, bool inEditor, MergeRecord* record ) const;
///////////////////////////////////////////////////////////////