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
|
#include "editorconfigplugin.h"
#include "EditorConfigSettings.h"
#include "EditorConfigSettingsDlg.h"
#include "cl_config.h"
#include "codelite_events.h"
#include "event_notifier.h"
#include "file_logger.h"
#include <wx/filename.h>
#include <wx/menu.h>
#include <wx/xrc/xmlres.h>
static EditorConfigPlugin* thePlugin = NULL;
// Define the plugin entry point
CL_PLUGIN_API IPlugin* CreatePlugin(IManager* manager)
{
if(thePlugin == NULL) {
thePlugin = new EditorConfigPlugin(manager);
}
return thePlugin;
}
CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
static PluginInfo info;
info.SetAuthor(wxT("Eran Ifrah"));
info.SetName(wxT("EditorConfig"));
info.SetDescription(_("Support for .editorconfig files in CodeLite"));
info.SetVersion(wxT("v1.0"));
return &info;
}
CL_PLUGIN_API int GetPluginInterfaceVersion() { return PLUGIN_INTERFACE_VERSION; }
EditorConfigPlugin::EditorConfigPlugin(IManager* manager)
: IPlugin(manager)
{
m_longName = _("Support for .editorconfig files in CodeLite");
m_shortName = wxT("EditorConfig");
// Load the settings
m_settings.Load();
// Bind events
EventNotifier::Get()->Bind(wxEVT_EDITOR_CONFIG_LOADING, &EditorConfigPlugin::OnEditorConfigLoading, this);
EventNotifier::Get()->Bind(wxEVT_ACTIVE_EDITOR_CHANGED, &EditorConfigPlugin::OnActiveEditorChanged, this);
}
EditorConfigPlugin::~EditorConfigPlugin() {}
void EditorConfigPlugin::CreateToolBar(clToolBarGeneric* toolbar) { wxUnusedVar(toolbar); }
void EditorConfigPlugin::CreatePluginMenu(wxMenu* pluginsMenu)
{
wxMenu* menu = new wxMenu();
menu->Append(new wxMenuItem(menu, XRCID("editor_config_settings"), _("Settings...")));
pluginsMenu->Append(wxID_ANY, _("EditorConfig"), menu);
menu->Bind(wxEVT_MENU, &EditorConfigPlugin::OnSettings, this, XRCID("editor_config_settings"));
}
void EditorConfigPlugin::UnPlug()
{
EventNotifier::Get()->Unbind(wxEVT_EDITOR_CONFIG_LOADING, &EditorConfigPlugin::OnEditorConfigLoading, this);
EventNotifier::Get()->Unbind(wxEVT_ACTIVE_EDITOR_CHANGED, &EditorConfigPlugin::OnActiveEditorChanged, this);
}
void EditorConfigPlugin::OnEditorConfigLoading(clEditorConfigEvent& event)
{
event.Skip();
if(!m_settings.IsEnabled()) {
return;
}
clEditorConfigSection section;
wxFileName fn(event.GetFileName());
if(!DoGetEditorConfigForFile(fn, section)) {
return;
}
event.Skip(false);
event.SetEditorConfig(section);
}
void EditorConfigPlugin::OnActiveEditorChanged(wxCommandEvent& event)
{
event.Skip();
if(!m_settings.IsEnabled()) {
return;
}
IEditor* editor = m_mgr->GetActiveEditor();
CHECK_PTR_RET(editor);
OptionsConfigPtr conf = editor->GetOptions();
CHECK_PTR_RET(conf);
clEditorConfigSection section;
if(!DoGetEditorConfigForFile(editor->GetFileName(), section))
return;
conf->UpdateFromEditorConfig(section);
editor->ApplyEditorConfig();
}
bool EditorConfigPlugin::DoGetEditorConfigForFile(const wxFileName& filename, clEditorConfigSection& section)
{
// Try the cache first
if(m_cache.Get(filename, section)) {
section.PrintToLog();
return true;
}
// Sanity
if(!filename.IsOk() || !filename.FileExists()) {
return false;
}
clEditorConfig conf;
if(!conf.GetSectionForFile(filename, section)) {
// Update the cache
return false;
}
m_cache.Add(filename, section);
return true;
}
void EditorConfigPlugin::OnSettings(wxCommandEvent& event)
{
EditorConfigSettingsDlg dlg(wxTheApp->GetTopWindow());
if(dlg.ShowModal() == wxID_OK) {
// Store the settings
m_settings.SetEnabled(dlg.IsEnabled());
m_settings.Save();
}
}
|