some bug fixes

This commit is contained in:
Adam D. Ruppe 2024-07-30 15:34:22 -04:00
parent 454317cdc2
commit 23d39b22d4
3 changed files with 8 additions and 9 deletions

2
core.d
View File

@ -86,7 +86,7 @@ version(ArsdUseCustomRuntime)
}
else
{
version(DigitalMars) {
version(OSX) version(DigitalMars) {
version=OSXCocoa;
}

View File

@ -9429,7 +9429,7 @@ private class TableViewWidgetInner : Widget {
}
if(column.width != 0) // no point drawing an invisible column
tvw.getData(row, cast(int) columnNumber, (in char[] info) {
// auto clip = painter.setClipRectangle(
auto clip = painter.setClipRectangle(Rectangle(Point(startX - smw.position.x, y), Point(endX - smw.position.x, y + lh)));
void dotext(WidgetPainter painter) {
painter.drawText(Point(startX - smw.position.x, y), info, Point(endX - smw.position.x, y + lh), column.alignment);
@ -9473,6 +9473,10 @@ private class TableViewWidgetInner : Widget {
mixin OverrideStyle!Style;
private static class HeaderWidget : Widget {
/+
maybe i should do a splitter thing on top of the other widgets
so the splitter itself isn't really drawn but still replies to mouse events?
+/
this(TableViewWidgetInner tvw, Widget parent) {
super(parent);
this.tvw = tvw;

View File

@ -1200,13 +1200,8 @@ void main() {
/*
Copyright: Adam D. Ruppe, 2009 - 2011
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
Copyright: Adam D. Ruppe, 2009 - 2024
License: GPL (erroneously started to be Boost in 2011)
Authors: Adam D. Ruppe, with contributions from Nick Sabalausky
Copyright Adam D. Ruppe 2009 - 2011.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/