Tyro/src/widgets/FilePane.h

25 lines
550 B
C
Raw Normal View History

2016-01-13 09:29:09 -05:00
#pragma once
2015-07-07 10:01:17 -04:00
#include "src/widgets/widget.h"
class FilePane : public wxTreeListCtrl {
public:
FilePane(
2015-07-07 10:01:17 -04:00
wxWindow *parent,
wxWindowID id=wxID_ANY,
const wxPoint &pos=wxDefaultPosition,
const wxSize &size=wxDefaultSize,
long style=wxTL_DEFAULT_STYLE,
const wxString &name=wxTreeListCtrlNameStr
);
~FilePane();
private:
2015-10-22 11:06:34 -04:00
wxString curr_path = "";
2015-07-07 10:01:17 -04:00
wxImageList *img_list = nullptr;
2015-10-22 11:06:34 -04:00
void BindEvents();
void OpenFolder(wxTreeListEvent& event);
2015-07-07 10:01:17 -04:00
void InitImageList();
2015-07-14 10:40:53 -04:00
void CreateTree(const wxString &path, wxTreeListItem &root);
};