diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-25 09:21:26 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-02-25 09:21:26 +0100 |
| commit | 4adb5ff056d4a5a35cd7f76a9785c5cab57fdc03 (patch) | |
| tree | 80b468c7325b5cd4bf87fe4a2d97def4fdd54370 /src/base_tab/BasePanelBF.h | |
| parent | 416ab7635d74f04797c067c185df35f8476d87c1 (diff) | |
Improve game base panel
Diffstat (limited to 'src/base_tab/BasePanelBF.h')
| -rw-r--r-- | src/base_tab/BasePanelBF.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/base_tab/BasePanelBF.h b/src/base_tab/BasePanelBF.h index 63c4939..1bbbea1 100644 --- a/src/base_tab/BasePanelBF.h +++ b/src/base_tab/BasePanelBF.h @@ -15,12 +15,13 @@ #include <wx/font.h> #include <wx/colour.h> #include <wx/settings.h> -#include <wx/textctrl.h> #include <wx/button.h> #include <wx/bitmap.h> #include <wx/image.h> #include <wx/icon.h> #include <wx/sizer.h> +#include <wx/statline.h> +#include <wx/choice.h> #include <wx/listctrl.h> #include <wx/panel.h> @@ -35,12 +36,15 @@ class BasePanelBF : public wxPanel private: protected: - wxStaticText* current_base_label; - wxTextCtrl* current_base; + wxStaticText* current_base; wxButton* save_button; wxButton* export_button; - wxListCtrl* game_list; + wxStaticLine* separator_1; + wxStaticText* append_choice_label; + wxChoice* append_choice; + wxButton* append_button; wxButton* delete_button; + wxListCtrl* game_list; public: |
