<?xml version="1.0" encoding="UTF-8"?>
<interface>
  <requires lib="gtk+" version="3.0"/>
  <object class="GtkWindow" id="window">
    <property name="title">GTK Text View Example</property>
    <property name="default-width">400</property>
    <property name="default-height">400</property>
    <signal name="destroy" handler="gtk_main_quit" swapped="no"/>
    <child>
      <object class="GtkBox" id="box">
        <property name="orientation">vertical</property>
        <property name="spacing">10</property>
        <property name="margin">10</property>
        <child>
          <object class="GtkFrame">
            <property name="label">Enter text:</property>
            <child>
					<object class="GtkTextView" id="textview">
                <property name="hexpand">true</property>
                <property name="vexpand">true</property>
					 <property name="wrap-mode">word</property>
              </object>
            </child>
          </object>
        </child>
        <child>
          <object class="GtkButton" id="button">
            <property name="label">Print text</property>
          </object>
        </child>
      </object>
    </child>
  </object>
</interface>

