comparison src/mainwindow.h @ 494:41a156d439d0

Start adding Help
author Chris Cannam
date Thu, 18 Aug 2011 16:37:27 +0100
parents 1d90cd7a1c5f
children 470829a21f98
comparison
equal deleted inserted replaced
493:75ebcacd3f75 494:41a156d439d0
55 void commandFailed(HgAction action, QString stdErr); 55 void commandFailed(HgAction action, QString stdErr);
56 void enableDisableActions(); 56 void enableDisableActions();
57 57
58 private slots: 58 private slots:
59 void about(); 59 void about();
60 void help();
60 void settings(); 61 void settings();
61 void settings(SettingsDialog::Tab); 62 void settings(SettingsDialog::Tab);
62 void open(); 63 void open();
63 void recentMenuActivated(); 64 void recentMenuActivated();
64 void changeRemoteRepo(); 65 void changeRemoteRepo();
232 QMenu *m_recentMenu; 233 QMenu *m_recentMenu;
233 QMenu *m_helpMenu; 234 QMenu *m_helpMenu;
234 235
235 // Help menu actions 236 // Help menu actions
236 QAction *m_aboutAct; 237 QAction *m_aboutAct;
238 QAction *m_helpAct;
237 239
238 QToolBar *m_fileToolBar; 240 QToolBar *m_fileToolBar;
239 QToolBar *m_repoToolBar; 241 QToolBar *m_repoToolBar;
240 QToolBar *m_workFolderToolBar; 242 QToolBar *m_workFolderToolBar;
243
244 QDialog *m_helpDialog;
241 245
242 HgRunner *m_runner; 246 HgRunner *m_runner;
243 247
244 bool m_shouldHgStat; 248 bool m_shouldHgStat;
245 249