summaryrefslogtreecommitdiff
path: root/config_ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'config_ui.h')
-rw-r--r--config_ui.h126
1 files changed, 126 insertions, 0 deletions
diff --git a/config_ui.h b/config_ui.h
new file mode 100644
index 0000000..952aa4b
--- /dev/null
+++ b/config_ui.h
@@ -0,0 +1,126 @@
+#ifndef _CONFIG_UI_H_
+#define _CONFIG_UI_H_
+#include <gtk/gtk.h>
+gchar *config_ui_string =
+"<?xml version=\"1.0\"?>"
+"<interface>"
+"<requires lib=\"gtk+\" version=\"2.16\"/>"
+"<!-- interface-naming-policy project-wide -->"
+"<object class=\"GtkDialog\" id=\"config_dialog\">"
+"<property name=\"border_width\">5</property>"
+"<property name=\"type_hint\">normal</property>"
+"<property name=\"has_separator\">False</property>"
+"<child internal-child=\"vbox\">"
+"<object class=\"GtkVBox\" id=\"dialog-vbox1\">"
+"<property name=\"visible\">True</property>"
+"<property name=\"orientation\">vertical</property>"
+"<property name=\"spacing\">2</property>"
+"<child>"
+"<object class=\"GtkVBox\" id=\"vbox1\">"
+"<property name=\"visible\">True</property>"
+"<property name=\"orientation\">vertical</property>"
+"<child>"
+"<object class=\"GtkLabel\" id=\"label1\">"
+"<property name=\"visible\">True</property>"
+"<property name=\"label\" translatable=\"yes\">_Interpolation Mode:</property>"
+"<property name=\"use_underline\">True</property>"
+"<property name=\"mnemonic_widget\">interp_combo</property>"
+"</object>"
+"<packing>"
+"<property name=\"expand\">False</property>"
+"<property name=\"position\">0</property>"
+"</packing>"
+"</child>"
+"<child>"
+"<object class=\"GtkComboBox\" id=\"interp_combo\">"
+"<property name=\"visible\">True</property>"
+"</object>"
+"<packing>"
+"<property name=\"expand\">False</property>"
+"<property name=\"position\">1</property>"
+"</packing>"
+"</child>"
+"<child>"
+"<object class=\"GtkLabel\" id=\"label2\">"
+"<property name=\"visible\">True</property>"
+"<property name=\"label\" translatable=\"yes\">Max _Preload:</property>"
+"<property name=\"use_underline\">True</property>"
+"<property name=\"mnemonic_widget\">preload_scale</property>"
+"</object>"
+"<packing>"
+"<property name=\"expand\">False</property>"
+"<property name=\"position\">2</property>"
+"</packing>"
+"</child>"
+"<child>"
+"<object class=\"GtkHScale\" id=\"preload_scale\">"
+"<property name=\"visible\">True</property>"
+"<property name=\"can_focus\">True</property>"
+"<property name=\"adjustment\">adjustment1</property>"
+"<property name=\"digits\">0</property>"
+"</object>"
+"<packing>"
+"<property name=\"position\">3</property>"
+"</packing>"
+"</child>"
+"</object>"
+"<packing>"
+"<property name=\"expand\">False</property>"
+"<property name=\"position\">1</property>"
+"</packing>"
+"</child>"
+"<child internal-child=\"action_area\">"
+"<object class=\"GtkHButtonBox\" id=\"dialog-action_area1\">"
+"<property name=\"visible\">True</property>"
+"<property name=\"layout_style\">end</property>"
+"<child>"
+"<object class=\"GtkButton\" id=\"button2\">"
+"<property name=\"label\">gtk-cancel</property>"
+"<property name=\"visible\">True</property>"
+"<property name=\"can_focus\">True</property>"
+"<property name=\"receives_default\">True</property>"
+"<property name=\"use_stock\">True</property>"
+"</object>"
+"<packing>"
+"<property name=\"expand\">False</property>"
+"<property name=\"fill\">False</property>"
+"<property name=\"position\">0</property>"
+"</packing>"
+"</child>"
+"<child>"
+"<object class=\"GtkButton\" id=\"button1\">"
+"<property name=\"label\">gtk-ok</property>"
+"<property name=\"visible\">True</property>"
+"<property name=\"can_focus\">True</property>"
+"<property name=\"receives_default\">True</property>"
+"<property name=\"use_stock\">True</property>"
+"</object>"
+"<packing>"
+"<property name=\"expand\">False</property>"
+"<property name=\"fill\">False</property>"
+"<property name=\"position\">1</property>"
+"</packing>"
+"</child>"
+"</object>"
+"<packing>"
+"<property name=\"expand\">False</property>"
+"<property name=\"pack_type\">end</property>"
+"<property name=\"position\">0</property>"
+"</packing>"
+"</child>"
+"</object>"
+"</child>"
+"<action-widgets>"
+"<action-widget response=\"-6\">button2</action-widget>"
+"<action-widget response=\"-5\">button1</action-widget>"
+"</action-widgets>"
+"</object>"
+"<object class=\"GtkSizeGroup\" id=\"sizegroup1\"/>"
+"<object class=\"GtkAdjustment\" id=\"adjustment1\">"
+"<property name=\"upper\">32</property>"
+"<property name=\"step_increment\">1</property>"
+"<property name=\"page_increment\">8</property>"
+"</object>"
+"</interface>"
+;
+#endif