diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-05-13 10:43:21 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-05-13 10:43:21 +0200 |
| commit | 617f2b01b2679ec43330ea6fb5f25f4137565b6a (patch) | |
| tree | f6d102da10821fb04f6184499e8a17cdb96472ad /src/MainWindow.hpp | |
| parent | 055410c0e0c1297612ce9677331d012af2226fac (diff) | |
Improve documentation
Diffstat (limited to 'src/MainWindow.hpp')
| -rw-r--r-- | src/MainWindow.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/MainWindow.hpp b/src/MainWindow.hpp index 5e01def..5204220 100644 --- a/src/MainWindow.hpp +++ b/src/MainWindow.hpp @@ -15,9 +15,16 @@ wxDECLARE_EVENT(CLOSE_TAB_EVENT, wxCommandEvent); wxDECLARE_EVENT(REFRESH_ENGINE_LIST, wxCommandEvent); wxDECLARE_EVENT(CLOSE_LINKED_TAB, wxCommandEvent); +/** + * @brief Main GUI window of OChess + * + */ class MainWindow : public MainFrame { + /// @brief Preference popup window wxPreferencesEditor *prefsEditor; + /// @brief Menu to manage existing chess engines wxMenu *manageMenu; + /// @brief Store the number of available chess engines (to create entries in the menus) int engine_count; void OnClose(wxCloseEvent &e); |
