Compare commits

...

7 Commits

Author SHA1 Message Date
Anton P 8614a7cbcc
Propagate mouse events to ListWidget children (#694) 2024-12-08 13:48:57 +03:00
Anton P 12c6ade461
Fix truncated description (#693) 2024-12-08 13:48:07 +03:00
Anton Pastukhov 986c1fc106 Remove redundant try/catch 2024-11-26 23:32:15 +03:00
Anton Pastukhov a22f2aabd0 Return null instead of throwing of Widget.child does not exist 2024-11-26 23:32:15 +03:00
Anton Pastukhov 3c38f32e79 Uncomment itemWidget.OnMouseEvent processing 2024-11-10 18:50:51 +03:00
Grim 7af4c4f2a3 Bump arsd version 2024-10-15 20:09:07 +03:00
Grim 98f98c64fc OpenD-related fixes 2024-10-14 23:49:34 +03:00
8 changed files with 27 additions and 17 deletions

View File

@ -34,8 +34,8 @@
"dependencies": { "dependencies": {
"inilike": "~>1.2.2", "inilike": "~>1.2.2",
"icontheme": "~>1.2.3", "icontheme": "~>1.2.3",
"arsd-official:dom": "<11.0.0", "arsd-official:dom": "~>11.5.3",
"arsd-official:image_files": "<11.0.0" "arsd-official:image_files": "~>11.5.3"
}, },
"subPackages": [ "subPackages": [

View File

@ -42,7 +42,7 @@ module dlangui.core.collections;
import std.algorithm; import std.algorithm;
/** /**
Array based collection of items. Array based collection of items.
Retains item order when during add/remove operations. Retains item order when during add/remove operations.
@ -62,10 +62,10 @@ struct Collection(T, bool ownItems = false) {
@property void size(size_t newSize) { @property void size(size_t newSize) {
if (_len > newSize) if (_len > newSize)
length = newSize; // shrink length = newSize; // shrink
_items.length = newSize; _items.length = newSize;
} }
/// returns number of items in collection /// returns number of items in collection
@property void length(size_t newSize) { @property void length(size_t newSize) {
if (newSize < _len) { if (newSize < _len) {
// shrink // shrink
static if (is(T == class) || is(T == struct)) { static if (is(T == class) || is(T == struct)) {
@ -248,6 +248,13 @@ struct ObjectList(T) {
assert(index >= 0 && index < _count, "child index out of range"); assert(index >= 0 && index < _count, "child index out of range");
return _list[index]; return _list[index];
} }
/// get item by index. Returns null if item not found
inout(T) tryGet(int index) @safe inout {
if (index < 0 || index >= _count) {
return null;
}
return _list[index];
}
/// get item by index /// get item by index
T opIndex(int index) @safe { T opIndex(int index) @safe {
return get(index); return get(index);

View File

@ -101,7 +101,7 @@ class ParserException : Exception {
/// simple tokenizer for DlangUI ML /// simple tokenizer for DlangUI ML
class Tokenizer { class Tokenizer {
protected string[] _singleLineCommentPrefixes = ["//"]; protected string[] _singleLineCommentPrefixes;
protected LineStream _lines; protected LineStream _lines;
protected dchar[] _lineText; protected dchar[] _lineText;
protected ushort _line; protected ushort _line;

View File

@ -415,7 +415,7 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction
} }
/// Characters at which content is split for word wrap mode /// Characters at which content is split for word wrap mode
dchar[] splitChars = [' ', '-', '\t']; immutable dchar[] splitChars = [' ', '-', '\t'];
/// Divides up a string for word wrapping, sets info in _span /// Divides up a string for word wrapping, sets info in _span
dstring[] wrapLine(dstring str, int lineNumber) { dstring[] wrapLine(dstring str, int lineNumber) {
@ -465,7 +465,7 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction
} }
/// Divide (and conquer) text into words /// Divide (and conquer) text into words
dstring[] explode(dstring str, dchar[] splitChars) dstring[] explode(dstring str, const(dchar)[] splitChars)
{ {
dstring[] parts; dstring[] parts;
int startIndex = 0; int startIndex = 0;

View File

@ -572,7 +572,7 @@ interface OnItemClickHandler {
} }
/** List widget - shows content as hori*/ /** List widget - shows content as horizontal or vertical list */
class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler { class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler {
/** Handle selection change. */ /** Handle selection change. */
@ -1349,7 +1349,8 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler {
itemrc.right += rc.left - scrollOffset.x; itemrc.right += rc.left - scrollOffset.x;
itemrc.top += rc.top - scrollOffset.y; itemrc.top += rc.top - scrollOffset.y;
itemrc.bottom += rc.top - scrollOffset.y; itemrc.bottom += rc.top - scrollOffset.y;
if (itemrc.isPointInside(Point(event.x, event.y))) { auto point = Point(event.x, event.y);
if (itemrc.isPointInside(point)) {
if (_adapter && _adapter.wantMouseEvents) { if (_adapter && _adapter.wantMouseEvents) {
auto itemWidget = _adapter.itemWidget(i); auto itemWidget = _adapter.itemWidget(i);
if (itemWidget) { if (itemWidget) {
@ -1358,7 +1359,13 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler {
if (event.action == MouseAction.Move && event.noModifiers && itemWidget.hasTooltip) { if (event.action == MouseAction.Move && event.noModifiers && itemWidget.hasTooltip) {
itemWidget.scheduleTooltip(200); itemWidget.scheduleTooltip(200);
} }
//itemWidget.onMouseEvent(event); foreach (j; 0 .. itemWidget.childCount) {
auto child = itemWidget.child(j);
if (child.isPointInside(point)) {
child.onMouseEvent(event);
}
}
itemWidget.onMouseEvent(event);
itemWidget.parent = oldParent; itemWidget.parent = oldParent;
} }
} }

View File

@ -1674,10 +1674,6 @@ bool loadTheme(Theme theme, XmlDocument doc, int level = 0) {
foreach(styleitem; doc.root.childNodes) { foreach(styleitem; doc.root.childNodes) {
if (styleitem.tagName.equal("style")) { if (styleitem.tagName.equal("style")) {
// load <style> // load <style>
if(styleitem.children.length > 0)
{
styleitem.innerHTML(styleitem.children[0].nodeValue, true); // HACK by adr
}
string styleid = attrValue(styleitem, "id"); string styleid = attrValue(styleitem, "id");
string styleparent = attrValue(styleitem, "parent"); string styleparent = attrValue(styleitem, "parent");
if (styleid.length) { if (styleid.length) {

View File

@ -279,7 +279,7 @@ class TreeItem {
/// returns number of children of this widget /// returns number of children of this widget
@property int childCount() { return _children.count; } @property int childCount() { return _children.count; }
/// returns child by index /// returns child by index
TreeItem child(int index) { return _children.get(index); } TreeItem child(int index) { return _children.tryGet(index); }
/// adds child, returns added item /// adds child, returns added item
TreeItem addChild(TreeItem item, int index = -1) { TreeItem addChild(TreeItem item, int index = -1) {
TreeItem res = _children.insert(item, index).parent(this).level(_level + 1); TreeItem res = _children.insert(item, index).parent(this).level(_level + 1);

View File

@ -1821,7 +1821,7 @@ class WidgetGroup : Widget {
/// returns number of children of this widget /// returns number of children of this widget
@property override int childCount() const { return _children.count; } @property override int childCount() const { return _children.count; }
/// returns child by index /// returns child by index
override inout(Widget) child(int index) inout { return _children.get(index); } override inout(Widget) child(int index) inout { return _children.tryGet(index); }
/// adds child, returns added item /// adds child, returns added item
override Widget addChild(Widget item) { return _children.add(item).parent(this); } override Widget addChild(Widget item) { return _children.add(item).parent(this); }
/// inserts child at given index, returns inserted item /// inserts child at given index, returns inserted item