blob: e0fb3f145b900637654bdf3baa0aeb0cf8e91ad7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using Gtk;
using Dino.Entities;
using Xmpp;
namespace Dino.Ui.OccupantMenu {
[GtkTemplate (ui = "/im/dino/Dino/occupant_list_item.ui")]
public class ListRow : ListBoxRow {
[GtkChild] private unowned AvatarImage image;
[GtkChild] public unowned Label name_label;
public Conversation? conversation;
public Jid? jid;
public ListRow(StreamInteractor stream_interactor, Conversation conversation, Jid jid) {
this.conversation = conversation;
this.jid = jid;
name_label.label = Util.get_participant_display_name(stream_interactor, conversation, jid);
image.set_conversation_participant(stream_interactor, conversation, jid);
}
public ListRow.label(string c, string text) {
name_label.label = text;
image.set_text(c);
}
}
}
|