aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow/menubar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow/menubar.h')
-rw-r--r--src/mainwindow/menubar.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/mainwindow/menubar.h b/src/mainwindow/menubar.h
new file mode 100644
index 0000000..38b1286
--- /dev/null
+++ b/src/mainwindow/menubar.h
@@ -0,0 +1,28 @@
+/*
+ * This file is part of smolbote. It's copyrighted by the contributors recorded
+ * in the version control history of the file, available from its original
+ * location: https://neueland.iserlohn-fortress.net/gitea/aqua/smolbote
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#ifndef SMOLBOTE_MENUBAR_H
+#define SMOLBOTE_MENUBAR_H
+
+#include <QMenuBar>
+
+class Configuration;
+class MainWindow;
+class MenuBar : public QMenuBar
+{
+public:
+ MenuBar(const Configuration *config, MainWindow *parent = nullptr);
+
+ QAction *insertPlugin(QMenu *menu);
+
+private:
+ QMenu *smolbote = nullptr;
+ QAction *pluginInsertLocation = nullptr;
+};
+
+#endif // SMOLBOTE_MENUBAR_H