blob: 308876a4c441a9cbfa7512875030d4a536a17a6f [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>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -050057 <object class="GtkComboBox" id="combobox_cm">
Stepan Salenikovichbbfa4402016-05-04 15:07:29 -040058 <property name="visible">True</property>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -050059 <property name="popup-fixed-width">False</property>
60 </object>
61 <packing>
62 <property name="expand">False</property>
63 <property name="fill">True</property>
64 <property name="pack-type">end</property>
65 </packing>
66 </child>
67 </object>
68 <packing>
69 <property name="expand">False</property>
70 <property name="fill">True</property>
71 </packing>
72 </child>
73 <!-- end of chat info -->
74
Stepan Salenikovichd2cad062016-01-08 13:43:49 -050075 <!-- start of chat text view -->
76 <child>
77 <object class="GtkScrolledWindow" id="scrolledwindow_chat">
78 <property name="visible">True</property>
Stepan Salenikovichdaf3cb32016-10-12 16:39:42 -040079 <property name="min-content-height">100</property>
Stepan Salenikovichd2cad062016-01-08 13:43:49 -050080 <child>
aviau039001d2016-09-29 16:39:05 -040081 <object class="GtkBox" id="box_webkit_chat_container">
Stepan Salenikovichd2cad062016-01-08 13:43:49 -050082 <property name="visible">True</property>
aviau039001d2016-09-29 16:39:05 -040083 <property name="hexpand">True</property>
84 <property name="vexpand">True</property>
Stepan Salenikovichd2cad062016-01-08 13:43:49 -050085 </object>
86 </child>
87 </object>
88 <packing>
89 <property name="expand">True</property>
90 <property name="fill">True</property>
91 </packing>
92 </child>
93 <!-- end of chat text view -->
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -050094
Stepan Salenikovichd2cad062016-01-08 13:43:49 -050095 <!-- start of chat entry -->
96 <child>
97 <object class="GtkBox" id="hbox_chat_input">
98 <property name="visible">True</property>
99 <property name="orientation">horizontal</property>
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500100 <child>
101 <object class="GtkEntry" id="entry_chat_input">
102 <property name="visible">True</property>
103 </object>
104 <packing>
105 <property name="expand">True</property>
106 <property name="fill">True</property>
107 </packing>
108 </child>
109 <child>
110 <object class="GtkButton" id="button_chat_input">
111 <property name="visible">True</property>
112 <property name="label" translatable="yes">Send</property>
113 </object>
114 </child>
115 </object>
116 <packing>
117 <property name="expand">False</property>
118 <property name="fill">True</property>
119 </packing>
120 </child>
Stepan Salenikovichc6a3b982016-01-11 18:11:39 -0500121 <!-- end of chat entry -->
122
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500123 </template>
Stepan Salenikovich8043a562016-03-18 13:56:40 -0400124
125 <object class="GtkImage" id="image_back_arrow">
126 <property name="visible">True</property>
127 <property name="icon-name">go-previous-symbolic</property>
128 </object>
Stepan Salenikoviche9933242016-06-21 18:08:48 -0400129 <object class="GtkImage" id="image_place_call">
130 <property name="visible">True</property>
131 <property name="icon-name">call-start-symbolic</property>
132 </object>
Stepan Salenikovichd2cad062016-01-08 13:43:49 -0500133</interface>