From eb9c72d0e15afc7bcf60dea5ad5781bb77a9a93b Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 23 Oct 2020 14:20:33 +0200 Subject: [PATCH] Todo --- source/Channel.d | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/Channel.d b/source/Channel.d index ce608c2..abac19a 100644 --- a/source/Channel.d +++ b/source/Channel.d @@ -183,6 +183,21 @@ public final class Channel } + private Box getUserListItem(string username) + { + /* This is an item for a username in this Channel's user list */ + Box box = new Box(GtkOrientation.HORIZONTAL, 1); + + + import gtk.IconView; + IconView icon = new IconView(); + import gtk.StatusIcon; + StatusIcon d = new StatusIcon("user-available"); + + return box; + } + + // private bool userLabelPopup(Widget) // { // import std.stdio;