summaryrefslogtreecommitdiff
path: root/noncore/games/oyatzee/oyatzee.cpp
Side-by-side diff
Diffstat (limited to 'noncore/games/oyatzee/oyatzee.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/oyatzee/oyatzee.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/noncore/games/oyatzee/oyatzee.cpp b/noncore/games/oyatzee/oyatzee.cpp
index 7940b89..85d9616 100644
--- a/noncore/games/oyatzee/oyatzee.cpp
+++ b/noncore/games/oyatzee/oyatzee.cpp
@@ -41,7 +41,6 @@ OYatzee::OYatzee( QWidget *parent , const char *name, WFlags fl ) : QMainWindow(
sb = new Scoreboard( thing , "sb" );
dw = new DiceWidget( thing , "dw" );
-
vbox->addWidget( sb );
vbox->addWidget( dw );
@@ -122,7 +121,11 @@ Dice::Dice( QWidget *parent , const char *name ) : QFrame( parent , name )
void Dice::slotSelected()
{
- qDebug( QString::number( Value ) );
+ if ( isSelected )
+ isSelected = false;
+ else isSelected = true;
+
+ update();
}
int Dice::hasValue()
@@ -150,6 +153,9 @@ void Dice::paintEvent( QPaintEvent * )
p.drawRect( 0,0, this->width() , this->height() );
+ if ( isSelected )
+ p.drawRect( 20,20, 10,10 );
+
paintNumber( &p );
}