using Gee; using Gtk; using Markup; using Pango; using Dino.Entities; namespace Dino.Ui.ContactDetails { [GtkTemplate (ui = "/im/dino/Dino/contact_details_dialog.ui")] public class Dialog : Gtk.Dialog { [GtkChild] public unowned AvatarImage avatar; [GtkChild] public unowned Util.EntryLabelHybrid name_hybrid; [GtkChild] public unowned Label name_label; [GtkChild] public unowned Label jid_label; [GtkChild] public unowned Label account_label; [GtkChild] public unowned Box main_box; private StreamInteractor stream_interactor; private Conversation conversation; private Plugins.ContactDetails contact_details = new Plugins.ContactDetails(); private HashMap categories = new HashMap(); private Util.LabelHybridGroup hybrid_group = new Util.LabelHybridGroup(); construct { name_hybrid.label.attributes = new AttrList(); name_hybrid.label.attributes.insert(attr_weight_new(Weight.BOLD)); } public Dialog(StreamInteractor stream_interactor, Conversation conversation) { Object(use_header_bar : Util.use_csd() ? 1 : 0); this.stream_interactor = stream_interactor; this.conversation = conversation; title = conversation.type_ == Conversation.Type.GROUPCHAT ? _("Conference Details") : _("Contact Details"); if (Util.use_csd()) { // TODO get_header_bar directly returns a HeaderBar in vala > 0.48 Box titles_box = new Box(Orientation.VERTICAL, 0) { valign=Align.CENTER }; var title_label = new Label(title); title_label.attributes = new AttrList(); title_label.attributes.insert(Pango.attr_weight_new(Weight.BOLD)); titles_box.append(title_label); var subtitle_label = new Label(Util.get_conversation_display_name(stream_interactor, conversation)); subtitle_label.attributes = new AttrList(); subtitle_label.attributes.insert(Pango.attr_scale_new(Pango.Scale.SMALL)); subtitle_label.add_css_class("dim-label"); titles_box.append(subtitle_label); get_header_bar().set_title_widget(titles_box); } setup_top(); contact_details.add.connect(add_entry); Application app = GLib.Application.get_default() as Application; app.plugin_registry.register_contact_details_entry(new SettingsProvider(stream_interactor)); app.plugin_registry.register_contact_details_entry(new BlockingProvider(stream_interactor)); app.plugin_registry.register_contact_details_entry(new MucConfigFormProvider(stream_interactor)); app.plugin_registry.register_contact_details_entry(new PermissionsProvider(stream_interactor)); foreach (Plugins.ContactDetailsProvider provider in app.plugin_registry.contact_details_entries) { provider.populate(conversation, contact_details, Plugins.WidgetType.GTK4); } close_request.connect(() => { contact_details.save(); return false; }); } private void setup_top() { if (conversation.type_ == Conversation.Type.CHAT) { name_label.visible = false; jid_label.margin_start = new Button().get_style_context().get_padding().left + 1; name_hybrid.text = Util.get_conversation_display_name(stream_interactor, conversation); close_request.connect(() => { if (name_hybrid.text != Util.get_conversation_display_name(stream_interactor, conversation)) { stream_interactor.get_module(RosterManager.IDENTITY).set_jid_handle(conversation.account, conversation.counterpart, name_hybrid.text); } return false; }); } else { name_hybrid.visible = false; name_label.label = Util.get_conversation_display_name(stream_interactor, conversation); } jid_label.label = conversation.counterpart.to_string(); account_label.label = "via " + conversation.account.bare_jid.to_string(); avatar.set_conversation(stream_interactor, conversation); } private void add_entry(string category, string label, string? description, Object wo) { if (!(wo is Widget)) return; Widget w = (Widget) wo; add_category(category); ListBoxRow list_row = new ListBoxRow() { activatable=false }; Box row = new Box(Orientation.HORIZONTAL, 20) { margin_start=15, margin_end=15, margin_top=3, margin_bottom=3 }; list_row.set_child(row); Label label_label = new Label(label) { xalign=0, yalign=0.5f, hexpand=true }; if (description != null && description != "") { Box box = new Box(Orientation.VERTICAL, 0); box.append(label_label); Label desc_label = new Label("") { xalign=0, yalign=0.5f, hexpand=true }; desc_label.set_markup("%s".printf(Markup.escape_text(description))); desc_label.add_css_class("dim-label"); box.append(desc_label); row.append(box); } else { row.append(label_label); } Widget widget = w; if (widget.get_type().is_a(typeof(Entry))) { Util.EntryLabelHybrid hybrid = new Util.EntryLabelHybrid.wrap(widget as Entry) { xalign=1 }; hybrid_group.add(hybrid); widget = hybrid; } else if (widget.get_type().is_a(typeof(ComboBoxText))) { Util.ComboBoxTextLabelHybrid hybrid = new Util.ComboBoxTextLabelHybrid.wrap(widget as ComboBoxText) { xalign=1 }; hybrid_group.add(hybrid); widget = hybrid; } widget.margin_bottom = 5; widget.margin_top = 5; row.append(widget); categories[category].append(list_row); int width = get_content_area().get_width(); int pref_height, pref_width; get_content_area().measure(Orientation.VERTICAL, width, null, out pref_height, null, null); default_height = pref_height + 48; } private void add_category(string category) { if (!categories.has_key(category)) { ListBox list_box = new ListBox() { selection_mode=SelectionMode.NONE }; categories[category] = list_box; list_box.set_header_func((row, before_row) => { if (row.get_header() == null && before_row != null) { row.set_header(new Separator(Orientation.HORIZONTAL)); } }); Box box = new Box(Orientation.VERTICAL, 5) { margin_top=12, margin_bottom=12 }; Label category_label = new Label("") { xalign=0 }; category_label.set_markup(@"$(Markup.escape_text(category))"); box.append(category_label); Frame frame = new Frame(null); frame.set_child(list_box); box.append(frame); main_box.append(box); } } } }