#!/bin/sh

GTKDIALOG=gtkdialog

export MAIN_DIALOG='
<vbox>
  <frame Icon name examples>
    <tree rules-hint="true">
      <width>250</width><height>400</height>
      <label>Icon Name</label>
      <item icon-name="gimp">gimp</item>
      <item icon-name="gnumeric">gnumeric</item>
      <item icon-name="geany">geany</item>
      <item icon-name="glade-3">glade-3</item>
      <item icon-name="uget-icon">uget-icon</item>
      <item icon-name="viewnior">viewnior</item>
      <item icon-name="xarchive">xarchive</item>
      <item icon-name="scribus">scribus</item>
      <item icon-name="inkscape">inkscape</item>
      <item icon-name="html">html</item>
      <item icon-name="gz">gz</item>
      <item icon-name="top">top</item>
      <item icon-name="midori">midori</item>
      <item icon-name="adblock">adblock</item>
      <item icon-name="abiword">abiword</item>
    </tree>
  </frame>
  <hbox homogeneous="true">
    <button ok></button>
  </hbox>
</vbox>
'

$GTKDIALOG --program=MAIN_DIALOG
