]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - src/headingeditor.cpp
New upstream version 2.9.22
[sven/vym.git] / src / headingeditor.cpp
diff --git a/src/headingeditor.cpp b/src/headingeditor.cpp
new file mode 100644 (file)
index 0000000..fd871a9
--- /dev/null
@@ -0,0 +1,18 @@
+#include "headingeditor.h"
+#include "settings.h"
+
+extern Settings settings;
+extern QString vymName;
+
+HeadingEditor::HeadingEditor(QString scope) : TextEditor()
+{
+    editorName = tr("Heading Editor", "Name of editor shown as window title");
+    setWindowTitle("");
+
+    setUseColorMapBackground(true);
+
+    // Load Settings
+    init(scope);
+}
+
+HeadingEditor::~HeadingEditor() {}