From 6e1938b0893b47f0673bd773bdbfdbf6465ae018 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Fri, 12 Apr 2019 17:43:47 +0200 Subject: Clean up ConversationTitlebar --- main/src/ui/conversation_titlebar/view_csd.vala | 36 ------------------------- 1 file changed, 36 deletions(-) delete mode 100644 main/src/ui/conversation_titlebar/view_csd.vala (limited to 'main/src/ui/conversation_titlebar/view_csd.vala') diff --git a/main/src/ui/conversation_titlebar/view_csd.vala b/main/src/ui/conversation_titlebar/view_csd.vala deleted file mode 100644 index 62360c42..00000000 --- a/main/src/ui/conversation_titlebar/view_csd.vala +++ /dev/null @@ -1,36 +0,0 @@ -using Gtk; -using Gee; - -using Dino.Entities; - -namespace Dino.Ui { - -public class ConversationTitlebarCsd : Gtk.HeaderBar { - - private StreamInteractor stream_interactor; - private Window window; - - public ConversationTitlebarCsd(StreamInteractor stream_interactor, Window window) { - this.stream_interactor = stream_interactor; - this.window = window; - - this.get_style_context().add_class("dino-right"); - show_close_button = true; - hexpand = true; - - Application app = GLib.Application.get_default() as Application; - ArrayList widgets = new ArrayList(); - foreach(var e in app.plugin_registry.conversation_titlebar_entries) { - Plugins.ConversationTitlebarWidget widget = e.get_widget(Plugins.WidgetType.GTK); - if (widget != null) { - widgets.insert(0, widget); - } - } - foreach (var w in widgets) { - Button gtk_widget = (Gtk.Button)w; - this.pack_end(gtk_widget); - } - } -} - -} -- cgit v1.2.3-54-g00ecf