~ubuntu-branches/ubuntu/trusty/picmi/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gui/mainwindow.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-06-21 02:02:30 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20130621020230-amlvc60a8dgm4vz9
Tags: 4:4.10.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
 
45
45
protected:
46
46
    void closeEvent(QCloseEvent *event);
47
 
    
 
47
 
48
48
private slots:
49
49
    void startRandomGame();
 
50
    void restartGame();
50
51
    void togglePaused(bool paused);
51
52
    void settings();
52
53
    void gameWon();
53
54
    void undo();
 
55
    void hint();
54
56
    void saveState();
55
57
    void loadState();
56
58
    void highscores();
79
81
    QSharedPointer<KScoreDialog> createScoreDialog();
80
82
    void setupActions();
81
83
 
82
 
    KAction *m_action_undo, *m_action_save_state, *m_action_load_state;
 
84
    KAction *m_action_undo, *m_action_save_state, *m_action_load_state, *m_action_hint;
83
85
    KToggleAction *m_action_pause;
84
86
    QLabel *m_status_time, *m_status_position;
85
87
    View m_view;