Context menu added to bring item front/send to back/delete added

git-svn-id: https://svn.code.sf.net/p/qlscribe/svn/trunk@33 cac9541e-1b8d-4bfa-827e-589bba606050
This commit is contained in:
ruglory
2009-01-31 00:26:33 +00:00
parent e0f6307fd4
commit 79813e4a8a
3 changed files with 49 additions and 1 deletions
+2 -1
View File
@@ -83,7 +83,8 @@ void QCDView::closeEvent( QCloseEvent *event )
inline
void drawCircle( QPainter *painter, double radi )
{
painter->drawEllipse( -radi, -radi, radi * 2, radi * 2 );
painter->drawEllipse( int( -radi ), int( -radi ),
int( radi * 2 ), int( radi * 2 ) );
}
void QCDView::drawCD( QPainter *painter, const QRectF & rect, bool alpha )