(Lib)Glade XML

<widget class="GtkWindow" id="listview_test">
  <property name="visible">True</property>
  <property name="title" translatable="yes">ListView Test Application</property>
  <property name="type">GTK_WINDOW_TOPLEVEL</property>
  <property name="window_position">GTK_WIN_POS_NONE</property>
  <property name="modal">False</property>
  <property name="resizable">True</property>
  <property name="destroy_with_parent">False</property>

  <child>
    <widget class="GtkScrolledWindow" id="scrolledwindow1">
      <property name="visible">True</property>
      <property name="can_focus">True</property>
      ...
      <child>
          <widget class="GtkTreeView" id="treeview1">
             <property name="visible">True</property>
             <property name="can_focus">True</property>
             <property name="headers_visible">True</property>
             ...
          </widget>
      </child>
    </widget>
  </child>
</widget>