mirror of https://github.com/adamdruppe/arsd.git
fix broken right click on embedded term
This commit is contained in:
parent
43c839cbf9
commit
665c7037fe
2
cgi.d
2
cgi.d
|
@ -3630,6 +3630,8 @@ void serveEmbeddedHttpdProcesses(alias fun, CustomCgi = Cgi)(RequestServer param
|
||||||
// most likely cause is a timeout
|
// most likely cause is a timeout
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if(newPid < 0) {
|
||||||
|
throw new Exception("fork failed");
|
||||||
} else {
|
} else {
|
||||||
processCount++;
|
processCount++;
|
||||||
}
|
}
|
||||||
|
|
8
http2.d
8
http2.d
|
@ -670,9 +670,10 @@ struct BasicAuth {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
When you send something, it creates a request
|
Represents a HTTP request. You usually create these through a [HttpClient].
|
||||||
and sends it asynchronously. The request object
|
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
auto request = new HttpRequest();
|
auto request = new HttpRequest();
|
||||||
// set any properties here
|
// set any properties here
|
||||||
|
|
||||||
|
@ -686,7 +687,6 @@ struct BasicAuth {
|
||||||
// wait until the first one is done, with the second one still in-flight
|
// wait until the first one is done, with the second one still in-flight
|
||||||
auto response = request.waitForCompletion();
|
auto response = request.waitForCompletion();
|
||||||
|
|
||||||
|
|
||||||
// async usage, type 2:
|
// async usage, type 2:
|
||||||
request.onDataReceived = (HttpRequest hr) {
|
request.onDataReceived = (HttpRequest hr) {
|
||||||
if(hr.state == HttpRequest.State.complete) {
|
if(hr.state == HttpRequest.State.complete) {
|
||||||
|
@ -698,7 +698,7 @@ struct BasicAuth {
|
||||||
// before terminating, be sure you wait for your requests to finish!
|
// before terminating, be sure you wait for your requests to finish!
|
||||||
|
|
||||||
request.waitForCompletion();
|
request.waitForCompletion();
|
||||||
|
---
|
||||||
*/
|
*/
|
||||||
class HttpRequest {
|
class HttpRequest {
|
||||||
|
|
||||||
|
|
42
minigui.d
42
minigui.d
|
@ -1,5 +1,13 @@
|
||||||
// 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
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
im tempted to add some css kind of thing to minigui. i've not done in the past cuz i have a lot of virtual functins i use but i think i have an evil plan
|
||||||
|
|
||||||
|
the virtual functions remain as the default calculated values. then the reads go through some proxy object that can override it...
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
// FIXME: slider widget.
|
// FIXME: slider widget.
|
||||||
// FIXME: number widget
|
// FIXME: number widget
|
||||||
|
|
||||||
|
@ -1461,6 +1469,40 @@ DataControllerWidget!T addDataControllerWidget(T)(Widget parent, T* t) if(is(T =
|
||||||
return new DataControllerWidget!T(t, parent);
|
return new DataControllerWidget!T(t, parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/+
|
||||||
|
styleClass = "";
|
||||||
|
|
||||||
|
widget.computedStyle
|
||||||
|
+/
|
||||||
|
version(none)
|
||||||
|
private class Style {
|
||||||
|
this(Widget w) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
T getProperty(T)(string name, T default_) {
|
||||||
|
return default_;
|
||||||
|
}
|
||||||
|
|
||||||
|
int paddingLeft() { return getProperty("padding-left", w.paddingLeft()); }
|
||||||
|
int paddingRight() { return getProperty("padding-right", w.paddingRight()); }
|
||||||
|
int paddingTop() { return getProperty("padding-top", w.paddingTop()); }
|
||||||
|
int paddingBottom() { return getProperty("padding-bottom", w.paddingBottom()); }
|
||||||
|
|
||||||
|
int marginLeft() { return getProperty("margin-left", w.marginLeft()); }
|
||||||
|
int marginRight() { return getProperty("margin-right", w.marginRight()); }
|
||||||
|
int marginTop() { return getProperty("margin-top", w.marginTop()); }
|
||||||
|
int marginBottom() { return getProperty("margin-bottom", w.marginBottom()); }
|
||||||
|
|
||||||
|
int maxHeight() { return getProperty("max-height", w.maxHeight()); }
|
||||||
|
int minHeight() { return getProperty("min-height", w.minHeight()); }
|
||||||
|
|
||||||
|
int maxWidth() { return getProperty("max-width", w.maxWidth()); }
|
||||||
|
int minWidth() { return getProperty("min-width", w.minWidth()); }
|
||||||
|
|
||||||
|
Color backgroundColor() { return getProperty("background-color", getProperty("--bg", windowBackgroundColor)); }
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The way this module works is it builds on top of a SimpleWindow
|
The way this module works is it builds on top of a SimpleWindow
|
||||||
from simpledisplay to provide simple controls and such.
|
from simpledisplay to provide simple controls and such.
|
||||||
|
|
3
script.d
3
script.d
|
@ -29,6 +29,7 @@
|
||||||
its value between loads?
|
its value between loads?
|
||||||
|
|
||||||
ddoc????
|
ddoc????
|
||||||
|
udas?!?!?!
|
||||||
|
|
||||||
Steal Ruby's [regex, capture] maybe
|
Steal Ruby's [regex, capture] maybe
|
||||||
|
|
||||||
|
@ -1552,7 +1553,7 @@ class AssignExpression : Expression {
|
||||||
if(v is null)
|
if(v is null)
|
||||||
throw new ScriptRuntimeException("not an lvalue", null, 0 /* FIXME */);
|
throw new ScriptRuntimeException("not an lvalue", null, 0 /* FIXME */);
|
||||||
|
|
||||||
auto ret = v.setVar(sc, e2.interpret(sc).value, false, suppressOverloading);
|
auto ret = v.setVar(sc, e2 is null ? var(null) : e2.interpret(sc).value, false, suppressOverloading);
|
||||||
|
|
||||||
return InterpretResult(ret, sc);
|
return InterpretResult(ret, sc);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7635,7 +7635,7 @@ version(TerminalDirectToEmulator) {
|
||||||
int termX = (ev.clientX - paddingLeft) / fontWidth;
|
int termX = (ev.clientX - paddingLeft) / fontWidth;
|
||||||
int termY = (ev.clientY - paddingTop) / fontHeight;
|
int termY = (ev.clientY - paddingTop) / fontHeight;
|
||||||
|
|
||||||
if((!mouseButtonTracking || (ev.state & ModifierState.shift)) && ev.button == MouseButton.right)
|
if((!mouseButtonTracking || selectiveMouseTracking || (ev.state & ModifierState.shift)) && ev.button == MouseButton.right)
|
||||||
widget.showContextMenu(ev.clientX, ev.clientY);
|
widget.showContextMenu(ev.clientX, ev.clientY);
|
||||||
else
|
else
|
||||||
if(sendMouseInputToApplication(termX, termY,
|
if(sendMouseInputToApplication(termX, termY,
|
||||||
|
|
|
@ -317,7 +317,7 @@ class TerminalEmulator {
|
||||||
auto text = getSelectedText();
|
auto text = getSelectedText();
|
||||||
if(text.length) {
|
if(text.length) {
|
||||||
copyToPrimary(text);
|
copyToPrimary(text);
|
||||||
} else if(!mouseButtonReleaseTracking || shift || (selectiveMouseTracking && (!alternateScreenActive || termY != 0) && termY != cursorY)) {
|
} else if(!mouseButtonReleaseTracking || shift || (selectiveMouseTracking && ((!alternateScreenActive || scrollingBack) || termY != 0) && termY != cursorY)) {
|
||||||
// hyperlink check
|
// hyperlink check
|
||||||
int idx = termY * screenWidth + termX;
|
int idx = termY * screenWidth + termX;
|
||||||
auto screen = (alternateScreenActive ? alternateScreen : normalScreen);
|
auto screen = (alternateScreenActive ? alternateScreen : normalScreen);
|
||||||
|
@ -439,11 +439,11 @@ class TerminalEmulator {
|
||||||
if(selectiveMouseTracking && termY != 0 && termY != cursorY) {
|
if(selectiveMouseTracking && termY != 0 && termY != cursorY) {
|
||||||
if(button == MouseButton.left || button == MouseButton.right)
|
if(button == MouseButton.left || button == MouseButton.right)
|
||||||
goto do_default_behavior;
|
goto do_default_behavior;
|
||||||
if(!alternateScreenActive && (button == MouseButton.wheelUp || button.MouseButton.wheelDown))
|
if((!alternateScreenActive || scrollingBack) && (button == MouseButton.wheelUp || button.MouseButton.wheelDown))
|
||||||
goto do_default_behavior;
|
goto do_default_behavior;
|
||||||
}
|
}
|
||||||
// top line only gets special cased on full screen apps
|
// top line only gets special cased on full screen apps
|
||||||
if(selectiveMouseTracking && !alternateScreenActive && termY == 0 && cursorY != 0)
|
if(selectiveMouseTracking && (!alternateScreenActive || scrollingBack) && termY == 0 && cursorY != 0)
|
||||||
goto do_default_behavior;
|
goto do_default_behavior;
|
||||||
|
|
||||||
int b = baseEventCode;
|
int b = baseEventCode;
|
||||||
|
|
Loading…
Reference in New Issue