mirror of https://github.com/adamdruppe/arsd.git
new features from plane
This commit is contained in:
parent
8bc5559cf6
commit
132013463e
|
@ -1,4 +1,7 @@
|
||||||
/**
|
/**
|
||||||
|
|
||||||
|
FIXME: a simple function to integrate with sdpy event loop. templated function
|
||||||
|
|
||||||
HIGH LEVEL NOTES
|
HIGH LEVEL NOTES
|
||||||
|
|
||||||
This will offer a pollable state of two styles of controller: a PS1 or an XBox 360.
|
This will offer a pollable state of two styles of controller: a PS1 or an XBox 360.
|
||||||
|
|
46
minigui.d
46
minigui.d
|
@ -8,8 +8,7 @@
|
||||||
/*
|
/*
|
||||||
TODO:
|
TODO:
|
||||||
|
|
||||||
class Form with submit behavior
|
class Form with submit behavior -- see AutomaticDialog
|
||||||
class CommandButton with a consistent size
|
|
||||||
|
|
||||||
disabled widgets and menu items
|
disabled widgets and menu items
|
||||||
|
|
||||||
|
@ -3811,7 +3810,11 @@ class MainWindow : Window {
|
||||||
|
|
||||||
override void addChild(Widget c, int position = int.max) {
|
override void addChild(Widget c, int position = int.max) {
|
||||||
if(auto tb = cast(ToolBar) c)
|
if(auto tb = cast(ToolBar) c)
|
||||||
super.addChild(c, menuBar ? 1 : 0);
|
version(win32_widgets)
|
||||||
|
super.addChild(c, 0);
|
||||||
|
else version(custom_widgets)
|
||||||
|
super.addChild(c, menuBar ? 1 : 0);
|
||||||
|
else static assert(0);
|
||||||
else
|
else
|
||||||
clientArea.addChild(c, position);
|
clientArea.addChild(c, position);
|
||||||
}
|
}
|
||||||
|
@ -5026,6 +5029,28 @@ class Button : MouseActivatedWidget {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/++
|
||||||
|
A button with a consistent size, suitable for user commands like OK and Cancel.
|
||||||
|
+/
|
||||||
|
class CommandButton : Button {
|
||||||
|
this(string label, Widget parent = null) {
|
||||||
|
super(label, parent);
|
||||||
|
}
|
||||||
|
|
||||||
|
override int maxHeight() {
|
||||||
|
return Window.lineHeight + 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
override int maxWidth() {
|
||||||
|
return Window.lineHeight * 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
override int marginLeft() { return 12; }
|
||||||
|
override int marginRight() { return 12; }
|
||||||
|
override int marginTop() { return 12; }
|
||||||
|
override int marginBottom() { return 12; }
|
||||||
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
enum ArrowDirection {
|
enum ArrowDirection {
|
||||||
left, ///
|
left, ///
|
||||||
|
@ -6424,18 +6449,24 @@ class AutomaticDialog(T) : Dialog {
|
||||||
void delegate(T) onOK;
|
void delegate(T) onOK;
|
||||||
void delegate() onCancel;
|
void delegate() onCancel;
|
||||||
|
|
||||||
|
override int paddingTop() { return Window.lineHeight; }
|
||||||
|
override int paddingBottom() { return Window.lineHeight; }
|
||||||
|
override int paddingRight() { return Window.lineHeight; }
|
||||||
|
override int paddingLeft() { return Window.lineHeight; }
|
||||||
|
|
||||||
this(void delegate(T) onOK, void delegate() onCancel) {
|
this(void delegate(T) onOK, void delegate() onCancel) {
|
||||||
static if(is(T == class))
|
static if(is(T == class))
|
||||||
t = new T();
|
t = new T();
|
||||||
this.onOK = onOK;
|
this.onOK = onOK;
|
||||||
this.onCancel = onCancel;
|
this.onCancel = onCancel;
|
||||||
super(400, 300, T.stringof);
|
super(400, (__traits(allMembers, T).length + 5) * Window.lineHeight, T.stringof);
|
||||||
|
|
||||||
foreach(memberName; __traits(allMembers, T)) {
|
foreach(memberName; __traits(allMembers, T)) {
|
||||||
alias member = I!(__traits(getMember, t, memberName))[0];
|
alias member = I!(__traits(getMember, t, memberName))[0];
|
||||||
alias type = typeof(member);
|
alias type = typeof(member);
|
||||||
static if(is(type == string)) {
|
static if(is(type == string)) {
|
||||||
auto le = new LabeledLineEdit(memberName ~ ": ", this);
|
import std.string;
|
||||||
|
auto le = new LabeledLineEdit(memberName.capitalize ~ ": ", this);
|
||||||
le.addEventListener(EventType.change, (Event ev) {
|
le.addEventListener(EventType.change, (Event ev) {
|
||||||
__traits(getMember, t, memberName) = ev.stringValue;
|
__traits(getMember, t, memberName) = ev.stringValue;
|
||||||
});
|
});
|
||||||
|
@ -6457,8 +6488,9 @@ class AutomaticDialog(T) : Dialog {
|
||||||
}
|
}
|
||||||
|
|
||||||
auto hl = new HorizontalLayout(this);
|
auto hl = new HorizontalLayout(this);
|
||||||
auto ok = new Button("OK", hl);
|
auto stretch = new HorizontalSpacer(hl); // to right align
|
||||||
auto cancel = new Button("Cancel", hl);
|
auto ok = new CommandButton("OK", hl);
|
||||||
|
auto cancel = new CommandButton("Cancel", hl);
|
||||||
ok.addEventListener(EventType.triggered, &OK);
|
ok.addEventListener(EventType.triggered, &OK);
|
||||||
cancel.addEventListener(EventType.triggered, &Cancel);
|
cancel.addEventListener(EventType.triggered, &Cancel);
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// FIXME: have a simple function that integrates with sdpy event loop. it can be a template
|
||||||
|
// for optional dependency
|
||||||
/++
|
/++
|
||||||
Module for interacting with the user's terminal, including color output, cursor manipulation, and full-featured real-time mouse and keyboard input. Also includes high-level convenience methods, like [Terminal.getline], which gives the user a line editor with history, completion, etc. See the [#examples].
|
Module for interacting with the user's terminal, including color output, cursor manipulation, and full-featured real-time mouse and keyboard input. Also includes high-level convenience methods, like [Terminal.getline], which gives the user a line editor with history, completion, etc. See the [#examples].
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue