diff options
author | fiaxh <git@lightrise.org> | 2020-03-21 20:53:10 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2020-03-21 20:53:10 +0100 |
commit | 42ae68eb40b27e3ce72fdcd2faec3bcd400ce7b6 (patch) | |
tree | e6710e2863d4946d6b76e8211517b0b58b8f8635 /main/data | |
parent | d55f6691c68757d2c8f7a361c20ace8dac61da5c (diff) | |
download | dino-42ae68eb40b27e3ce72fdcd2faec3bcd400ce7b6.tar.gz dino-42ae68eb40b27e3ce72fdcd2faec3bcd400ce7b6.zip |
Move message hover effect into converstion view
Diffstat (limited to 'main/data')
-rw-r--r-- | main/data/conversation_content_view/view.ui | 50 |
1 files changed, 42 insertions, 8 deletions
diff --git a/main/data/conversation_content_view/view.ui b/main/data/conversation_content_view/view.ui index 51133890..fc7132aa 100644 --- a/main/data/conversation_content_view/view.ui +++ b/main/data/conversation_content_view/view.ui @@ -18,15 +18,49 @@ <property name="expand">True</property> <property name="visible">True</property> <child> - <object class="GtkBox"> - <property name="orientation">vertical</property> + <object class="GtkEventBox" id="main_wrap_event_box"> + <property name="valign">end</property> <property name="visible">True</property> - <child> - <object class="GtkBox" id="main"> - <property name="margin-bottom">15</property> - <property name="expand">False</property> - <property name="orientation">vertical</property> - <property name="visible">True</property> + <child> + <object class="GtkOverlay"> + <property name="visible">True</property> + <child> + <object class="GtkEventBox" id="main_event_box"> + <property name="visible">True</property> + <child> + <object class="GtkBox" id="main"> + <property name="margin-bottom">15</property> + <property name="expand">False</property> + <property name="orientation">vertical</property> + <property name="visible">True</property> + </object> + </child> + </object> + </child> + <child type="overlay"> + <object class="GtkBox" id="message_menu_box"> + <property name="margin-right">10</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="halign">end</property> + <property name="valign">start</property> + <child> + <object class="GtkMenuButton" id="emoji_button"> + <property name="vexpand">False</property> + <property name="halign">end</property> + <property name="valign">end</property> + <property name="visible">True</property> + <child> + <object class="GtkImage"> + <property name="icon-name">dino-emoticon-add-symbolic</property> + <property name="icon-size">1</property> + <property name="visible">True</property> + </object> + </child> + </object> + </child> + </object> + </child> </object> </child> </object> |