This commit is contained in:
Tristan B. Kildaire 2020-10-23 14:20:33 +02:00
parent c4d149782f
commit eb9c72d0e1
1 changed files with 15 additions and 0 deletions

View File

@ -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;