blob: 39aeaf0dc6ce07c34f10af94508a02fdb905494b [file] [log] [blame]
Stepan Salenikovichd2cad062016-01-08 13:43:49 -05001<?xml version="1.0" encoding="UTF-8"?>
2<interface>
3 <requires lib="gtk+" version="3.10"/>
4 <template class="ChatView" parent="GtkBox">
5 <property name="orientation">vertical</property>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -05006
7 <!-- chat info (only show for out of call conversations) -->
8 <child>
9 <object class="GtkBox" id="hbox_chat_info">
10 <property name="visible">False</property>
11 <property name="no-show-all">True</property>
12 <property name="orientation">horizontal</property>
13 <property name="spacing">5</property>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -050014 <child>
Stepan Salenikovich8043a562016-03-18 13:56:40 -040015 <object class="GtkButton" id="button_close_chatview">
16 <property name="image">image_back_arrow</property>
17 <property name="visible">True</property>
Stepan Salenikovich7082adf2016-05-04 10:00:28 -040018 <property name="relief">none</property>
Stepan Salenikovich8043a562016-03-18 13:56:40 -040019 <property name="tooltip-text" translatable="yes">Hide chat view</property>
20 <child internal-child="accessible">
21 <object class="AtkObject" id="button_close_chatview-atkobject">
22 <property name="AtkObject::accessible-name" translatable="yes">Hide chat view</property>
23 </object>
24 </child>
25 </object>
26 </child>
27 <child>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -050028 <object class="GtkLabel" id="label_peer">
29 <property name="visible">True</property>
30 <property name="selectable">True</property>
31 <property name="ellipsize">end</property>
32 <attributes>
33 <attribute name="weight" value="bold"/>
34 </attributes>
35 </object>
36 <packing>
37 <property name="expand">False</property>
38 <property name="fill">True</property>
39 </packing>
40 </child>
41 <child>
Stepan Salenikoviche9933242016-06-21 18:08:48 -040042 <object class="GtkButton" id="button_placecall">
43 <property name="visible">True</property>
44 <property name="image">image_place_call</property>
45 <property name="tooltip-text" translatable="yes">Place call</property>
46 <child internal-child="accessible">
47 <object class="AtkObject" id="button_placecall-atkobject">
48 <property name="AtkObject::accessible-name" translatable="yes">Place call</property>
49 </object>
50 </child>
51 </object>
52 <packing>
53 <property name="pack-type">end</property>
54 </packing>
55 </child>
56 <child>
Nicolas Jager759faea2017-03-22 16:22:00 -040057 <object class="GtkButton" id="button_send_invitation">
58 <property name="visible">True</property>
AmarOkb4253242017-07-13 11:21:39 -040059 <property name="image">image_invite</property>
Nicolas Jager759faea2017-03-22 16:22:00 -040060 <property name="tooltip-text" translatable="yes">Send invitation</property>
61 </object>
62 <packing>
63 <property name="pack-type">end</property>
64 </packing>
65 </child>
66 <child>
AmarOkcba03952017-07-17 10:13:49 -040067 <object class="GtkLabel" id="label_cm">
68 <property name="visible">True</property>
69 <property name="selectable">True</property>
70 <property name="ellipsize">end</property>
71 <attributes>
72 <attribute name="weight" value="bold"/>
73 </attributes>
74 </object>
75 <packing>
76 <property name="pack-type">end</property>
77 </packing>
78 </child>
79 <child>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -050080 <object class="GtkComboBox" id="combobox_cm">
Stepan Salenikovichbbfa4402016-05-04 15:07:29 -040081 <property name="visible">True</property>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -050082 <property name="popup-fixed-width">False</property>
83 </object>
84 <packing>
85 <property name="expand">False</property>
86 <property name="fill">True</property>
87 <property name="pack-type">end</property>
88 </packing>
89 </child>
90 </object>
91 <packing>
92 <property name="expand">False</property>
93 <property name="fill">True</property>
94 </packing>
95 </child>
96 <!-- end of chat info -->
97
Stepan Salenikovichd2cad062016-01-08 13:43:49 -050098 <!-- start of chat text view -->
99 <child>
100 <object class="GtkScrolledWindow" id="scrolledwindow_chat">
101 <property name="visible">True</property>
Stepan Salenikovichdaf3cb32016-10-12 16:39:42 -0400102 <property name="min-content-height">100</property>
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500103 <child>
aviau039001d2016-09-29 16:39:05 -0400104 <object class="GtkBox" id="box_webkit_chat_container">
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500105 <property name="visible">True</property>
aviau039001d2016-09-29 16:39:05 -0400106 <property name="hexpand">True</property>
107 <property name="vexpand">True</property>
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500108 </object>
109 </child>
110 </object>
111 <packing>
112 <property name="expand">True</property>
113 <property name="fill">True</property>
114 </packing>
115 </child>
116 <!-- end of chat text view -->
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -0500117
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500118 </template>
Stepan Salenikovich8043a562016-03-18 13:56:40 -0400119
120 <object class="GtkImage" id="image_back_arrow">
121 <property name="visible">True</property>
122 <property name="icon-name">go-previous-symbolic</property>
123 </object>
AmarOkb4253242017-07-13 11:21:39 -0400124
125 <object class="GtkImage" id="image_invite">
126 <property name="visible">True</property>
127 <property name="resource">/cx/ring/RingGnome/invite</property>
128 <child internal-child="accessible">
129 <object class="AtkObject" id="image_invite-atkobject">
130 <property name="AtkObject::accessible-description" translatable="yes">Send Invitation</property>
131 </object>
132 </child>
133 </object>
Stepan Salenikoviche9933242016-06-21 18:08:48 -0400134 <object class="GtkImage" id="image_place_call">
135 <property name="visible">True</property>
AmarOkb4253242017-07-13 11:21:39 -0400136 <property name="resource">/cx/ring/RingGnome/call_start</property>
Stepan Salenikoviche9933242016-06-21 18:08:48 -0400137 </object>
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500138</interface>