X-Git-Url: https://git.sven.stormbind.net/?a=blobdiff_plain;f=src%2Fheadingeditor.cpp;fp=src%2Fheadingeditor.cpp;h=fd871a9b4d049ea9e2de2a321b5a97b3e79f643f;hb=d483bd8e6523c23c6f1d8908a2e0611c2bc9ff4f;hp=0000000000000000000000000000000000000000;hpb=7dfa3fe589d1722d49681f42cdb0bf1e6efb5223;p=sven%2Fvym.git diff --git a/src/headingeditor.cpp b/src/headingeditor.cpp new file mode 100644 index 0000000..fd871a9 --- /dev/null +++ b/src/headingeditor.cpp @@ -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() {}