mirror of https://github.com/adamdruppe/arsd.git
fix the layout thing AGAIN
This commit is contained in:
parent
7f4bbbeb2c
commit
74b6b43639
60
minigui.d
60
minigui.d
|
@ -1706,6 +1706,10 @@ interface HasListOfValues!T : HasValue!T {
|
||||||
}
|
}
|
||||||
+/
|
+/
|
||||||
|
|
||||||
|
/++
|
||||||
|
History:
|
||||||
|
Added September 2021 (dub v10.4)
|
||||||
|
+/
|
||||||
class GridLayout : Layout {
|
class GridLayout : Layout {
|
||||||
|
|
||||||
// FIXME: grid padding around edges and also cell spacing between units. even though you could do that by just specifying some gutter yourself in the layout.
|
// FIXME: grid padding around edges and also cell spacing between units. even though you could do that by just specifying some gutter yourself in the layout.
|
||||||
|
@ -1739,7 +1743,7 @@ class GridLayout : Layout {
|
||||||
|
|
||||||
The units of these arguments are in the proportional grid units you set in the constructor.
|
The units of these arguments are in the proportional grid units you set in the constructor.
|
||||||
+/
|
+/
|
||||||
Widget setChildPosition(Widget child, int x, int y, int width, int height, Gravity gravity = Gravity.Center) {
|
Widget setChildPosition(return Widget child, int x, int y, int width, int height, Gravity gravity = Gravity.Center) {
|
||||||
// ensure it is in bounds
|
// ensure it is in bounds
|
||||||
// then ensure no overlaps
|
// then ensure no overlaps
|
||||||
|
|
||||||
|
@ -1777,8 +1781,10 @@ class GridLayout : Layout {
|
||||||
|
|
||||||
override void recomputeChildLayout() {
|
override void recomputeChildLayout() {
|
||||||
registerMovement();
|
registerMovement();
|
||||||
|
int onGrid = cast(int) positions.length;
|
||||||
c: foreach(child; children) {
|
c: foreach(child; children) {
|
||||||
// just snap it to the grid
|
// just snap it to the grid
|
||||||
|
if(onGrid)
|
||||||
foreach(position; positions)
|
foreach(position; positions)
|
||||||
if(position.widget is child) {
|
if(position.widget is child) {
|
||||||
child.x = this.width * position.x / this.gridWidth;
|
child.x = this.width * position.x / this.gridWidth;
|
||||||
|
@ -1816,9 +1822,10 @@ class GridLayout : Layout {
|
||||||
|
|
||||||
|
|
||||||
child.recomputeChildLayout();
|
child.recomputeChildLayout();
|
||||||
|
onGrid--;
|
||||||
continue c;
|
continue c;
|
||||||
}
|
}
|
||||||
//assert(0);
|
// the position isn't given on the grid array, we'll just fill in from where the explicit ones left off.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1851,15 +1858,15 @@ abstract class ComboboxBase : Widget {
|
||||||
|
|
||||||
addEventListener((KeyDownEvent event) {
|
addEventListener((KeyDownEvent event) {
|
||||||
if(event.key == Key.Up) {
|
if(event.key == Key.Up) {
|
||||||
if(selection > -1) { // -1 means select blank
|
if(selection_ > -1) { // -1 means select blank
|
||||||
selection--;
|
selection_--;
|
||||||
fireChangeEvent();
|
fireChangeEvent();
|
||||||
}
|
}
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
}
|
||||||
if(event.key == Key.Down) {
|
if(event.key == Key.Down) {
|
||||||
if(selection + 1 < options.length) {
|
if(selection_ + 1 < options.length) {
|
||||||
selection++;
|
selection_++;
|
||||||
fireChangeEvent();
|
fireChangeEvent();
|
||||||
}
|
}
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
@ -1871,7 +1878,7 @@ abstract class ComboboxBase : Widget {
|
||||||
else static assert(false);
|
else static assert(false);
|
||||||
|
|
||||||
private string[] options;
|
private string[] options;
|
||||||
private int selection = -1;
|
private int selection_ = -1;
|
||||||
|
|
||||||
void addOption(string s) {
|
void addOption(string s) {
|
||||||
options ~= s;
|
options ~= s;
|
||||||
|
@ -1879,12 +1886,16 @@ abstract class ComboboxBase : Widget {
|
||||||
SendMessageW(hwnd, 323 /*CB_ADDSTRING*/, 0, cast(LPARAM) toWstringzInternal(s));
|
SendMessageW(hwnd, 323 /*CB_ADDSTRING*/, 0, cast(LPARAM) toWstringzInternal(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int getSelection() {
|
||||||
|
return selection_;
|
||||||
|
}
|
||||||
|
|
||||||
void setSelection(int idx) {
|
void setSelection(int idx) {
|
||||||
selection = idx;
|
selection_ = idx;
|
||||||
version(win32_widgets)
|
version(win32_widgets)
|
||||||
SendMessageW(hwnd, 334 /*CB_SETCURSEL*/, idx, 0);
|
SendMessageW(hwnd, 334 /*CB_SETCURSEL*/, idx, 0);
|
||||||
|
|
||||||
auto t = new SelectionChangedEvent(this, selection, selection == -1 ? null : options[selection]);
|
auto t = new SelectionChangedEvent(this, selection_, selection_ == -1 ? null : options[selection_]);
|
||||||
t.dispatch();
|
t.dispatch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1904,16 +1915,16 @@ abstract class ComboboxBase : Widget {
|
||||||
version(win32_widgets)
|
version(win32_widgets)
|
||||||
override void handleWmCommand(ushort cmd, ushort id) {
|
override void handleWmCommand(ushort cmd, ushort id) {
|
||||||
if(cmd == CBN_SELCHANGE) {
|
if(cmd == CBN_SELCHANGE) {
|
||||||
selection = cast(int) SendMessageW(hwnd, 327 /* CB_GETCURSEL */, 0, 0);
|
selection_ = cast(int) SendMessageW(hwnd, 327 /* CB_GETCURSEL */, 0, 0);
|
||||||
fireChangeEvent();
|
fireChangeEvent();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void fireChangeEvent() {
|
private void fireChangeEvent() {
|
||||||
if(selection >= options.length)
|
if(selection_ >= options.length)
|
||||||
selection = -1;
|
selection_ = -1;
|
||||||
|
|
||||||
auto t = new SelectionChangedEvent(this, selection, selection == -1 ? null : options[selection]);
|
auto t = new SelectionChangedEvent(this, selection_, selection_ == -1 ? null : options[selection_]);
|
||||||
t.dispatch();
|
t.dispatch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1960,7 +1971,7 @@ abstract class ComboboxBase : Widget {
|
||||||
dropDown.close();
|
dropDown.close();
|
||||||
auto element = (event.y - 4) / Window.lineHeight;
|
auto element = (event.y - 4) / Window.lineHeight;
|
||||||
if(element >= 0 && element <= options.length) {
|
if(element >= 0 && element <= options.length) {
|
||||||
selection = element;
|
selection_ = element;
|
||||||
|
|
||||||
fireChangeEvent();
|
fireChangeEvent();
|
||||||
}
|
}
|
||||||
|
@ -2015,7 +2026,7 @@ class DropDownSelection : ComboboxBase {
|
||||||
override Rectangle paintContent(WidgetPainter painter, const Rectangle bounds) {
|
override Rectangle paintContent(WidgetPainter painter, const Rectangle bounds) {
|
||||||
auto cs = getComputedStyle();
|
auto cs = getComputedStyle();
|
||||||
|
|
||||||
painter.drawText(bounds.upperLeft, selection == -1 ? "" : options[selection]);
|
painter.drawText(bounds.upperLeft, selection_ == -1 ? "" : options[selection_]);
|
||||||
|
|
||||||
painter.outlineColor = cs.foregroundColor;
|
painter.outlineColor = cs.foregroundColor;
|
||||||
painter.fillColor = cs.foregroundColor;
|
painter.fillColor = cs.foregroundColor;
|
||||||
|
@ -2117,9 +2128,9 @@ class ComboBox : ComboboxBase {
|
||||||
this.addEventListener("focus", &lineEdit.focus);
|
this.addEventListener("focus", &lineEdit.focus);
|
||||||
|
|
||||||
addDirectEventListener(EventType.change, {
|
addDirectEventListener(EventType.change, {
|
||||||
listWidget.setSelection(selection);
|
listWidget.setSelection(selection_);
|
||||||
if(selection != -1)
|
if(selection_ != -1)
|
||||||
lineEdit.content = options[selection];
|
lineEdit.content = options[selection_];
|
||||||
lineEdit.focus();
|
lineEdit.focus();
|
||||||
redraw();
|
redraw();
|
||||||
});
|
});
|
||||||
|
@ -2133,7 +2144,7 @@ class ComboBox : ComboboxBase {
|
||||||
set = cast(int) idx;
|
set = cast(int) idx;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if(set != selection)
|
if(set != selection_)
|
||||||
this.setSelection(set);
|
this.setSelection(set);
|
||||||
});
|
});
|
||||||
} else static assert(false);
|
} else static assert(false);
|
||||||
|
@ -2603,7 +2614,7 @@ void recomputeChildLayout(string relevantMeasure)(Widget parent) {
|
||||||
|
|
||||||
if(iw > 0) {
|
if(iw > 0) {
|
||||||
auto totalPossible = child.width;
|
auto totalPossible = child.width;
|
||||||
if(child.width > iw)
|
if(child.width > iw && child.widthStretchiness() == 0)
|
||||||
child.width = iw;
|
child.width = iw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2625,7 +2636,7 @@ void recomputeChildLayout(string relevantMeasure)(Widget parent) {
|
||||||
// and if possible, respect the ideal target
|
// and if possible, respect the ideal target
|
||||||
if(ih > 0) {
|
if(ih > 0) {
|
||||||
auto totalPossible = child.height;
|
auto totalPossible = child.height;
|
||||||
if(child.height > ih)
|
if(child.height > ih && child.heightStretchiness() == 0)
|
||||||
child.height = ih;
|
child.height = ih;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2657,6 +2668,8 @@ void recomputeChildLayout(string relevantMeasure)(Widget parent) {
|
||||||
auto removalPerItem = toRemove * shrinkinessSum / shrinkyChildSum;
|
auto removalPerItem = toRemove * shrinkinessSum / shrinkyChildSum;
|
||||||
auto remainder = toRemove * shrinkinessSum % shrinkyChildSum;
|
auto remainder = toRemove * shrinkinessSum % shrinkyChildSum;
|
||||||
|
|
||||||
|
// FIXME: wtf why am i shrinking things with no shrinkiness?
|
||||||
|
|
||||||
foreach(child; parent.children) {
|
foreach(child; parent.children) {
|
||||||
auto childStyle = child.getComputedStyle();
|
auto childStyle = child.getComputedStyle();
|
||||||
if(cast(StaticPosition) child)
|
if(cast(StaticPosition) child)
|
||||||
|
@ -2673,12 +2686,10 @@ void recomputeChildLayout(string relevantMeasure)(Widget parent) {
|
||||||
|
|
||||||
spaceRemaining += removalPerItem + remainder;
|
spaceRemaining += removalPerItem + remainder;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// stretch to fill space
|
// stretch to fill space
|
||||||
while(spaceRemaining > 0 && stretchinessSum && stretchyChildSum) {
|
while(spaceRemaining > 0 && stretchinessSum && stretchyChildSum) {
|
||||||
//import std.stdio; writeln("str ", stretchinessSum);
|
|
||||||
auto spacePerChild = spaceRemaining / stretchinessSum;
|
auto spacePerChild = spaceRemaining / stretchinessSum;
|
||||||
bool spreadEvenly;
|
bool spreadEvenly;
|
||||||
bool giveToBiggest;
|
bool giveToBiggest;
|
||||||
|
@ -2751,6 +2762,7 @@ void recomputeChildLayout(string relevantMeasure)(Widget parent) {
|
||||||
|
|
||||||
if(spaceRemaining == previousSpaceRemaining)
|
if(spaceRemaining == previousSpaceRemaining)
|
||||||
break; // apparently nothing more we can do
|
break; // apparently nothing more we can do
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// position
|
// position
|
||||||
|
@ -6154,7 +6166,7 @@ class CollapsableSidebar : Widget {
|
||||||
|
|
||||||
/// Stacks the widgets vertically, taking all the available width for each child.
|
/// Stacks the widgets vertically, taking all the available width for each child.
|
||||||
class VerticalLayout : Layout {
|
class VerticalLayout : Layout {
|
||||||
// intentionally blank - widget's default is vertical layout right now
|
// most of this is intentionally blank - widget's default is vertical layout right now
|
||||||
///
|
///
|
||||||
this(Widget parent) { super(parent); }
|
this(Widget parent) { super(parent); }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue