mirror of https://github.com/adamdruppe/arsd.git
add minigui to dub
This commit is contained in:
parent
a89f1c5871
commit
7ddf54f030
19
dub.json
19
dub.json
|
@ -4,6 +4,7 @@
|
||||||
"sourcePaths": ["."],
|
"sourcePaths": ["."],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"arsd-official:simpledisplay":"~master",
|
"arsd-official:simpledisplay":"~master",
|
||||||
|
"arsd-official:minigui":"~master",
|
||||||
"arsd-official:dom":"~master",
|
"arsd-official:dom":"~master",
|
||||||
"arsd-official:cgi":"~master",
|
"arsd-official:cgi":"~master",
|
||||||
"arsd-official:http":"~master",
|
"arsd-official:http":"~master",
|
||||||
|
@ -31,6 +32,24 @@
|
||||||
],
|
],
|
||||||
"sourceFiles": ["simpledisplay.d", "color.d"]
|
"sourceFiles": ["simpledisplay.d", "color.d"]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "minigui",
|
||||||
|
"description": "Small GUI widget library for Windows and Linux",
|
||||||
|
"targetType": "sourceLibrary",
|
||||||
|
"libs-posix": ["X11", "Xext", "GL", "GLU"],
|
||||||
|
"libs-windows": ["gdi32"],
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "normal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "with-opengl",
|
||||||
|
"versions": ["with_opengl"],
|
||||||
|
"libs-windows": ["opengl32", "glu32"]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sourceFiles": ["simpledisplay.d", "color.d", "minigui.d"]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "dom",
|
"name": "dom",
|
||||||
"description": "HTML tag soup DOM library",
|
"description": "HTML tag soup DOM library",
|
||||||
|
|
|
@ -96,8 +96,11 @@ class HtmlConverter {
|
||||||
if(element.href != element.innerText) {
|
if(element.href != element.innerText) {
|
||||||
sink(' ', false);
|
sink(' ', false);
|
||||||
sink('<', false);
|
sink('<', false);
|
||||||
|
// I want the link itself to NOT word wrap
|
||||||
|
// to make for easier double-clicking of it in
|
||||||
|
// the terminal
|
||||||
foreach(dchar ch; element.href)
|
foreach(dchar ch; element.href)
|
||||||
sink(ch, false);
|
sink(ch, false, int.max);
|
||||||
sink('>', false);
|
sink('>', false);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -182,6 +185,7 @@ class HtmlConverter {
|
||||||
case "br":
|
case "br":
|
||||||
sink('\n', true);
|
sink('\n', true);
|
||||||
break;
|
break;
|
||||||
|
case "tr":
|
||||||
case "div":
|
case "div":
|
||||||
startBlock();
|
startBlock();
|
||||||
|
|
||||||
|
@ -250,7 +254,8 @@ class HtmlConverter {
|
||||||
bool justOutputMargin = true;
|
bool justOutputMargin = true;
|
||||||
int lineLength;
|
int lineLength;
|
||||||
|
|
||||||
void sink(dchar item, bool preformatted) {
|
void sink(dchar item, bool preformatted, int lineWidthOverride = int.min) {
|
||||||
|
int width = lineWidthOverride == int.min ? this.width : lineWidthOverride;
|
||||||
if(!preformatted && isWhite(item)) {
|
if(!preformatted && isWhite(item)) {
|
||||||
if(!justOutputWhitespace) {
|
if(!justOutputWhitespace) {
|
||||||
item = ' ';
|
item = ' ';
|
||||||
|
|
2
http2.d
2
http2.d
|
@ -1124,7 +1124,7 @@ class HttpClient {
|
||||||
bool acceptGzip = true; ///
|
bool acceptGzip = true; ///
|
||||||
|
|
||||||
/// Automatically follow a redirection?
|
/// Automatically follow a redirection?
|
||||||
bool followLocation = false; ///
|
bool followLocation = false; /// NOT IMPLEMENTED
|
||||||
|
|
||||||
///
|
///
|
||||||
@property Uri location() {
|
@property Uri location() {
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
// http://msdn.microsoft.com/en-us/library/windows/desktop/bb775498%28v=vs.85%29.aspx
|
// http://msdn.microsoft.com/en-us/library/windows/desktop/bb775498%28v=vs.85%29.aspx
|
||||||
|
|
||||||
|
// FIXME: a scroll area event signaling when a thing comes into view might be good
|
||||||
|
|
||||||
// FIXME: unify Windows style line endings
|
// FIXME: unify Windows style line endings
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/++
|
/++
|
||||||
A small extension module to [arsd.minigu] that adds
|
A small extension module to [arsd.minigui] that adds
|
||||||
functions for creating widgets and windows from short
|
functions for creating widgets and windows from short
|
||||||
XML descriptions.
|
XML descriptions.
|
||||||
|
|
||||||
|
|
|
@ -2295,7 +2295,7 @@ struct RealTimeConsoleInput {
|
||||||
|
|
||||||
auto cap = terminal.findSequenceInTermcap(thing);
|
auto cap = terminal.findSequenceInTermcap(thing);
|
||||||
if(cap is null) {
|
if(cap is null) {
|
||||||
return charPressAndRelease('\033') ~
|
return keyPressAndRelease(NonCharacterKeyEvent.Key.escape) ~
|
||||||
charPressAndRelease('O') ~
|
charPressAndRelease('O') ~
|
||||||
charPressAndRelease(thing[2]);
|
charPressAndRelease(thing[2]);
|
||||||
} else {
|
} else {
|
||||||
|
@ -2303,7 +2303,7 @@ struct RealTimeConsoleInput {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// I don't know, probably unsupported terminal or just quick user input or something
|
// I don't know, probably unsupported terminal or just quick user input or something
|
||||||
return charPressAndRelease('\033') ~ charPressAndRelease(nextChar(c));
|
return keyPressAndRelease(NonCharacterKeyEvent.Key.escape) ~ charPressAndRelease(nextChar(c));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// user hit escape (or super slow escape sequence, but meh)
|
// user hit escape (or super slow escape sequence, but meh)
|
||||||
|
|
Loading…
Reference in New Issue