Improve game filtering

This commit is contained in:
Loic Guegan 2022-12-25 18:30:56 +01:00
parent 8cc460fd20
commit 5df6e9395c
7 changed files with 47 additions and 7 deletions

View file

@ -16,12 +16,23 @@ BaseGameTab::BaseGameTab(wxFrame *parent, std::string base_file, TabInfos *main_
this->Bind(wxEVT_BUTTON, &BaseGameTab::OnExport, this, ID_EXPORT_BUTTON);
this->Bind(wxEVT_LIST_ITEM_ACTIVATED, &BaseGameTab::OnOpenGame, this, wxID_ANY);
this->Bind(wxEVT_BUTTON, &BaseGameTab::OnImport, this, ID_IMPORT_BUTTON);
this->Bind(wxEVT_BUTTON, &BaseGameTab::OnApplyFilter, this, ID_APPLY_FILTER_BUTTON);
this->Bind(wxEVT_TEXT_ENTER, &BaseGameTab::OnApplyFilter, this, ID_SEARCH_TERMS);
current_base->SetLabel(base_file);
search_terms->SetHint("e.g: Paul Morphy");
LoadFile();
}
void BaseGameTab::OnApplyFilter(wxCommandEvent &event){
wxString terms=search_terms->GetValue();
if(terms.length()>0){
glm->Filter(terms.ToStdString());
} else {
glm->ClearFilter();
}
}
void BaseGameTab::OnImport(wxCommandEvent &event) {
AppendGameDialog *dia = new AppendGameDialog(this, base);
dia->ShowModal();

View file

@ -27,6 +27,7 @@ public:
void OnExport(wxCommandEvent &event);
void OnOpenGame(wxListEvent &event);
void OnImport(wxCommandEvent &event);
void OnApplyFilter(wxCommandEvent &event);
std::shared_ptr<Game> GetGame() { return (std::shared_ptr<Game>(NULL)); }
std::shared_ptr<GameBase> GetBase() { return (std::shared_ptr<GameBase>(base)); };
};

View file

@ -68,3 +68,25 @@ long GameListManager::GetItemGameId(long item){
return std::stol(listItem.GetText().ToStdString());
}
void GameListManager::Filter(std::string terms){
ClearDisplayedRow();
for(int i=0;i<rows.size();i++){
RType row=rows[i];
if(TERMS_IN(White) ||
TERMS_IN(Black) ||
TERMS_IN(Event) ||
TERMS_IN(Round) ||
TERMS_IN(Result) ||
TERMS_IN(Eco)){
DisplayRow(i);
}
}
}
void GameListManager::ClearFilter() {
ClearDisplayedRow();
for(int i=0;i<rows.size();i++){
DisplayRow(i);
}
}

View file

@ -1,5 +1,7 @@
#include "ochess.hpp"
#define TERMS_IN(COL) (row.COL.find(terms) != std::string::npos)
typedef std::string CType;
typedef struct Item {
@ -26,4 +28,6 @@ public:
void MarkItemAsDeleted(long item);
std::vector<long> GetSelectedItems();
long GetItemGameId(long item);
void Filter(std::string terms);
void ClearFilter();
};

View file

@ -549,10 +549,10 @@ TabBase_TabGames::TabBase_TabGames( wxWindow* parent, wxWindowID id, const wxPoi
m_staticText28->Wrap( -1 );
bSizer34->Add( m_staticText28, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
search_terms = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 );
search_terms = new wxTextCtrl( this, ID_SEARCH_TERMS, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER );
bSizer34->Add( search_terms, 1, wxALL|wxEXPAND, 5 );
apply_filter_button = new wxButton( this, wxID_ANY, wxT("Apply"), wxDefaultPosition, wxDefaultSize, 0 );
apply_filter_button = new wxButton( this, ID_APPLY_FILTER_BUTTON, wxT("Apply"), wxDefaultPosition, wxDefaultSize, 0 );
bSizer34->Add( apply_filter_button, 0, wxALL, 5 );

View file

@ -57,8 +57,10 @@
#define LIVE_ANALYSIS_GAME_BUTTON 1012
#define ID_SAVE_BUTTON 1013
#define ID_EXPORT_BUTTON 1014
#define ID_IMPORT_BUTTON 1015
#define ID_DELETE_BUTTON 1016
#define ID_SEARCH_TERMS 1015
#define ID_APPLY_FILTER_BUTTON 1016
#define ID_IMPORT_BUTTON 1017
#define ID_DELETE_BUTTON 1018
///////////////////////////////////////////////////////////////////////////////
/// Class MainFrame

View file

@ -5540,7 +5540,7 @@
<property name="font"></property>
<property name="gripper">0</property>
<property name="hidden">0</property>
<property name="id">wxID_ANY</property>
<property name="id">ID_SEARCH_TERMS</property>
<property name="max_size"></property>
<property name="maximize_button">0</property>
<property name="maximum_size"></property>
@ -5559,7 +5559,7 @@
<property name="resize">Resizable</property>
<property name="show">1</property>
<property name="size"></property>
<property name="style"></property>
<property name="style">wxTE_PROCESS_ENTER</property>
<property name="subclass">; ; forward_declare</property>
<property name="toolbar_pane">0</property>
<property name="tooltip"></property>
@ -5610,7 +5610,7 @@
<property name="font"></property>
<property name="gripper">0</property>
<property name="hidden">0</property>
<property name="id">wxID_ANY</property>
<property name="id">ID_APPLY_FILTER_BUTTON</property>
<property name="label">Apply</property>
<property name="margins"></property>
<property name="markup">0</property>