about summary refs log tree commit diff stats
path: root/src/achievements_pane.h
blob: 941b5e3d985bd6a6207762b714c8af374624f2dd (plain) (blame)
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
26
#ifndef ACHIEVEMENTS_PANE_H_C320D0B8
#define ACHIEVEMENTS_PANE_H_C320D0B8

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

#include <wx/listctrl.h>

#include <string>
#include <tuple>
#include <vector>

class AchievementsPane : public wxListView {
 public:
  explicit AchievementsPane(wxWindow* parent);

  void UpdateIndicators();

 private:
  std::vector<std::tuple<std::string, int>> achievements_; // name, solve index
};

#endif /* end of include guard: ACHIEVEMENTS_PANE_H_C320D0B8 */