aboutsummaryrefslogtreecommitdiff
path: root/src/engine_tab/EngineTab.hpp
blob: 3410964f112a201081a08b1765292e370e77e719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "EngineTabBF.h"
#include "UCI.hpp"
#include "ochess.hpp"

// Foreign event
wxDECLARE_EVENT(CLOSE_TAB_EVENT, wxCommandEvent);
wxDECLARE_EVENT(REFRESH_ENGINE_LIST, wxCommandEvent);

class EngineTab : public EngineTabBF, public TabInfos {
  uciadapter::UCI *engine;
  std::string confGroup, enginePath;
  std::string engineName;
  void InitConfiguration();
  void LoadConfiguration();
  void RefreshItemList();
public:
  EngineTab(wxWindow *parent, uciadapter::UCI *engine,
            std::string engine_path_or_name);
  EngineTab(wxWindow *parent, std::string name);
  void ApplyPreferences() {}
  void *GetGame() { return (NULL); }
  void *GetBase() { return (NULL); }
  void OnSave(wxCommandEvent &event);
  void OnDelete(wxCommandEvent &event);
};