mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
22 lines
354 B
C++
22 lines
354 B
C++
#include <RichEdit/RichEdit.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
/*
|
|
int cp;
|
|
Font fnt;
|
|
SelectUnicodeSymbol(cp, fnt);
|
|
return;
|
|
//*/
|
|
TopWindow app;
|
|
app.Sizeable().Zoomable();
|
|
DiagramEditor de;
|
|
de.AllowDarkContent();
|
|
app.Add(de.SizePos());
|
|
String fn = GetHomeDirFile("test.qdf");
|
|
de.Load(LoadFile(fn));
|
|
app.Run();
|
|
SaveFile(fn, de.Save());
|
|
}
|