-rw-r--r-- | noncore/games/oyatzee/main.cpp | 2 | ||||
-rw-r--r-- | noncore/games/oyatzee/oyatzee.cpp | 10 | ||||
-rw-r--r-- | noncore/games/oyatzee/oyatzee.h | 1 |
3 files changed, 10 insertions, 3 deletions
diff --git a/noncore/games/oyatzee/main.cpp b/noncore/games/oyatzee/main.cpp index 6e5002c..1fd51f6 100644 --- a/noncore/games/oyatzee/main.cpp +++ b/noncore/games/oyatzee/main.cpp @@ -1,5 +1,5 @@ -#include "wordgame.h" +#include "oyatzee.h" #include <qpe/qpeapplication.h> int main( int argc, char ** argv ) 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,9 +41,8 @@ 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 ); setPlayerNumber( 2 ); @@ -121,9 +120,13 @@ 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() { @@ -149,8 +152,11 @@ void Dice::paintEvent( QPaintEvent * ) p.begin( this ); p.drawRect( 0,0, this->width() , this->height() ); + if ( isSelected ) + p.drawRect( 20,20, 10,10 ); + paintNumber( &p ); } void Dice::paintNumber( QPainter *p ) diff --git a/noncore/games/oyatzee/oyatzee.h b/noncore/games/oyatzee/oyatzee.h index 7be9407..01ab36d 100644 --- a/noncore/games/oyatzee/oyatzee.h +++ b/noncore/games/oyatzee/oyatzee.h @@ -46,8 +46,9 @@ class Dice : public QFrame public: Dice( QWidget* parent = 0, const char* name = 0 ); int Value; + bool isSelected; int hasValue(); void roll(); virtual void mousePressEvent( QMouseEvent* ); |