ultimatepp/uppsrc/ide/Common/ComDlg.cpp

327 lines
7.1 KiB
C++

#include "Common.h"
#define IMAGECLASS IdeCommonImg
#define IMAGEFILE <ide/Common/common.iml>
#include <Draw/iml_source.h>
void FileSelect(Ctrl& t, Button& b, Event<> ev, const char *types, bool saveas)
{
b.Tip("Select file..");
b.SetImage(CtrlImg::File());
String p = types ? types : "All files (*.*)\t*.*";
b << [=, &t] {
String s = (saveas ? SelectFileSaveAs : SelectFileOpen)(p);
if(s.GetCount()) {
t <<= s;
ev();
}
};
}
void FileSelectSaveAs(Ctrl& t, Button& b, Event<> ev, const char *types)
{
return FileSelect(t, b, ev, types, true);
}
void FileSelectOpen(Ctrl& t, Button& b, Event<> ev, const char *types)
{
return FileSelect(t, b, ev, types, false);
}
void FileSelectSaveAs(Ctrl& t, Button& b, const char *types)
{
return FileSelect(t, b, Null, types, true);
}
void FileSelectOpen(Ctrl& t, Button& b, const char *types)
{
return FileSelect(t, b, Null, types, false);
}
void DirSelect(Ctrl& t, Button& b)
{
b.Tip("Select directory..");
b.SetImage(CtrlImg::Dir());
b << [&] {
String s = SelectDirectory();
if(s.GetCount()) {
t <<= s;
t.WhenAction();
}
};
}
void DirSel(EditField& f, FrameRight<Button>& b)
{
b.Width(DPI(20));
f.InsertFrame(0, b);
f.InsertFrame(1, RightGapFrame());
DirSelect(f, b);
}
void IdeFileIcon0(bool dir, const String& filename, Image& img)
{
if(dir) return;
String ext = ToLower(GetFileExt(filename));
for(int i = 0; i < GetIdeModuleCount(); i++) {
Image m = GetIdeModule(i).FileIcon(filename);
if(!IsNull(m)) {
img = m;
break;
}
}
if(ext == ".html")
img = IdeCommonImg::html();
else
if(ext == ".css")
img = IdeCommonImg::css();
else
if(ext == ".witz")
img = IdeCommonImg::witz();
else
if(ext == ".js")
img = IdeCommonImg::js();
else
if(ext == ".json")
img = IdeCommonImg::json();
else
if(ext == ".java" || ext == ".class")
img = IdeCommonImg::java();
else
if(ext == ".log")
img = IdeCommonImg::Log();
else
if(ext == ".xml" || ext == ".xsd")
img = IdeCommonImg::xml();
else
if(ext == ".diff" || ext == ".patch")
img = IdeCommonImg::diff();
else
if(ext == ".py" || ext == ".pyc" || ext == ".pyd" || ext == ".pyo")
img = IdeCommonImg::Python();
else
if(ext == ".usc")
img = IdeCommonImg::Script();
else
if(ext == ".dbg")
img = IdeCommonImg::Debugger();
else
if(ext == ".lng" || ext == ".lngj" || ext == ".t" || ext == ".jt")
img = IdeCommonImg::Language();
else
if(ext == ".icpp")
img = IdeCommonImg::ISource();
else
if(findarg(ext, ".cpp", ".cc", ".cxx", ".mm") >= 0)
img = IdeCommonImg::Cpp();
else
if(findarg(ext, ".c", ".m") >= 0)
img = IdeCommonImg::Source();
else
if(ext == ".h" || ext == ".hpp" || ext == ".hh" || ext == ".hxx")
img = IdeCommonImg::Header();
else
if(ext == ".sch")
img = IdeCommonImg::Sch();
else
if(ext == ".ddl")
img = IdeCommonImg::Ddl();
else
if(ext == ".sql")
img = IdeCommonImg::Sql();
else
if(findarg(filename, "Copying", "License.txt") >= 0)
img = IdeCommonImg::License();
else
if(filename == "main.conf")
img = IdeCommonImg::MainConf();
else
if(ext == ".key")
img = IdeCommonImg::keyboard();
else
if(ext == ".defs")
img = IdeCommonImg::Defs();
}
struct sImageAdd : ImageMaker {
Image i1, i2;
virtual String Key() const;
virtual Image Make() const;
};
String sImageAdd::Key() const
{
int64 a[2];
a[0] = i1.GetSerialId();
a[1] = i2.GetSerialId();
return String((const char *)&a, 2 * sizeof(int64));
}
Image sImageAdd::Make() const
{
Image dest = i1;
Over(dest, Point(0, 0), i2, i2.GetSize());
return dest;
}
Image ImageOver(const Image& back, const Image& over)
{
sImageAdd h;
h.i1 = back;
h.i2 = over;
return MakeImage(h);
}
Image IdeFileImage(const String& filename, bool include_path, bool pch)
{
Image img = CtrlImg::File();
IdeFileIcon0(false, filename, img);
if(include_path)
img = ImageOver(img, IdeCommonImg::IncludePath());
if(pch)
img = ImageOver(img, IdeCommonImg::Precompile());
return img;
}
void IdeFileIcon(bool dir, const String& filename, Image& img)
{
IdeFileIcon0(dir, filename, img);
}
void IdeFs(FileSel& fs)
{
fs.WhenIcon = callback(IdeFileIcon);
fs.AllFilesType();
fs.Multi();
fs.NoAsking();
fs.ReadOnlyOption();
}
void SourceFs(FileSel& fs)
{
fs.Type("C/C++ files (*.cpp *.h *.hpp *.c *.C *.cc *.cxx *.icpp)", "*.cpp *.h *.hpp *.c *.C *.cc *.cxx *.icpp");
fs.Type("Diff/Patch files (*.diff *.patch)", "*.diff *.patch");
fs.Type("Image files (*.iml)", "*.iml");
fs.Type("Java files (*.java)", "*.java");
fs.Type("Json files (*.json)", "*.json");
fs.Type("Language files (*.lng)", "*.lng");
fs.Type("Layout files (*.lay)", "*.lay");
fs.Type("Python files (*.py *.pyc *.pyd *.pyo)", "*.py *.pyc *.pyd *.pyo");
fs.Type("Web development files (*.html *.js *.css *.witz)", "*.html *.js *.css *.witz");
fs.Type("Xml files (*.xml *.xsd)", "*.xml *.xsd");
fs.Type("Other special files (*.sch *.usc *.dbg *.rc *.brc *.upt)", "*.sch *.usc *.dbg *.rc *.brc *.upt");
String mask = "*.cpp *.h *.hpp *.c *.C *.cc *.cxx *.icpp *.diff *.patch *.lay *.py *.pyc *.pyd *.pyo *.iml *.java *.json *.lng *.sch *.usc *.dbg *.rc *.brc *.upt *.html *.js *.css *.witz *.xml *.xsd *.qtf";
fs.Type("All source files (" + mask + ")", mask);
IdeFs(fs);
}
FileSel& AnySourceFs()
{
static FileSel *fsp;
if(!fsp) {
static FileSel fs;
SourceFs(fs);
fsp = &fs;
}
fsp->Multi();
return *fsp;
}
FileSel& AnyPackageFs()
{
static FileSel fs;
static bool b;
if(!b) {
fs.Type("Ultimate++ package (*.upp)", "*.upp");
fs.AllFilesType();
b = true;
}
return fs;
}
FileSel& BasedSourceFs()
{
static FileSel *fsp;
if(!fsp) {
static FileSel fs;
SourceFs(fs);
fsp = &fs;
}
fsp->Multi();
return *fsp;
}
FileSel& OutputFs()
{
static FileSel *fsp;
if(!fsp) {
static FileSel fs;
fs.AllFilesType();
fs.Type("Various (*.log *.map *.ini *.sql)", "*.log *.map *.ini *.sql");
fs.Type("Log files (*.log)", "*.log");
fs.Type("Map files (*.map)", "*.map");
fs.Type("Ini files (*.ini)", "*.ini");
fs.Type("SQL scripts (*.sql)", "*.sql");
IdeFs(fs);
fsp = &fs;
}
fsp->Multi();
return *fsp;
}
void ShellOpenFolder(const String& dir)
{
#if defined(PLATFORM_WIN32)
LaunchWebBrowser(dir);
#elif __APPLE__
String tempDir = dir;
tempDir.Replace(" ", "\\ ");
IGNORE_RESULT(
system("open " + tempDir + " &")
);
#else
String tempDir = dir;
tempDir.Replace(" ", "\\ ");
IGNORE_RESULT(
system("xdg-open " + tempDir + " &")
);
#endif
}
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");
editor.AllowDarkContent();
}
void QTFEdit(String& text)
{
QtfDlgEditor dlg;
LoadFromGlobal(dlg, "QTF-designer-editor");
dlg.editor.SetQTF(text);
dlg.Run();
text = AsQTF(dlg.editor.Get(), CHARSET_UTF8, QTF_BODY|QTF_NOSTYLES|QTF_NOCHARSET|QTF_NOLANG);
StoreToGlobal(dlg, "QTF-designer-editor");
}