ultimatepp/uppsrc/ide/Qtf.cpp
cxl 83f93c5267 ide: Fixed QTF docs in qtf designer
git-svn-id: svn://ultimatepp.org/upp/trunk@11745 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-01-28 16:34:47 +00:00

140 lines
3 KiB
C++

#include "ide.h"
INITBLOCK {
RegisterGlobalConfig("QTF-designer");
RegisterGlobalConfig("QTF-designer-editor");
}
class QtfDlg : public TopWindow {
typedef QtfDlg CLASSNAME;
void Text();
void Clear();
void Copy();
void Editor();
public:
Splitter leftSplit, mainSplit;
WithQtfLayout<ParentCtrl> qtfText;
RichTextCtrl qtf;
RichTextView help;
void Serialize(Stream& s);
QtfDlg();
};
void QtfDlg::Text()
{
qtf <<= ~qtfText.text;
}
void QtfDlg::Clear()
{
qtfText.text.Clear();
Text();
}
void QtfDlg::Copy()
{
WriteClipboardText(~qtfText.text);
Break();
}
struct QtfDlgEditor : TopWindow {
RichEditWithToolBar editor;
void Serialize(Stream& s);
QtfDlgEditor();
};
void QtfDlgEditor::Serialize(Stream& s)
{
SerializePlacement(s);
}
QtfDlgEditor::QtfDlgEditor()
{
Add(editor.SizePos());
Rect r = GetWorkArea();
Sizeable().Zoomable();
SetRect(0, 0, r.GetWidth() - 100, r.GetHeight() - 100);
SetMinSize(Size(min(640, r.GetWidth() - 100), min(480, r.GetHeight() - 100)));
Title("Editor");
}
void QtfDlg::Editor()
{
QtfDlgEditor dlg;
LoadFromGlobal(dlg, "QTF-designer-editor");
dlg.editor.SetQTF((String)~qtfText.text);
dlg.Run();
if(PromptYesNo("Use the text?")) {
qtfText.text <<= AsQTF(dlg.editor.Get(),
CHARSET_UTF8, QTF_BODY|QTF_NOSTYLES|QTF_NOCHARSET|QTF_NOLANG);
Text();
}
StoreToGlobal(dlg, "QTF-designer-editor");
}
QtfDlg::QtfDlg()
{
Title("QTF designer");
CtrlLayout(qtfText);
qtfText.text <<= THISBACK(Text);
qtf.SetFrame(ViewFrame());
qtf.Background(SColorPaper);
Sizeable().Zoomable();
Rect r = GetWorkArea();
SetRect(0, 0, r.GetWidth() - 100, r.GetHeight() - 200);
SetMinSize(Size(min(640, r.GetWidth() - 100), min(480, r.GetHeight() - 200)));
help.Margins(Rect(12, 0, 12, 0));
String path = AppendFileName(AppendFileName(PackageDirectory("RichText"), "srcdoc.tpp"), "QTF_en-us.tpp");
if(FileExists(path))
help.SetQTF(ReadTopic(LoadFile(path)).text);
else
help <<= "[= &&&QTF documentation not found";
qtfText.clear <<= THISBACK(Clear);
qtfText.copy <<= THISBACK(Copy);
qtfText.editor <<= THISBACK(Editor);
leftSplit.Vert(qtfText, qtf).SetPos(4000);
mainSplit.Horz(leftSplit, help).SetPos(3500);
Add(mainSplit.HSizePosZ(4, 4).VSizePosZ(4, 4));
}
void QtfDlg::Serialize(Stream& s)
{
int version = 1;
s / version;
s % qtfText.text;
SerializePlacement(s);
if(version >= 1) {
leftSplit.Serialize(s);
mainSplit.Serialize(s);
}
Text();
}
void Ide::Qtf()
{
QtfDlg dlg;
LoadFromGlobal(dlg, "QTF-designer");
int l, h;
bool sel = editor.GetSelection(l,h);
if(qtfsel && sel) {
dlg.qtfText.text <<= (~editor).ToString().Mid(l, h - l);
dlg.qtfText.copy.SetLabel("Apply and close");
dlg.Run();
editor.Remove(l, h - l);
editor.Insert(l, (~dlg.qtfText.text).ToString());
}
else {
dlg.qtfText.copy.SetLabel("Copy and close");
dlg.Run();
}
StoreToGlobal(dlg, "QTF-designer");
}