mirror of https://github.com/adamdruppe/arsd.git
making it suck less
This commit is contained in:
parent
49341201fe
commit
95755a1512
|
@ -11,7 +11,7 @@ static if(UsingWin32Widgets)
|
||||||
/++
|
/++
|
||||||
|
|
||||||
+/
|
+/
|
||||||
void showColorDialog(Window owner, Color current, void delegate(Color choice) onOK, void delegate() onCancel = null) {
|
auto showColorDialog(Window owner, Color current, void delegate(Color choice) onOK, void delegate() onCancel = null) {
|
||||||
static if(UsingWin32Widgets) {
|
static if(UsingWin32Widgets) {
|
||||||
import core.sys.windows.windows;
|
import core.sys.windows.windows;
|
||||||
static COLORREF[16] customColors;
|
static COLORREF[16] customColors;
|
||||||
|
@ -30,6 +30,7 @@ void showColorDialog(Window owner, Color current, void delegate(Color choice) on
|
||||||
} else static if(UsingCustomWidgets) {
|
} else static if(UsingCustomWidgets) {
|
||||||
auto cpd = new ColorPickerDialog(current, onOK, owner);
|
auto cpd = new ColorPickerDialog(current, onOK, owner);
|
||||||
cpd.show();
|
cpd.show();
|
||||||
|
return cpd;
|
||||||
} else static assert(0);
|
} else static assert(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +54,7 @@ class ColorPickerDialog : Dialog {
|
||||||
void delegate(Color) onOK;
|
void delegate(Color) onOK;
|
||||||
|
|
||||||
this(Color current, void delegate(Color) onOK, Window owner) {
|
this(Color current, void delegate(Color) onOK, Window owner) {
|
||||||
super(360, 350, "Color picker");
|
super(360, 460, "Color picker");
|
||||||
|
|
||||||
this.onOK = onOK;
|
this.onOK = onOK;
|
||||||
|
|
||||||
|
@ -79,7 +80,7 @@ class ColorPickerDialog : Dialog {
|
||||||
canUseImage = true;
|
canUseImage = true;
|
||||||
|
|
||||||
if(hslImage is null && canUseImage) {
|
if(hslImage is null && canUseImage) {
|
||||||
auto img = new TrueColorImage(180, 128);
|
auto img = new TrueColorImage(360, 255);
|
||||||
double h = 0.0, s = 1.0, l = 0.5;
|
double h = 0.0, s = 1.0, l = 0.5;
|
||||||
foreach(y; 0 .. img.height) {
|
foreach(y; 0 .. img.height) {
|
||||||
foreach(x; 0 .. img.width) {
|
foreach(x; 0 .. img.width) {
|
||||||
|
@ -99,60 +100,112 @@ class ColorPickerDialog : Dialog {
|
||||||
this() { super(t); }
|
this() { super(t); }
|
||||||
override int minHeight() { return hslImage ? hslImage.height : 4; }
|
override int minHeight() { return hslImage ? hslImage.height : 4; }
|
||||||
override int maxHeight() { return hslImage ? hslImage.height : 4; }
|
override int maxHeight() { return hslImage ? hslImage.height : 4; }
|
||||||
|
override int marginBottom() { return 4; }
|
||||||
override void paint(ScreenPainter painter) {
|
override void paint(ScreenPainter painter) {
|
||||||
if(hslImage)
|
if(hslImage)
|
||||||
hslImage.drawAt(painter, Point(0, 0));
|
hslImage.drawAt(painter, Point(0, 0));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
auto hr = new HorizontalLayout(t);
|
||||||
|
|
||||||
auto vlRgb = new class VerticalLayout {
|
auto vlRgb = new class VerticalLayout {
|
||||||
this() {
|
this() {
|
||||||
super(t);
|
super(hr);
|
||||||
}
|
}
|
||||||
override int maxWidth() { return 150; };
|
override int maxWidth() { return 150; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
auto vlHsl = new class VerticalLayout {
|
||||||
|
this() {
|
||||||
|
super(hr);
|
||||||
|
}
|
||||||
|
override int maxWidth() { return 150; };
|
||||||
|
};
|
||||||
|
|
||||||
|
h = new LabeledLineEdit("Hue:", vlHsl);
|
||||||
|
s = new LabeledLineEdit("Saturation:", vlHsl);
|
||||||
|
l = new LabeledLineEdit("Lightness:", vlHsl);
|
||||||
|
|
||||||
|
css = new LabeledLineEdit("CSS:", vlHsl);
|
||||||
|
|
||||||
r = new LabeledLineEdit("Red:", vlRgb);
|
r = new LabeledLineEdit("Red:", vlRgb);
|
||||||
g = new LabeledLineEdit("Green:", vlRgb);
|
g = new LabeledLineEdit("Green:", vlRgb);
|
||||||
b = new LabeledLineEdit("Blue:", vlRgb);
|
b = new LabeledLineEdit("Blue:", vlRgb);
|
||||||
a = new LabeledLineEdit("Alpha:", vlRgb);
|
a = new LabeledLineEdit("Alpha:", vlRgb);
|
||||||
|
|
||||||
import std.conv;
|
import std.conv;
|
||||||
|
import std.format;
|
||||||
|
|
||||||
r.content = to!string(current.r);
|
void updateCurrent() {
|
||||||
g.content = to!string(current.g);
|
r.content = to!string(current.r);
|
||||||
b.content = to!string(current.b);
|
g.content = to!string(current.g);
|
||||||
a.content = to!string(current.a);
|
b.content = to!string(current.b);
|
||||||
|
a.content = to!string(current.a);
|
||||||
|
|
||||||
|
auto hsl = current.toHsl;
|
||||||
|
|
||||||
|
h.content = format("%0.2f", hsl[0]);
|
||||||
|
s.content = format("%0.2f", hsl[1]);
|
||||||
|
l.content = format("%0.2f", hsl[2]);
|
||||||
|
|
||||||
|
css.content = current.toCssString();
|
||||||
|
}
|
||||||
|
|
||||||
|
updateCurrent();
|
||||||
|
|
||||||
r.addEventListener("focus", &r.selectAll);
|
r.addEventListener("focus", &r.selectAll);
|
||||||
g.addEventListener("focus", &g.selectAll);
|
g.addEventListener("focus", &g.selectAll);
|
||||||
b.addEventListener("focus", &b.selectAll);
|
b.addEventListener("focus", &b.selectAll);
|
||||||
a.addEventListener("focus", &a.selectAll);
|
a.addEventListener("focus", &a.selectAll);
|
||||||
|
|
||||||
|
h.addEventListener("focus", &h.selectAll);
|
||||||
|
s.addEventListener("focus", &s.selectAll);
|
||||||
|
l.addEventListener("focus", &l.selectAll);
|
||||||
|
|
||||||
if(hslImage !is null)
|
css.addEventListener("focus", &css.selectAll);
|
||||||
wid.addEventListener("mousedown", (Event event) {
|
|
||||||
auto h = cast(double) event.clientX / hslImage.width * 360.0;
|
|
||||||
auto s = 1.0 - (cast(double) event.clientY / hslImage.height * 1.0);
|
|
||||||
auto l = 0.5;
|
|
||||||
|
|
||||||
auto color = Color.fromHsl(h, s, l);
|
void convertFromHsl() {
|
||||||
|
|
||||||
r.content = to!string(color.r);
|
|
||||||
g.content = to!string(color.g);
|
|
||||||
b.content = to!string(color.b);
|
|
||||||
a.content = to!string(color.a);
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
Color currentColor() {
|
|
||||||
try {
|
try {
|
||||||
return Color(to!int(r.content), to!int(g.content), to!int(b.content), to!int(a.content));
|
auto c = Color.fromHsl(h.content.to!double, s.content.to!double, l.content.to!double);
|
||||||
|
c.a = a.content.to!ubyte;
|
||||||
|
current = c;
|
||||||
|
updateCurrent();
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
return Color.transparent;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h.addEventListener("change", &convertFromHsl);
|
||||||
|
s.addEventListener("change", &convertFromHsl);
|
||||||
|
l.addEventListener("change", &convertFromHsl);
|
||||||
|
|
||||||
|
css.addEventListener("change", () {
|
||||||
|
current = Color.fromString(css.content);
|
||||||
|
updateCurrent();
|
||||||
|
});
|
||||||
|
|
||||||
|
void helper(Event event) {
|
||||||
|
auto h = cast(double) event.clientX / hslImage.width * 360.0;
|
||||||
|
auto s = 1.0 - (cast(double) event.clientY / hslImage.height * 1.0);
|
||||||
|
auto l = this.l.content.to!double;
|
||||||
|
|
||||||
|
current = Color.fromHsl(h, s, l);
|
||||||
|
current.a = a.content.to!ubyte;
|
||||||
|
|
||||||
|
updateCurrent();
|
||||||
|
|
||||||
|
auto e2 = new Event("change", this);
|
||||||
|
e2.dispatch();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(hslImage !is null)
|
||||||
|
wid.addEventListener("mousedown", &helper);
|
||||||
|
if(hslImage !is null)
|
||||||
|
wid.addEventListener("mousemove", (Event event) {
|
||||||
|
if(event.state & ModifierState.leftButtonDown)
|
||||||
|
helper(event);
|
||||||
|
});
|
||||||
|
|
||||||
this.addEventListener("keydown", (Event event) {
|
this.addEventListener("keydown", (Event event) {
|
||||||
if(event.key == Key.Enter || event.key == Key.PadEnter)
|
if(event.key == Key.Enter || event.key == Key.PadEnter)
|
||||||
OK();
|
OK();
|
||||||
|
@ -205,6 +258,22 @@ class ColorPickerDialog : Dialog {
|
||||||
LabeledLineEdit b;
|
LabeledLineEdit b;
|
||||||
LabeledLineEdit a;
|
LabeledLineEdit a;
|
||||||
|
|
||||||
|
LabeledLineEdit h;
|
||||||
|
LabeledLineEdit s;
|
||||||
|
LabeledLineEdit l;
|
||||||
|
|
||||||
|
LabeledLineEdit css;
|
||||||
|
|
||||||
|
Color currentColor() {
|
||||||
|
import std.conv;
|
||||||
|
try {
|
||||||
|
return Color(to!int(r.content), to!int(g.content), to!int(b.content), to!int(a.content));
|
||||||
|
} catch(Exception e) {
|
||||||
|
return Color.transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
override void OK() {
|
override void OK() {
|
||||||
import std.conv;
|
import std.conv;
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue