Make cursor change when hovering over object.

This commit is contained in:
Jim Evins
2015-08-14 15:21:57 -04:00
parent cdbc3a8c9b
commit e5f5ddaf17
11 changed files with 82 additions and 47 deletions
+11
View File
@@ -102,4 +102,15 @@ namespace glabels
painter->drawRect( 0, 0, mW, mH );
}
///
/// Path representing object
///
QPainterPath LabelModelBoxObject::path() const
{
QPainterPath path;
path.addRect( 0, 0, mW, mH );
return path;
}
}