diff options
author | fiaxh <git@lightrise.org> | 2020-02-21 02:11:23 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-02-22 02:58:36 +0100 |
commit | 28c44380ba89e51c5aeac01ca9549633fbeb7e11 (patch) | |
tree | 8172f1d6c3bcd2450082fa8fa1fb76e9a214cfc5 /main/src/ui/conversation_view.vala | |
parent | a7e92960a3f4d31cfb2fbe2e3ba4941cf3b8faf2 (diff) | |
download | dino-28c44380ba89e51c5aeac01ca9549633fbeb7e11.tar.gz dino-28c44380ba89e51c5aeac01ca9549633fbeb7e11.zip |
Move ConversationContentView+ChatInput into ConversationView, handle drag'n'drop on ConversationView level
Diffstat (limited to 'main/src/ui/conversation_view.vala')
-rw-r--r-- | main/src/ui/conversation_view.vala | 19 |
1 files changed, 19 insertions, 0 deletions
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; + +} + +} |