mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
297 lines
5.6 KiB
C++
297 lines
5.6 KiB
C++
#include <RichEdit/RichEdit.h>
|
|
#include <PdfDraw/PdfDraw.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define IMAGECLASS UWordImg
|
|
#define IMAGEFILE <UWord/UWord.iml>
|
|
#include <Draw/iml.h>
|
|
|
|
FileSel& UWordFs()
|
|
{
|
|
static FileSel fs;
|
|
return fs;
|
|
}
|
|
|
|
FileSel& PdfFs()
|
|
{
|
|
static FileSel fs;
|
|
return fs;
|
|
}
|
|
|
|
class UWord : public TopWindow {
|
|
public:
|
|
virtual void DragAndDrop(Point, PasteClip& d);
|
|
virtual void FrameDragAndDrop(Point, PasteClip& d);
|
|
|
|
protected:
|
|
RichEdit editor;
|
|
MenuBar menubar;
|
|
ToolBar toolbar;
|
|
StatusBar statusbar;
|
|
String filename;
|
|
|
|
static LRUList& lrufile() { static LRUList l; return l; }
|
|
|
|
void Load(const String& filename);
|
|
void OpenFile(const String& fn);
|
|
void New();
|
|
void Open();
|
|
void Save0();
|
|
void Save();
|
|
void SaveAs();
|
|
void Print();
|
|
void Pdf();
|
|
void About();
|
|
void Destroy();
|
|
void SetBar();
|
|
void FileBar(Bar& bar);
|
|
void AboutMenu(Bar& bar);
|
|
void MainMenu(Bar& bar);
|
|
void MainBar(Bar& bar);
|
|
|
|
public:
|
|
static void SerializeApp(Stream& s);
|
|
|
|
UWord();
|
|
};
|
|
|
|
void UWord::FileBar(Bar& bar)
|
|
{
|
|
bar.Add("New", CtrlImg::new_doc(), [=] { New(); })
|
|
.Key(K_CTRL_N)
|
|
.Help("Open new window");
|
|
bar.Add("Open..", CtrlImg::open(), [=] { Open(); })
|
|
.Key(K_CTRL_O)
|
|
.Help("Open existing document");
|
|
bar.Add(editor.IsModified(), "Save", CtrlImg::save(), [=] { Save(); })
|
|
.Key(K_CTRL_S)
|
|
.Help("Save current document");
|
|
bar.Add("SaveAs", CtrlImg::save_as(), [=] { SaveAs(); })
|
|
.Help("Save current document with a new name");
|
|
bar.ToolGap();
|
|
bar.MenuSeparator();
|
|
bar.Add("Export to PDF..", UWordImg::pdf(), [=] { Pdf(); })
|
|
.Help("Export document to PDF file");
|
|
if(bar.IsMenuBar()) {
|
|
if(lrufile().GetCount())
|
|
lrufile()(bar, [=](const String& path) { OpenFile(path); });
|
|
bar.Separator();
|
|
bar.Add("Exit", [=] { Destroy(); });
|
|
}
|
|
}
|
|
|
|
void UWord::AboutMenu(Bar& bar)
|
|
{
|
|
bar.Add("About..", [=] { About(); });
|
|
}
|
|
|
|
void UWord::MainMenu(Bar& bar)
|
|
{
|
|
bar.Sub("File", [=](Bar& bar) { FileBar(bar); });
|
|
bar.Sub("Window", [=](Bar& bar) { WindowsMenu(bar); });
|
|
bar.Sub("Help", [=](Bar& bar) { AboutMenu(bar); });
|
|
}
|
|
|
|
void UWord::New()
|
|
{
|
|
new UWord;
|
|
}
|
|
|
|
bool IsRTF(const char *fn)
|
|
{
|
|
return ToLower(GetFileExt(fn)) == ".rtf";
|
|
}
|
|
|
|
void UWord::Load(const String& name)
|
|
{
|
|
lrufile().NewEntry(name);
|
|
if(IsRTF(name))
|
|
editor.Pick(ParseRTF(LoadFile(name)));
|
|
else
|
|
editor.SetQTF(LoadFile(name));
|
|
filename = name;
|
|
editor.ClearModify();
|
|
Title(filename);
|
|
}
|
|
|
|
void UWord::OpenFile(const String& fn)
|
|
{
|
|
if(filename.IsEmpty() && !editor.IsModified())
|
|
Load(fn);
|
|
else
|
|
(new UWord)->Load(fn);
|
|
}
|
|
|
|
void UWord::Open()
|
|
{
|
|
FileSel& fs = UWordFs();
|
|
if(fs.ExecuteOpen())
|
|
OpenFile(fs);
|
|
else
|
|
statusbar.Temporary("Loading aborted.");
|
|
}
|
|
|
|
void UWord::DragAndDrop(Point, PasteClip& d)
|
|
{
|
|
if(IsAvailableFiles(d)) {
|
|
Vector<String> fn = GetFiles(d);
|
|
for(int open = 0; open < 2; open++) {
|
|
for(int i = 0; i < fn.GetCount(); i++) {
|
|
String ext = GetFileExt(fn[i]);
|
|
if(FileExists(fn[i]) && (ext == ".rtf" || ext == ".qtf")) {
|
|
if(open)
|
|
OpenFile(fn[i]);
|
|
else {
|
|
if(d.Accept())
|
|
break;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
if(!d.IsAccepted())
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
void UWord::FrameDragAndDrop(Point p, PasteClip& d)
|
|
{
|
|
DragAndDrop(p, d);
|
|
}
|
|
|
|
void UWord::Save0()
|
|
{
|
|
lrufile().NewEntry(filename);
|
|
if(filename.IsEmpty())
|
|
SaveAs();
|
|
else {
|
|
if(SaveFile(filename, IsRTF(filename) ? EncodeRTF(editor.Get()) : editor.GetQTF())) {
|
|
statusbar.Temporary("File " + filename + " was saved.");
|
|
ClearModify();
|
|
}
|
|
else
|
|
Exclamation("Error saving the file [* " + DeQtf(filename) + "]!");
|
|
}
|
|
}
|
|
|
|
void UWord::Save()
|
|
{
|
|
if(!editor.IsModified()) return;
|
|
Save0();
|
|
}
|
|
|
|
void UWord::SaveAs()
|
|
{
|
|
FileSel& fs = UWordFs();
|
|
if(fs.ExecuteSaveAs()) {
|
|
filename = fs;
|
|
Title(filename);
|
|
Save0();
|
|
}
|
|
}
|
|
|
|
void UWord::Print()
|
|
{
|
|
editor.Print();
|
|
}
|
|
|
|
void UWord::Pdf()
|
|
{
|
|
FileSel& fs = PdfFs();
|
|
if(!fs.ExecuteSaveAs("Output PDF file"))
|
|
return;
|
|
Size page = Size(3968, 6074);
|
|
PdfDraw pdf;
|
|
UPP::Print(pdf, editor.Get(), page);
|
|
SaveFile(~fs, pdf.Finish());
|
|
}
|
|
|
|
void UWord::About()
|
|
{
|
|
PromptOK("[A5 uWord]&Using [*^https`:`/`/www`.ultimatepp`.org`/^ U`+`+] technology.");
|
|
}
|
|
|
|
void UWord::Destroy()
|
|
{
|
|
if(editor.IsModified()) {
|
|
switch(PromptYesNoCancel("Do you want to save the changes to the document?")) {
|
|
case 1:
|
|
Save();
|
|
break;
|
|
case -1:
|
|
return;
|
|
}
|
|
}
|
|
delete this;
|
|
}
|
|
|
|
void UWord::MainBar(Bar& bar)
|
|
{
|
|
FileBar(bar);
|
|
bar.Separator();
|
|
editor.DefaultBar(bar);
|
|
}
|
|
|
|
void UWord::SetBar()
|
|
{
|
|
toolbar.Set([=](Bar& bar) { MainBar(bar); });
|
|
}
|
|
|
|
UWord::UWord()
|
|
{
|
|
#ifdef PLATFORM_COCOA
|
|
SetMainMenu([=](Bar& bar) { MainMenu(bar); });
|
|
#else
|
|
AddFrame(menubar);
|
|
#endif
|
|
AddFrame(TopSeparatorFrame());
|
|
AddFrame(toolbar);
|
|
AddFrame(statusbar);
|
|
Add(editor.SizePos());
|
|
menubar.Set([=](Bar& bar) { MainMenu(bar); });
|
|
Sizeable().Zoomable();
|
|
WhenClose = [=] { Destroy(); };
|
|
menubar.WhenHelp = toolbar.WhenHelp = statusbar;
|
|
static int doc;
|
|
Title(Format("Document%d", ++doc));
|
|
Icon(CtrlImg::File());
|
|
editor.AllowDarkContent();
|
|
editor.ClearModify();
|
|
SetBar();
|
|
editor.WhenRefreshBar = [=] { SetBar(); };
|
|
OpenMain();
|
|
ActiveFocus(editor);
|
|
}
|
|
|
|
void UWord::SerializeApp(Stream& s)
|
|
{
|
|
int version = 1;
|
|
s / version;
|
|
s % UWordFs()
|
|
% PdfFs();
|
|
if(version >= 1)
|
|
s % lrufile();
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
StdLogSetup(LOG_FILE|LOG_ELAPSED);
|
|
SetLanguage(LNG_ENGLISH);
|
|
SetDefaultCharset(CHARSET_UTF8);
|
|
|
|
Ctrl::SkinChangeSensitive();
|
|
|
|
UWordFs().Type("QTF files", "*.qtf")
|
|
.Type("RTF files", "*.rtf")
|
|
.AllFilesType()
|
|
.DefaultExt("qtf");
|
|
PdfFs().Type("PDF files", "*.pdf")
|
|
.AllFilesType()
|
|
.DefaultExt("pdf");
|
|
|
|
LoadFromFile(callback(UWord::SerializeApp));
|
|
new UWord;
|
|
Ctrl::EventLoop();
|
|
StoreToFile(callback(UWord::SerializeApp));
|
|
}
|