Git Panel WIP.

This commit is contained in:
Martín Lucas Golini
2024-01-14 19:08:13 -03:00
parent 698af65045
commit 4a0533c28a
11 changed files with 245 additions and 67 deletions

View File

@@ -1,6 +1,7 @@
#ifndef ECODE_PLUGIN_HPP
#define ECODE_PLUGIN_HPP
#include "lsp/lspprotocol.hpp"
#include <eepp/ui/models/filesystemmodel.hpp>
#include <eepp/ui/uicodeeditor.hpp>
@@ -40,7 +41,10 @@ class Plugin : public UICodeEditorPlugin {
String i18n( const std::string& key, const String& def ) const;
virtual void onVersionUpgrade( Uint32 oldVersion, Uint32 currentVersion ) {}
virtual void onVersionUpgrade( Uint32 /*oldVersion*/, Uint32 /*currentVersion*/ ) {}
void showMessage( LSPMessageType type, const std::string& message,
const std::string& title = "" );
protected:
PluginManager* mManager{ nullptr };