-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,3 +1,3 @@ | |||
1 | #include "wordgame.h" | 1 | #include "oyatzee.h" |
2 | 2 | ||
3 | #include <qpe/qpeapplication.h> | 3 | #include <qpe/qpeapplication.h> |
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 | |||
@@ -42,5 +42,4 @@ OYatzee::OYatzee( QWidget *parent , const char *name, WFlags fl ) : QMainWindow( | |||
42 | sb = new Scoreboard( thing , "sb" ); | 42 | sb = new Scoreboard( thing , "sb" ); |
43 | dw = new DiceWidget( thing , "dw" ); | 43 | dw = new DiceWidget( thing , "dw" ); |
44 | |||
45 | 44 | ||
46 | vbox->addWidget( sb ); | 45 | vbox->addWidget( sb ); |
@@ -123,5 +122,9 @@ Dice::Dice( QWidget *parent , const char *name ) : QFrame( parent , name ) | |||
123 | void Dice::slotSelected() | 122 | void Dice::slotSelected() |
124 | { | 123 | { |
125 | qDebug( QString::number( Value ) ); | 124 | if ( isSelected ) |
125 | isSelected = false; | ||
126 | else isSelected = true; | ||
127 | |||
128 | update(); | ||
126 | } | 129 | } |
127 | 130 | ||
@@ -151,4 +154,7 @@ void Dice::paintEvent( QPaintEvent * ) | |||
151 | p.drawRect( 0,0, this->width() , this->height() ); | 154 | p.drawRect( 0,0, this->width() , this->height() ); |
152 | 155 | ||
156 | if ( isSelected ) | ||
157 | p.drawRect( 20,20, 10,10 ); | ||
158 | |||
153 | paintNumber( &p ); | 159 | paintNumber( &p ); |
154 | } | 160 | } |
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 | |||
@@ -48,4 +48,5 @@ class Dice : public QFrame | |||
48 | 48 | ||
49 | int Value; | 49 | int Value; |
50 | bool isSelected; | ||
50 | 51 | ||
51 | int hasValue(); | 52 | int hasValue(); |