mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-09-22 13:01:05 +03:00
Git Plugin more WIP.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include "pluginmanager.hpp"
|
||||
#include "../filesystemlistener.hpp"
|
||||
#include "plugin.hpp"
|
||||
#include "pluginmanager.hpp"
|
||||
#include <eepp/system/filesystem.hpp>
|
||||
#include <eepp/ui/uicheckbox.hpp>
|
||||
#include <eepp/ui/uitableview.hpp>
|
||||
@@ -30,6 +30,10 @@ void PluginManager::registerPlugin( const PluginDefinition& def ) {
|
||||
mDefinitions[def.id] = def;
|
||||
}
|
||||
|
||||
void PluginManager::setUIReady() {
|
||||
sendBroadcast( PluginMessageType::UIReady, PluginMessageFormat::Empty, nullptr );
|
||||
}
|
||||
|
||||
UICodeEditorPlugin* ecode::PluginManager::get( const std::string& id ) {
|
||||
auto findIt = mPlugins.find( id );
|
||||
if ( findIt != mPlugins.end() )
|
||||
|
||||
Reference in New Issue
Block a user