blob: a71cf05eed29d907c6e3260de291bc0ed81d04fe (
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
43
44
45
|
using Gtk;
using Dino.Entities;
namespace Dino.Ui {
class OccupantsEntry : Plugins.ConversationTitlebarEntry, Object {
public string id { get { return "occupants"; } }
public double order { get { return 3; } }
StreamInteractor stream_interactor;
private Conversation? conversation;
private MenuButton button = new MenuButton() { icon_name="system-users-symbolic", tooltip_text=Util.string_if_tooltips_active(_("Members")) };
private OccupantMenu.View menu = null;
public OccupantsEntry(StreamInteractor stream_interactor) {
this.stream_interactor = stream_interactor;
}
public new void set_conversation(Conversation conversation) {
this.conversation = conversation;
if (conversation.type_ == Conversation.Type.GROUPCHAT) {
button.visible = true;
OccupantMenu.View new_menu = new OccupantMenu.View(stream_interactor, conversation);
button.set_popover(new_menu);
menu = new_menu;
} else {
button.visible = false;
}
}
public new void unset_conversation() {
button.visible = false;
}
public Object? get_widget(Plugins.WidgetType type) {
if (type != Plugins.WidgetType.GTK4) return null;
return button;
}
}
}
|