#ifndef PAINTINGS_PANE_H_815370D2 #define PAINTINGS_PANE_H_815370D2 #include #ifndef WX_PRECOMP #include #endif class wxDataViewEvent; class wxDataViewTreeCtrl; class PaintingsPane : public wxPanel { public: explicit PaintingsPane(wxWindow* parent); void ResetIndicators(); void UpdateIndicators(const std::vector& paintings); private: void OnClickRevealPaintings(wxCommandEvent& event); void OnStartEditingCell(wxDataViewEvent& event); wxDataViewTreeCtrl* tree_ctrl_; wxButton* reveal_btn_; }; #endif /* end of include guard: PAINTINGS_PANE_H_815370D2 */