aboutsummaryrefslogtreecommitdiff
path: root/main/src/ui/occupant_menu/list_row.vala
blob: 6b43fe7fed1d99d4d315ebfa413dcf3790ee6abf (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
32
33
34
35
36
37
38
39
40
41
42
using Gtk;

using Dino.Entities;
using Xmpp;

namespace Dino.Ui.OccupantMenu {

public class ListRow : Object {

    private Grid main_grid;
    private AvatarImage image;
    public Label name_label;

    public Conversation? conversation;
    public Jid? jid;

    construct {
        Builder builder = new Builder.from_resource("/im/dino/Dino/occupant_list_item.ui");
        main_grid = (Grid) builder.get_object("main_grid");
        image = (AvatarImage) builder.get_object("image");
        name_label = (Label) builder.get_object("name_label");
    }

    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);
    }

    public Widget get_widget() {
        return main_grid;
    }
}

}