aboutsummaryrefslogtreecommitdiff
path: root/src/gui.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-12-26 12:51:48 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-12-26 12:51:48 +0100
commit1d78e106adf4cc5894f299d597c02a9b7e508173 (patch)
tree04e722a73340082f6c2b06d9901bb705f762eead /src/gui.cpp
parent2bd85f53bcaeb12090b9ac2d4cf7c781b280e678 (diff)
Debug database tab
Diffstat (limited to 'src/gui.cpp')
-rw-r--r--src/gui.cpp46
1 files changed, 17 insertions, 29 deletions
diff --git a/src/gui.cpp b/src/gui.cpp
index c4c3a29..507eca0 100644
--- a/src/gui.cpp
+++ b/src/gui.cpp
@@ -526,37 +526,18 @@ TabBase_TabGames::TabBase_TabGames( wxWindow* parent, wxWindowID id, const wxPoi
wxBoxSizer* top_sizer;
top_sizer = new wxBoxSizer( wxHORIZONTAL );
- current_base = new wxStaticText( this, wxID_ANY, wxT("unknown"), wxDefaultPosition, wxDefaultSize, 0 );
- current_base->Wrap( -1 );
- top_sizer->Add( current_base, 1, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
-
- save_button = new wxButton( this, ID_SAVE_BUTTON, wxT("Save"), wxDefaultPosition, wxDefaultSize, 0 );
- top_sizer->Add( save_button, 0, wxALL, 5 );
-
- export_button = new wxButton( this, ID_EXPORT_BUTTON, wxT("Export"), wxDefaultPosition, wxDefaultSize, 0 );
- top_sizer->Add( export_button, 0, wxALL, 5 );
-
-
- main_sizer->Add( top_sizer, 0, wxEXPAND, 5 );
-
- separator_1 = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
- main_sizer->Add( separator_1, 0, wxEXPAND | wxALL, 5 );
-
- wxBoxSizer* bSizer34;
- bSizer34 = new wxBoxSizer( wxHORIZONTAL );
-
m_staticText28 = new wxStaticText( this, wxID_ANY, wxT("Filter:"), wxDefaultPosition, wxDefaultSize, 0 );
m_staticText28->Wrap( -1 );
- bSizer34->Add( m_staticText28, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+ top_sizer->Add( m_staticText28, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
search_terms = new wxTextCtrl( this, ID_SEARCH_TERMS, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER );
- bSizer34->Add( search_terms, 1, wxALL|wxEXPAND, 5 );
+ top_sizer->Add( search_terms, 1, wxALL|wxEXPAND, 5 );
apply_filter_button = new wxButton( this, ID_APPLY_FILTER_BUTTON, wxT("Apply"), wxDefaultPosition, wxDefaultSize, 0 );
- bSizer34->Add( apply_filter_button, 0, wxALL, 5 );
+ top_sizer->Add( apply_filter_button, 0, wxALL, 5 );
- main_sizer->Add( bSizer34, 0, wxEXPAND, 5 );
+ main_sizer->Add( top_sizer, 0, wxEXPAND, 5 );
game_list = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxSize( -1,-1 ), wxLC_REPORT );
main_sizer->Add( game_list, 1, wxALL|wxEXPAND, 5 );
@@ -564,9 +545,6 @@ TabBase_TabGames::TabBase_TabGames( wxWindow* parent, wxWindowID id, const wxPoi
wxBoxSizer* bottom_sizer;
bottom_sizer = new wxBoxSizer( wxHORIZONTAL );
- import_button = new wxButton( this, ID_IMPORT_BUTTON, wxT("Import games"), wxDefaultPosition, wxDefaultSize, 0 );
- bottom_sizer->Add( import_button, 1, wxALL|wxEXPAND, 5 );
-
delete_button = new wxButton( this, ID_DELETE_BUTTON, wxT("Mark as deleted"), wxDefaultPosition, wxDefaultSize, 0 );
bottom_sizer->Add( delete_button, 1, wxALL|wxEXPAND, 5 );
@@ -654,9 +632,19 @@ TabBase_TabManage::TabBase_TabManage( wxWindow* parent, wxWindowID id, const wxP
wxBoxSizer* main_sizer;
main_sizer = new wxBoxSizer( wxVERTICAL );
- m_staticText27 = new wxStaticText( this, wxID_ANY, wxT("TODO"), wxDefaultPosition, wxDefaultSize, 0 );
- m_staticText27->Wrap( -1 );
- main_sizer->Add( m_staticText27, 0, wxALL, 5 );
+ informations = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY );
+ informations->SetBackgroundColour( wxColour( 235, 235, 235 ) );
+
+ main_sizer->Add( informations, 100, wxALL|wxEXPAND, 5 );
+
+ wxBoxSizer* bottom_sizer;
+ bottom_sizer = new wxBoxSizer( wxVERTICAL );
+
+ save_button = new wxButton( this, ID_SAVE_BUTTON, wxT("Save All Changes"), wxDefaultPosition, wxDefaultSize, 0 );
+ bottom_sizer->Add( save_button, 0, wxALL|wxEXPAND, 5 );
+
+
+ main_sizer->Add( bottom_sizer, 1, wxEXPAND, 5 );
this->SetSizer( main_sizer );