blob: 87f49735225f2be07d75b039be6b5c5e5dc2b209 [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>
6 <property name="spacing">5</property>
7 <!-- start of chat text view -->
8 <child>
9 <object class="GtkScrolledWindow" id="scrolledwindow_chat">
10 <property name="visible">True</property>
11 <child>
12 <object class="GtkTextView" id="textview_chat">
13 <property name="visible">True</property>
14 <property name="can_focus">True</property>
15 <property name="editable">False</property>
16 <property name="wrap-mode">word-char</property>
17 <property name="left-margin">5</property>
18 <property name="right-margin">5</property>
19 <property name="height-request">50</property>
20 </object>
21 </child>
22 </object>
23 <packing>
24 <property name="expand">True</property>
25 <property name="fill">True</property>
26 </packing>
27 </child>
28 <!-- end of chat text view -->
29 <!-- start of chat entry -->
30 <child>
31 <object class="GtkBox" id="hbox_chat_input">
32 <property name="visible">True</property>
33 <property name="orientation">horizontal</property>
34 <property name="spacing">5</property>
35 <child>
36 <object class="GtkEntry" id="entry_chat_input">
37 <property name="visible">True</property>
38 </object>
39 <packing>
40 <property name="expand">True</property>
41 <property name="fill">True</property>
42 </packing>
43 </child>
44 <child>
45 <object class="GtkButton" id="button_chat_input">
46 <property name="visible">True</property>
47 <property name="label" translatable="yes">Send</property>
48 </object>
49 </child>
50 </object>
51 <packing>
52 <property name="expand">False</property>
53 <property name="fill">True</property>
54 </packing>
55 </child>
56 </template>
57</interface>