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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2010 by Eran Ifrah
// file name : tabgroupspane.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 TABGROUPSPANE_H
#define TABGROUPSPANE_H
#include "clWorkspaceEvent.hpp"
#include "wx/panel.h"
#include <utility>
#include <vector>
#include <wx/treectrl.h>
class clThemedTreeCtrl;
enum tabgrouptype { TGT_group, TGT_item };
class TabGrpTreeItemData : public wxTreeItemData
{
public:
TabGrpTreeItemData() {}
TabGrpTreeItemData(const wxString& fp, enum tabgrouptype type = TGT_item)
: m_filepath(fp)
, m_type(type)
{
}
wxString GetFilepath() const { return m_filepath; }
tabgrouptype GetType() const { return m_type; }
protected:
wxString m_filepath;
tabgrouptype m_type; // Is this item a tabgroup or a contained tab?
};
class TabgroupsPane : public wxPanel
{
enum tabgroupmenuitems {
TGM_ID_Add = 10000,
TGM_ID_Paste,
TGM_ID_Delete,
TGM_ID_Duplicate,
TGM_ID_CopyItem,
TGM_ID_CutItem,
TGM_ID_RemoveItem
};
public:
TabgroupsPane() { m_node = NULL; }
TabgroupsPane(wxWindow* parent, const wxString& caption);
~TabgroupsPane();
void DisplayTabgroups(bool isGlobal = false);
bool AddNewTabgroupToTree(bool isGlobal, const wxString& newfilepath, wxTreeItemId selection = wxTreeItemId());
void FileDropped(const wxString& filename);
/*!
* \brief Returns the 'root' item for either Global or Workspace tabgroups
*/
wxTreeItemId GetRootItemForTabgroup(bool global);
protected:
void AddFile(const wxString& filename);
void AddTreeItem(bool isGlobal, const wxString& tabgroupname, const wxArrayString& tabfilepaths,
const wxTreeItemId insertafter = wxTreeItemId());
void AddTabgroupItem();
void PasteTabgroupItem(wxTreeItemId itemtopaste = wxTreeItemId());
void DeleteTabgroup();
void DuplicateTabgroup();
void CopyTabgroupItem(wxTreeItemId itemtocopy = wxTreeItemId());
void DeleteTabgroupItem(bool DoCut = false, wxTreeItemId itemtocopy = wxTreeItemId());
int DoGetIconIndex(const wxString& filename);
void OnContextMenu(wxCommandEvent& event);
// The next 4 methods deal with keypresses, not the context menu
void OnCopy(wxCommandEvent& WXUNUSED(event)) { CopyTabgroupItem(); }
void OnPaste(wxCommandEvent& WXUNUSED(event)) { PasteTabgroupItem(); }
void OnCut(wxCommandEvent& WXUNUSED(event)) { DeleteTabgroupItem(true); }
void OnDelete(wxCommandEvent& WXUNUSED(event));
void OnItemActivated(wxTreeEvent& event);
void OnItemRtClick(wxTreeEvent& event);
void OnBeginLabelEdit(wxTreeEvent& event);
void OnEndLabelEdit(wxTreeEvent& event);
void OnBeginDrag(wxTreeEvent& event);
void OnEndDrag(wxTreeEvent& event);
void OnWorkspaceClosed(clWorkspaceEvent& e);
void OnInitDone(wxCommandEvent& e);
clThemedTreeCtrl* m_tree;
/*!
* \brief Stores the dragged item during DnD
*/
wxTreeItemId m_draggedItem;
/*!
* \brief Used as a temporary store for a copyied/cut item's data
*/
wxXmlNode* m_node;
/*!
* \brief Used as a temporary store for the filepath of a copied/cut item
*/
wxString m_copieditem_filepath;
};
#endif // TABGROUPSPANE_H
|