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
|
#include "tail.h"
#include <wx/xrc/xmlres.h>
#include "TailPanel.h"
#include "cl_config.h"
#include "cl_command_event.h"
#include "event_notifier.h"
#include "TailFrame.h"
static Tail* thePlugin = NULL;
// Define the plugin entry point
CL_PLUGIN_API IPlugin* CreatePlugin(IManager* manager)
{
if(thePlugin == NULL) {
thePlugin = new Tail(manager);
}
return thePlugin;
}
CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
static PluginInfo info;
info.SetAuthor(wxT("PC"));
info.SetName(wxT("Tail"));
info.SetDescription(_("A Linux like tail command "));
info.SetVersion(wxT("v1.0"));
return &info;
}
CL_PLUGIN_API int GetPluginInterfaceVersion() { return PLUGIN_INTERFACE_VERSION; }
Tail::Tail(IManager* manager)
: IPlugin(manager)
, m_view(NULL)
{
m_longName = _("A Linux like tail command ");
m_shortName = wxT("Tail");
// Hook our output-pane panel
InitTailWindow(m_mgr->GetOutputPaneNotebook(), true, TailData(), false);
EventNotifier::Get()->Bind(wxEVT_INIT_DONE, &Tail::OnInitDone, this);
}
Tail::~Tail() {}
void Tail::OnInitDone(wxCommandEvent& event)
{
event.Skip();
if(clConfig::Get().Read("force-show-tail-tab", true)) {
clCommandEvent eventShow(wxEVT_SHOW_OUTPUT_TAB);
eventShow.SetSelected(true).SetString("Tail");
EventNotifier::Get()->AddPendingEvent(eventShow);
}
clConfig::Get().Write("force-show-tail-tab", false);
}
clToolBar* Tail::CreateToolBar(wxWindow* parent)
{
// Create the toolbar to be used by the plugin
clToolBar* tb(NULL);
return tb;
}
void Tail::CreatePluginMenu(wxMenu* pluginsMenu) {}
void Tail::UnPlug()
{
m_editEventsHandler.Reset(NULL);
// Unbind events
EventNotifier::Get()->Unbind(wxEVT_INIT_DONE, &Tail::OnInitDone, this);
// Remove our tab
m_tabHelper.reset(NULL); // before this plugin is un-plugged we must remove the tab we added
if(m_view && !m_view->IsDetached()) {
DoDetachWindow();
m_view->Destroy();
m_view = NULL;
}
}
void Tail::DetachTailWindow(const TailData& d)
{
// Create new frame
TailFrame* frame = new TailFrame(EventNotifier::Get()->TopFrame(), this);
InitTailWindow(frame, false, d, false);
m_view->SetIsDetached(true); // set the window as detached
frame->GetSizer()->Add(m_view, 1, wxEXPAND | wxALL);
frame->GetSizer()->Fit(frame);
m_view->SetFrameTitle();
frame->Show();
}
void Tail::DockTailWindow(const TailData& d)
{
InitTailWindow(m_mgr->GetOutputPaneNotebook(), true, d, true);
m_mgr->GetDockingManager()->Update();
}
void Tail::DoDetachWindow()
{
for(size_t i = 0; i < m_mgr->GetOutputPaneNotebook()->GetPageCount(); i++) {
if(m_view == m_mgr->GetOutputPaneNotebook()->GetPage(i)) {
m_mgr->GetOutputPaneNotebook()->RemovePage(i);
break;
}
}
}
void Tail::InitTailWindow(wxWindow* parent, bool isNotebook, const TailData& d, bool selectPage)
{
TailPanel* tmpView = new TailPanel(parent, this);
tmpView->Initialize(d);
if(m_view) {
// copy the settinhs from the current view
DoDetachWindow();
m_view->Destroy();
m_view = NULL;
}
// Hook our output-pane panel
wxBitmap bmp = m_mgr->GetStdIcons()->LoadBitmap("mime-txt");
m_view = tmpView;
m_editEventsHandler.Reset(new clEditEventsHandler(m_view->GetStc()));
if(isNotebook) {
m_mgr->GetOutputPaneNotebook()->InsertPage(0, m_view, "Tail", selectPage, bmp);
m_tabHelper.reset(new clTabTogglerHelper("Tail", m_view, "", NULL));
m_tabHelper->SetOutputTabBmp(bmp);
} else {
m_tabHelper.reset(NULL);
}
}
|