From 28c44380ba89e51c5aeac01ca9549633fbeb7e11 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Fri, 21 Feb 2020 02:11:23 +0100 Subject: Move ConversationContentView+ChatInput into ConversationView, handle drag'n'drop on ConversationView level --- main/src/ui/conversation_view.vala | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 main/src/ui/conversation_view.vala (limited to 'main/src/ui/conversation_view.vala') diff --git a/main/src/ui/conversation_view.vala b/main/src/ui/conversation_view.vala new file mode 100644 index 00000000..b521b5ad --- /dev/null +++ b/main/src/ui/conversation_view.vala @@ -0,0 +1,19 @@ +using Gee; +using Gdk; +using Gtk; + +using Dino.Entities; + +namespace Dino.Ui { + +[GtkTemplate (ui = "/im/dino/Dino/conversation_view.ui")] +public class ConversationView : Gtk.Box { + + [GtkChild] public Revealer goto_end_revealer; + [GtkChild] public Button goto_end_button; + [GtkChild] public ChatInput.View chat_input; + [GtkChild] public ConversationSummary.ConversationView conversation_frame; + +} + +} -- cgit v1.2.3-54-g00ecf