Guest User

Untitled

a guest
Feb 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. i *.h fil
  2. under private:
  3.  
  4.  Dialog *window;
  5.  
  6. ***************************************************
  7. i *.cpp fil
  8.  
  9. i konstr.
  10. window = new Dialog;
  11.  
  12. connect(window->button, SIGNAL(clicked()), this, SLOT(startGame()));
  13. ***************************
  14. i startGame:
  15.  
  16.  window->setVisible(false);
  17.  
  18. ***************************
  19. i keyPressed
  20.  
  21.  if (chosenNumber == randomNumber)
  22.     {
  23.         button->setStyleSheet("* { background-color: green }");
  24.         window->setVisible(true);
  25.     }
Add Comment
Please, Sign In to add comment