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 145
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : symbolview.cpp
//
// -------------------------------------------------------------------------
// 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "outline.h"
#include "cl_command_event.h"
#include "codelite_events.h"
#include "ctags_manager.h"
#include "detachedpanesinfo.h"
#include "event_notifier.h"
#include "fileextmanager.h"
#include "iconfigtool.h"
#include "macros.h"
#include "workspace.h"
#include <set>
#include <wx/app.h>
#include <wx/busyinfo.h>
#include <wx/log.h>
#include <wx/menu.h>
#include <wx/settings.h>
#include <wx/tokenzr.h>
#include <wx/utils.h>
#include <wx/wupdlock.h>
#include <wx/xrc/xmlres.h>
//--------------------------------------------
// Plugin Interface
//--------------------------------------------
static SymbolViewPlugin* thePlugin = NULL;
// Define the plugin entry point
CL_PLUGIN_API IPlugin* CreatePlugin(IManager* manager)
{
if(thePlugin == 0) {
thePlugin = new SymbolViewPlugin(manager);
}
return thePlugin;
}
CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
static PluginInfo info;
info.SetAuthor(wxT("Eran Ifrah"));
info.SetName(wxT("Outline"));
info.SetDescription(_("Show Current the Layout of the current file"));
info.SetVersion(wxT("v1.0"));
return &info;
}
CL_PLUGIN_API int GetPluginInterfaceVersion() { return PLUGIN_INTERFACE_VERSION; }
//--------------------------------------------
// Constructors/Destructors
//--------------------------------------------
SymbolViewPlugin::SymbolViewPlugin(IManager* manager)
: IPlugin(manager)
{
m_longName = _("Outline Plugin");
m_shortName = wxT("Outline");
Notebook* book = m_mgr->GetWorkspacePaneNotebook();
if(IsPaneDetached()) {
// Make the window child of the main panel (which is the grand parent of the notebook)
DockablePane* cp =
new DockablePane(book->GetParent()->GetParent(), book, _("Outline"), false, wxNOT_FOUND, wxSize(200, 200));
m_view = new OutlineTab(cp);
cp->SetChildNoReparent(m_view);
} else {
m_view = new OutlineTab(book);
book->AddPage(m_view, _("Outline"), false, wxNOT_FOUND);
}
EventNotifier::Get()->Bind(wxEVT_SHOW_WORKSPACE_TAB, &SymbolViewPlugin::OnToggleTab, this);
m_mgr->AddWorkspaceTab(_("Outline"));
}
SymbolViewPlugin::~SymbolViewPlugin() { thePlugin = NULL; }
void SymbolViewPlugin::CreateToolBar(clToolBarGeneric* toolbar) { wxUnusedVar(toolbar); }
void SymbolViewPlugin::CreatePluginMenu(wxMenu* pluginsMenu) { wxUnusedVar(pluginsMenu); }
void SymbolViewPlugin::UnPlug()
{
EventNotifier::Get()->Unbind(wxEVT_SHOW_WORKSPACE_TAB, &SymbolViewPlugin::OnToggleTab, this);
int where = m_mgr->GetWorkspacePaneNotebook()->GetPageIndex(m_view);
if(where != wxNOT_FOUND) {
// this window might be floating
m_mgr->GetWorkspacePaneNotebook()->RemovePage(where);
}
m_view->Destroy();
m_view = NULL;
}
bool SymbolViewPlugin::IsPaneDetached()
{
DetachedPanesInfo dpi;
m_mgr->GetConfigTool()->ReadObject(wxT("DetachedPanesList"), &dpi);
wxArrayString detachedPanes = dpi.GetPanes();
return detachedPanes.Index(_("Outline")) != wxNOT_FOUND;
}
void SymbolViewPlugin::OnToggleTab(clCommandEvent& event)
{
if(event.GetString() != _("Outline")) {
event.Skip();
return;
}
if(event.IsSelected()) {
// show it
m_mgr->GetWorkspacePaneNotebook()->AddPage(m_view, _("Outline"), true);
} else {
int where = m_mgr->GetWorkspacePaneNotebook()->GetPageIndex(_("Outline"));
if(where != wxNOT_FOUND) {
m_mgr->GetWorkspacePaneNotebook()->RemovePage(where);
}
}
}
|