mirror of https://github.com/adamdruppe/arsd.git
work better with static import
This commit is contained in:
parent
369c40fd6f
commit
80e941aad9
19
minigui.d
19
minigui.d
|
@ -997,7 +997,8 @@ class Widget : ReflectableProperties {
|
||||||
Added May 16, 2021
|
Added May 16, 2021
|
||||||
+/
|
+/
|
||||||
static protected mixin template OverrideStyle(S...) {
|
static protected mixin template OverrideStyle(S...) {
|
||||||
override void useStyleProperties(scope void delegate(scope Widget.Style props) dg) {
|
static import amg = arsd.minigui;
|
||||||
|
override void useStyleProperties(scope void delegate(scope amg.Widget.Style props) dg) {
|
||||||
ulong mask = 0;
|
ulong mask = 0;
|
||||||
foreach(idx, thing; S) {
|
foreach(idx, thing; S) {
|
||||||
static if(is(typeof(thing) : ulong)) {
|
static if(is(typeof(thing) : ulong)) {
|
||||||
|
@ -1005,7 +1006,7 @@ class Widget : ReflectableProperties {
|
||||||
} else {
|
} else {
|
||||||
if(!(idx & 1) || (this.dynamicState & mask) == mask) {
|
if(!(idx & 1) || (this.dynamicState & mask) == mask) {
|
||||||
//static assert(!__traits(isNested, thing), thing.stringof ~ " is a nested class. For best results, mark it `static`. You can still access the widget through a `widget` variable inside the Style class.");
|
//static assert(!__traits(isNested, thing), thing.stringof ~ " is a nested class. For best results, mark it `static`. You can still access the widget through a `widget` variable inside the Style class.");
|
||||||
scope Widget.Style s = new thing();
|
scope amg.Widget.Style s = new thing();
|
||||||
s.widget = this;
|
s.widget = this;
|
||||||
dg(s);
|
dg(s);
|
||||||
return;
|
return;
|
||||||
|
@ -2148,7 +2149,7 @@ abstract class ComboboxBase : Widget {
|
||||||
Property accessor added March 1, 2022 (dub v10.7). Prior to that, it was private.
|
Property accessor added March 1, 2022 (dub v10.7). Prior to that, it was private.
|
||||||
+/
|
+/
|
||||||
final @property string[] options() const {
|
final @property string[] options() const {
|
||||||
return options_;
|
return cast(string[]) options_;
|
||||||
}
|
}
|
||||||
|
|
||||||
private string[] options_;
|
private string[] options_;
|
||||||
|
@ -2204,7 +2205,7 @@ abstract class ComboboxBase : Widget {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// ditto
|
/// ditto
|
||||||
void setSelection(string s) {
|
int setSelection(string s) {
|
||||||
if(s !is null)
|
if(s !is null)
|
||||||
foreach(idx, item; options)
|
foreach(idx, item; options)
|
||||||
if(item == s) {
|
if(item == s) {
|
||||||
|
@ -6764,7 +6765,7 @@ class TabWidget : TabMessageWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
A page widget is basically a tab widget with hidden tabs.
|
A page widget is basically a tab widget with hidden tabs. It is also sometimes called a "StackWidget".
|
||||||
|
|
||||||
You add [TabWidgetPage]s to it.
|
You add [TabWidgetPage]s to it.
|
||||||
+/
|
+/
|
||||||
|
@ -9826,6 +9827,14 @@ class IndefiniteProgressBar : Widget {
|
||||||
|
|
||||||
/// A progress bar with a known endpoint and completion amount
|
/// A progress bar with a known endpoint and completion amount
|
||||||
class ProgressBar : Widget {
|
class ProgressBar : Widget {
|
||||||
|
/++
|
||||||
|
History:
|
||||||
|
Added March 16, 2022 (dub v10.7)
|
||||||
|
+/
|
||||||
|
this(int min, int max, Widget parent) {
|
||||||
|
this(parent);
|
||||||
|
setRange(cast(ushort) min, cast(ushort) max); // FIXME
|
||||||
|
}
|
||||||
this(Widget parent) {
|
this(Widget parent) {
|
||||||
version(win32_widgets) {
|
version(win32_widgets) {
|
||||||
super(parent);
|
super(parent);
|
||||||
|
|
Loading…
Reference in New Issue