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
|
|
|
// std::unordered_set<std::string> dirs;
|
2019-03-20 16:49:25 -04:00
|
|
|
|
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-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-14 16:23:47 -04:00
|
|
|
this->dir_set.insert(dir);
|
|
|
|
}
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
for (auto& dir: this->dir_set)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
auto fullPath = parent.Clone();
|
|
|
|
fullPath += "/";
|
|
|
|
fullPath += path;
|
2019-05-10 16:35:09 -04:00
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
if (filename.GetDirCount() > 1)
|
|
|
|
{
|
|
|
|
filename.RemoveDir(0);
|
|
|
|
}
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -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
|
|
|
|
/* for (const wxString &dir: dirs)
|
|
|
|
{
|
|
|
|
this->dir_it = find(this->examined.begin(), this->examined.end(), dir);
|
2019-03-20 16:49:25 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
if (dir_it != this->examined.end())
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
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);
|
|
|
|
|
|
|
|
this->examined.push_back(dir);
|
|
|
|
|
|
|
|
this->CreateTree(dir, dir_node);
|
|
|
|
break;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
// If the file is at the root, add it to the tree
|
|
|
|
if (filename.GetDirCount() == 1)
|
|
|
|
{
|
|
|
|
filename.MakeAbsolute();
|
2015-10-22 11:06:34 -04:00
|
|
|
|
2019-05-14 16:23:47 -04:00
|
|
|
auto fileData = new wxStringClientData();
|
|
|
|
fileData->SetData(filename.GetFullPath());
|
|
|
|
|
|
|
|
this->AppendItem(root, filename.GetFullName(), Icon_File, Icon_File, fileData);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|