25 lines
568 B
C++
25 lines
568 B
C++
#ifndef TYRO_FILE_PANE_H
|
|
#define TYRO_FILE_PANE_H
|
|
|
|
class FilePane : public wxGenericDirCtrl {
|
|
public:
|
|
FilePane(
|
|
wxWindow *parent,
|
|
const wxWindowID id = wxID_ANY,
|
|
const wxString &dir = wxDirDialogDefaultFolderStr,
|
|
const wxPoint &pos = wxDefaultPosition,
|
|
const wxSize &size = wxDefaultSize,
|
|
long style = wxDIRCTRL_EDIT_LABELS | wxDIRCTRL_MULTIPLE,
|
|
const wxString &filter = wxEmptyString
|
|
);
|
|
~FilePane();
|
|
private:
|
|
wxMenu *contextMenu = nullptr;
|
|
void BindEvents();
|
|
void CreateContextMenu();
|
|
void OpenSelectedFiles();
|
|
};
|
|
|
|
#endif /* TYRO_FILE_PANE_H */
|
|
|