1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// Copyright : (C) 2015 Eran Ifrah
// File name : clFileViwerTreeCtrl.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef CLFILEVIWERTREECTRL_H
#define CLFILEVIWERTREECTRL_H
#include "clThemedTreeCtrl.h"
#include "clTreeCtrl.h"
#include "codelite_exports.h"
#include "wxStringHash.h"
#include <map>
#include <wx/filename.h>
#include <wx/treectrl.h>
/**
* @class clTreeNodeIndex
* @brief a helper class for fast searching a folder in the tree view
*/
class WXDLLIMPEXP_SDK clTreeNodeIndex
{
std::unordered_map<wxString, wxTreeItemId> m_children;
public:
clTreeNodeIndex() {}
virtual ~clTreeNodeIndex() {}
wxTreeItemId Find(const wxString& path)
{
if(m_children.count(path)) {
return m_children.find(path)->second;
}
return wxTreeItemId();
}
void Add(const wxString& path, const wxTreeItemId& item) { m_children.insert(std::make_pair(path, item)); }
void Delete(const wxString& name) { m_children.erase(name); }
/**
* @brief clear the index content
*/
void Clear() { m_children.clear(); }
};
// Item data class
class WXDLLIMPEXP_SDK clTreeCtrlData : public wxTreeItemData
{
public:
enum eKind {
kDummy = -1,
kRoot, // the hidden root folder
kFile, // a file
kFolder, // a folder
};
eKind m_kind;
// If file, contains the fullpath otherwise, contains the path
wxString m_path;
wxString m_name;
clTreeNodeIndex* m_index;
public:
clTreeCtrlData(eKind kind)
: m_kind(kind)
, m_index(NULL)
{
if(IsFolder()) {
m_index = new clTreeNodeIndex();
}
}
virtual ~clTreeCtrlData() { wxDELETE(m_index); }
clTreeNodeIndex* GetIndex() { return m_index; }
void SetKind(const eKind& kind) { this->m_kind = kind; }
const eKind& GetKind() const { return m_kind; }
/**
* @brief set the path and update the display name
*/
void SetPath(const wxString& path)
{
this->m_path = path;
if(IsFolder()) {
wxFileName fn(m_path, "");
if(fn.GetDirCount()) {
m_name = fn.GetDirs().Last();
} else {
m_name = m_path;
}
} else if(IsFile()) {
wxFileName fn(m_path);
m_name = fn.GetFullName();
} else {
m_name = wxEmptyString;
}
}
/**
* @brief return the item's path. if it is a folder, return the folder path. If it is a file
* return the file's fullpath
*/
const wxString& GetPath() const { return m_path; }
/**
* @brief return the display name
*/
const wxString& GetName() const { return m_name; }
// Aliases
bool IsFolder() const { return m_kind == kFolder; }
bool IsFile() const { return m_kind == kFile; }
bool IsDummy() const { return m_kind == kDummy; }
};
class WXDLLIMPEXP_SDK clFileViewerTreeCtrl : public clThemedTreeCtrl
{
public:
clFileViewerTreeCtrl(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTR_DEFAULT_STYLE | wxTR_MULTIPLE | wxTR_HIDE_ROOT | wxBORDER_STATIC);
virtual ~clFileViewerTreeCtrl();
};
#endif // CLFILEVIWERTREECTRL_H
|