aboutsummaryrefslogtreecommitdiff
path: root/plugins/interfaces.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-06-15 09:59:57 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-06-15 09:59:57 +0200
commitfeaec1906ea336b77022809aacc2ec4115b329c2 (patch)
tree7d7c88d5e2e0df9822b826583d2eeaf75bdec659 /plugins/interfaces.h
parentProfileEditor: add delete button (diff)
downloadsmolbote-feaec1906ea336b77022809aacc2ec4115b329c2.tar.xz
AboutDialog: add profile list to details tab
Diffstat (limited to 'plugins/interfaces.h')
-rw-r--r--plugins/interfaces.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/interfaces.h b/plugins/interfaces.h
index 8b5b78c..1b653cd 100644
--- a/plugins/interfaces.h
+++ b/plugins/interfaces.h
@@ -10,6 +10,7 @@
#define SMOLBOTE_PLUGIN_INTERFACES_H
#include <QtPlugin>
+#include <QKeySequence>
#include <memory>
#include <functional>
@@ -20,6 +21,9 @@ class WebProfile;
struct Plugin
{
+ QString name;
+ QString author;
+ QKeySequence shortcut;
std::shared_ptr<QObject> instance;
};