2019-05-14 16:23:47 -04:00
|
|
|
#include <unordered_set>
|
|
|
|
|
2015-07-07 10:01:17 -04:00
|
|
|
#include "src/widgets/FilePane.h"
|
2019-05-10 16:35:09 -04:00
|
|
|
#include "src/widgets/MainFrame.h"
|
|
|
|
|
|
|
|
extern MainFrame *Glob_main_frame;
|
2015-06-05 16:50:52 -04:00
|
|
|
|
2015-07-14 10:40:53 -04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
Icon_File,
|
|
|
|
Icon_FolderClosed,
|
|
|
|
Icon_FolderOpened
|
|
|
|
};
|
|
|
|
|
2015-06-05 16:50:52 -04:00
|
|
|
FilePane::FilePane(
|
|
|
|
wxWindow* parent,
|
2015-07-07 10:01:17 -04:00
|
|
|
wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
long style,
|
|
|
|
const wxString &name
|
|
|
|
) : wxTreeListCtrl(parent, id, pos, size, style, name)
|
2015-06-05 16:50:52 -04:00
|
|
|
{
|
2019-05-10 16:35:09 -04:00
|
|
|
this->BindEvents();
|
2015-07-07 10:01:17 -04:00
|
|
|
this->InitImageList();
|
|
|
|
this->SetImageList(this->img_list);
|
|
|
|
|
2015-10-22 11:06:34 -04:00
|
|
|
wxString defaultPath(".");
|
2019-03-20 16:49:25 -04:00
|
|
|
wxFileName filename(defaultPath);
|
|
|
|
filename.MakeAbsolute(defaultPath);
|
2015-07-14 10:40:53 -04:00
|
|
|
wxTreeListItem root = this->GetRootItem();
|
|
|
|
this->CreateTree(defaultPath, root);
|
2015-06-05 16:50:52 -04:00
|
|
|
|
2015-07-07 10:01:17 -04:00
|
|
|
this->AppendColumn("",
|
|
|
|
wxCOL_WIDTH_AUTOSIZE,
|
|
|
|
wxALIGN_LEFT,
|
|
|
|
wxCOL_RESIZABLE | wxCOL_SORTABLE);
|
2015-06-18 13:34:54 -04:00
|
|
|
|
2015-06-05 16:50:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
FilePane::~FilePane()
|
2015-10-22 11:06:34 -04:00
|
|
|
{
|
|
|
|
delete this->img_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilePane::BindEvents()
|
|
|
|
{
|
|
|
|
this->Bind(wxEVT_TREELIST_ITEM_EXPANDING, &FilePane::OpenFolder, this, wxID_ANY);
|
2019-03-20 16:49:25 -04:00
|
|
|
this->Bind(wxEVT_TREELIST_ITEM_ACTIVATED, &FilePane::OpenFileInEditor, this, wxID_ANY);
|
2015-10-22 11:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilePane::OpenFolder(wxTreeListEvent& event)
|
2015-06-05 16:50:52 -04:00
|
|
|
{
|
2015-07-07 10:01:17 -04:00
|
|
|
|
2015-10-22 11:06:34 -04:00
|
|
|
wxTreeListItem item = event.GetItem();
|
|
|
|
const wxString path = this->GetItemText(item, 0);
|
|
|
|
|
|
|
|
wxLogDebug(path);
|
2015-06-05 16:50:52 -04:00
|
|
|
}
|
|
|
|
|
2015-10-22 11:06:34 -04:00
|
|
|
/**
|
|
|
|
* Iterates through the specified folder and creates the tree view
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
*/
|
2019-05-14 16:23:47 -04:00
|
|
|
void FilePane::CreateTree(const wxString &path, wxTreeListItem &root)
|
2015-07-14 10:40:53 -04:00
|
|
|
{
|
2019-03-20 16:49:25 -04:00
|
|
|
auto *files = new wxArrayString();
|
2015-10-22 11:06:34 -04:00
|
|
|
wxDir::GetAllFiles(path, files);
|
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
for (const wxString &file: *files)
|
|
|
|
{
|
|
|
|
wxFileName fileName(file);
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
if (fileName.DirExists("."))
|
|
|
|
{
|
|
|
|
fileName.RemoveDir(0);
|
|
|
|
}
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
// If the file is at the root, add it to the tree
|
|
|
|
if (fileName.GetDirCount() == 1)
|
|
|
|
{
|
|
|
|
this->AddDirFiles(path, root);
|
|
|
|
}
|
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
auto dir = std::string(fileName.GetPath());
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
if (dir.empty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
// Append the folder to the tree
|
2019-05-14 16:23:47 -04:00
|
|
|
wxString wdir = wxString(dir);
|
|
|
|
wxLogDebug("Creating Dir Tree: %s", wdir);
|
|
|
|
this->DirToTree(wdir, root, wxString("."));
|
|
|
|
}
|
|
|
|
}
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
/**
|
|
|
|
* Recursively create directory tree from list of files
|
|
|
|
*
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
void FilePane::DirToTree(const wxString &path, wxTreeListItem &root, const wxString &parent)
|
|
|
|
{
|
2019-05-15 16:34:01 -04:00
|
|
|
auto fullPath = parent.Clone();
|
2019-05-14 16:23:47 -04:00
|
|
|
fullPath += "/";
|
|
|
|
fullPath += path;
|
2019-05-10 16:35:09 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
this->dir_set.insert(".");
|
|
|
|
|
|
|
|
wxLogDebug("Rendering Dir Tree for %s", fullPath);
|
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
auto *files = new wxArrayString();
|
|
|
|
wxDir::GetAllFiles(path, files);
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
for (const wxString &item: *files)
|
|
|
|
{
|
2019-05-15 16:34:01 -04:00
|
|
|
wxFileName fileName(item);
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
// Remove the directory component closest to the root
|
2019-05-15 16:34:01 -04:00
|
|
|
if (fileName.GetDirCount() > 1 || fileName.DirExists("."))
|
2019-05-14 16:23:47 -04:00
|
|
|
{
|
2019-05-15 16:34:01 -04:00
|
|
|
fileName.RemoveDir(0);
|
2019-05-14 16:23:47 -04:00
|
|
|
}
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
const wxArrayString dirs = fileName.GetDirs();
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
// See if the path already exists on the tree
|
2019-05-15 16:34:01 -04:00
|
|
|
for (const wxString &dir: dirs)
|
2019-05-14 16:23:47 -04:00
|
|
|
{
|
2019-05-15 16:34:01 -04:00
|
|
|
// Stop early if folder exists
|
|
|
|
auto it = this->dir_set.find(std::string(dir));
|
|
|
|
if (it != this->dir_set.end())
|
2019-05-14 16:23:47 -04:00
|
|
|
{
|
2019-05-15 16:34:01 -04:00
|
|
|
continue;
|
2019-05-14 16:23:47 -04:00
|
|
|
}
|
2015-07-14 10:40:53 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
auto fileData = new wxStringClientData();
|
|
|
|
fileData->SetData(dir);
|
|
|
|
|
|
|
|
auto dir_node = this->AppendItem(root, dir, Icon_FolderClosed, Icon_FolderOpened, fileData);
|
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
this->dir_set.insert(std::string(dir));
|
2019-05-14 16:23:47 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
this->DirToTree(dir, dir_node, fullPath);
|
2019-05-14 16:23:47 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
// break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-22 11:06:34 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
void FilePane::AddDirFiles(const wxString &path, wxTreeListItem &root)
|
|
|
|
{
|
|
|
|
auto *files = new wxArrayString();
|
|
|
|
wxDir::GetAllFiles(path, files);
|
2019-05-14 16:23:47 -04:00
|
|
|
|
2019-05-15 16:34:01 -04:00
|
|
|
wxLogDebug("Redering files in : %s", path);
|
|
|
|
|
|
|
|
for (const wxString &item: *files)
|
|
|
|
{
|
|
|
|
wxFileName fileName(item);
|
|
|
|
fileName.MakeAbsolute();
|
|
|
|
|
|
|
|
auto it = this->file_set.find(std::string(fileName.GetFullPath()));
|
|
|
|
if (it != this->file_set.end())
|
|
|
|
{
|
2019-05-14 16:23:47 -04:00
|
|
|
continue;
|
|
|
|
}
|
2019-05-15 16:34:01 -04:00
|
|
|
|
|
|
|
auto fileData = new wxStringClientData();
|
|
|
|
fileData->SetData(fileName.GetFullPath());
|
|
|
|
|
|
|
|
this->AppendItem(root, fileName.GetFullName(), Icon_File, Icon_File, fileData);
|
|
|
|
this->file_set.insert(std::string(fileName.GetFullPath()));
|
2019-05-14 16:23:47 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Open a file you double-click on the file list
|
|
|
|
*/
|
2019-03-20 16:49:25 -04:00
|
|
|
void FilePane::OpenFileInEditor(wxTreeListEvent& event)
|
|
|
|
{
|
|
|
|
wxTreeListItem item = event.GetItem();
|
2019-05-10 16:35:09 -04:00
|
|
|
auto data = (wxStringClientData*)this->GetItemData(item);
|
|
|
|
const wxString& path = data->GetData();
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
wxLogDebug("Opening file from sidebar: %s", path);
|
|
|
|
|
2019-05-10 16:35:09 -04:00
|
|
|
wxString path_arr [1] = { path };
|
|
|
|
auto files = wxArrayString(1, *path_arr);
|
|
|
|
Glob_main_frame->OpenFiles(files);
|
2019-03-20 16:49:25 -04:00
|
|
|
}
|
|
|
|
|
2015-10-22 11:06:34 -04:00
|
|
|
/**
|
|
|
|
* Create the image list object for the file pane widget
|
|
|
|
*/
|
2015-07-07 10:01:17 -04:00
|
|
|
void FilePane::InitImageList()
|
2015-06-05 16:50:52 -04:00
|
|
|
{
|
2015-07-07 10:01:17 -04:00
|
|
|
wxSize iconSize = wxArtProvider::GetSizeHint(wxART_LIST);
|
2015-06-05 16:50:52 -04:00
|
|
|
|
2015-07-07 10:01:17 -04:00
|
|
|
if (iconSize == wxDefaultSize)
|
|
|
|
{
|
|
|
|
iconSize = wxSize(16, 16);
|
|
|
|
}
|
2015-06-05 16:50:52 -04:00
|
|
|
|
2015-07-07 10:01:17 -04:00
|
|
|
this->img_list = new wxImageList(iconSize.x, iconSize.y);
|
|
|
|
|
|
|
|
static const char* icons[] =
|
|
|
|
{
|
|
|
|
wxART_NORMAL_FILE,
|
|
|
|
wxART_FOLDER,
|
|
|
|
wxART_FOLDER_OPEN
|
|
|
|
};
|
|
|
|
|
2019-03-20 16:49:25 -04:00
|
|
|
for (auto icon : icons)
|
2015-07-07 10:01:17 -04:00
|
|
|
{
|
|
|
|
this->img_list->Add(
|
2019-03-20 16:49:25 -04:00
|
|
|
wxArtProvider::GetIcon(icon, wxART_LIST, iconSize)
|
2015-07-07 10:01:17 -04:00
|
|
|
);
|
|
|
|
}
|
2015-06-05 16:50:52 -04:00
|
|
|
}
|