components/desktop/xscreensaver/patches/0000-Port-from-libglade-to-GtkBuilder.patch
author Rich Burridge <rich.burridge@oracle.com>
Tue, 02 May 2017 17:33:26 -0700
changeset 7964 d9801318ed3d
parent 7818 c93a988b3522
permissions -rw-r--r--
25981468 Build ilmbase and openexr with the GNU compilers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7818
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     1
From 24b0af3ecb957085354642026877159b6022f800 Mon Sep 17 00:00:00 2001
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     2
From: Alan Coopersmith <[email protected]>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     3
Date: Sat, 25 Mar 2017 23:18:43 -0700
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     4
Subject: [PATCH] Port from libglade to GtkBuilder
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     5
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     6
Need to discuss with upstream if they'll accept this, but we need it
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     7
in order to obsolete our libglade package.
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     8
---
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
     9
 configure.in                       |    5 +-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    10
 driver/Makefile.in                 |   14 +-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    11
 driver/demo-Gtk.c                  |  123 +-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    12
 driver/xscreensaver-demo.glade2.in | 3136 ------------------------------------
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    13
 driver/xscreensaver-demo.ui.in     | 2912 +++++++++++++++++++++++++++++++++
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    14
 5 files changed, 2981 insertions(+), 3209 deletions(-)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    15
 delete mode 100644 driver/xscreensaver-demo.glade2.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    16
 create mode 100644 driver/xscreensaver-demo.ui.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    17
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    18
diff --git a/configure.in b/configure.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    19
index 4c4dee5..5ff8aea 100644
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    20
--- a/configure.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    21
+++ b/configure.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    22
@@ -2660,10 +2660,9 @@ if test "$with_gtk" = yes; then
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    23
   have_gtk=no
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    24
   
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    25
   ok="yes"
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    26
-  pkg_check_version            gtk+-2.0  2.0.1  ; ac_gtk_version_string="$vers"
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    27
+  pkg_check_version            gtk+-2.0  2.12.0  ; ac_gtk_version_string="$vers"
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    28
   pkg_check_version         gmodule-2.0  2.0.0
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    29
   pkg_check_version          libxml-2.0  2.4.6
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    30
-  pkg_check_version        libglade-2.0  1.99.0
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    31
   pkg_check_version      gdk-pixbuf-2.0  2.0.0
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    32
   pkg_check_version gdk-pixbuf-xlib-2.0  2.0.0
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    33
   have_gtk="$ok"
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    34
@@ -4159,7 +4158,7 @@ AC_OUTPUT(Makefile
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    35
           utils/Makefile
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    36
           driver/Makefile
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    37
           driver/xscreensaver.pam
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    38
-          driver/xscreensaver-demo.glade2
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    39
+          driver/xscreensaver-demo.ui
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    40
           hacks/Makefile
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    41
           hacks/glx/Makefile
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    42
           po/Makefile.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    43
diff --git a/driver/Makefile.in b/driver/Makefile.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    44
index c132304..b24536e 100644
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    45
--- a/driver/Makefile.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    46
+++ b/driver/Makefile.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    47
@@ -237,7 +237,7 @@ MEN		= $(MEN_1) @MEN_OSX@
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    48
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    49
 EXTRAS		= README Makefile.in \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    50
 		  XScreenSaver.ad.in XScreenSaver-Xm.ad xscreensaver.pam.in \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    51
-		  xscreensaver-demo.glade2.in xscreensaver-demo.glade2p \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    52
+		  xscreensaver-demo.ui.in \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    53
 		  screensaver-properties.desktop.in \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    54
 		  .gdbinit
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    55
 VMSFILES	= compile_axp.com compile_decc.com link_axp.com link_decc.com \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    56
@@ -537,15 +537,15 @@ install-gnome::
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    57
 	   done								     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    58
         fi
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    59
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    60
-# xscreensaver-demo.glade2
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    61
+# xscreensaver-demo.ui
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    62
 # into /usr/share/xscreensaver/glade/
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    63
-install-gnome:: xscreensaver-demo.glade2
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    64
+install-gnome:: xscreensaver-demo.ui
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    65
 	@if [ "$(GTK_DATADIR)" != "" ]; then				      \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    66
 	  if [ ! -d "$(install_prefix)$(GTK_GLADEDIR)" ]; then		      \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    67
 	    echo $(INSTALL_DIRS) "$(install_prefix)$(GTK_GLADEDIR)"	     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    68
 	         $(INSTALL_DIRS) "$(install_prefix)$(GTK_GLADEDIR)"	     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    69
 	  fi								     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    70
-	  target=xscreensaver-demo.glade2				     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    71
+	  target=xscreensaver-demo.ui					     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    72
 	  echo $(INSTALL_DATA) $$target                             \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    73
 	    $(install_prefix)$(GTK_GLADEDIR)/$$target                        ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    74
 	  if   $(INSTALL_DATA) $$target                             \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    75
@@ -595,11 +595,11 @@ uninstall-gnome::
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    76
 	   done								     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    77
         fi
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    78
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    79
-# xscreensaver-demo.glade2
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    80
+# xscreensaver-demo.ui
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    81
 # into /usr/share/xscreensaver/glade/
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    82
-uninstall-gnome:: xscreensaver-demo.glade2
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    83
+uninstall-gnome:: xscreensaver-demo.ui
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    84
 	@if [ "$(GTK_DATADIR)" != "" ]; then				      \
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    85
-	  target=xscreensaver-demo.glade2				     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    86
+	  target=xscreensaver-demo.ui					     ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    87
 	  echo rm -f $(install_prefix)$(GTK_GLADEDIR)/$$target               ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    88
 	       rm -f $(install_prefix)$(GTK_GLADEDIR)/$$target               ;\
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    89
 	 fi
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    90
diff --git a/driver/demo-Gtk.c b/driver/demo-Gtk.c
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    91
index 27d2316..87ae8a5 100644
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    92
--- a/driver/demo-Gtk.c
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    93
+++ b/driver/demo-Gtk.c
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    94
@@ -92,7 +92,6 @@
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    95
 #include <gdk/gdkx.h>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    96
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    97
 #ifdef HAVE_GTK2
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    98
-# include <glade/glade-xml.h>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
    99
 # include <gmodule.h>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   100
 #else  /* !HAVE_GTK2 */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   101
 # define G_MODULE_EXPORT /**/
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   102
@@ -208,7 +207,7 @@ typedef struct {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   103
   conf_data *cdata;		/* private data for per-hack configuration */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   104
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   105
 #ifdef HAVE_GTK2
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   106
-  GladeXML *glade_ui;           /* Glade UI file */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   107
+  GtkBuilder *glade_ui;         /* Glade UI file */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   108
 #endif /* HAVE_GTK2 */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   109
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   110
   Bool debug_p;			/* whether to print diagnostics */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   111
@@ -343,20 +342,31 @@ name_to_widget (state *s, const char *name)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   112
       /* First try to load the Glade file from the current directory;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   113
          if there isn't one there, check the installed directory.
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   114
        */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   115
-# define GLADE_FILE_NAME "xscreensaver-demo.glade2"
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   116
+# define GLADE_FILE_NAME "xscreensaver-demo.ui"
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   117
       const char * const files[] = { GLADE_FILE_NAME,
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   118
                                      GLADE_DIR "/" GLADE_FILE_NAME };
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   119
       int i;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   120
+
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   121
+      s->glade_ui = gtk_builder_new ();
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   122
+
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   123
       for (i = 0; i < countof (files); i++)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   124
         {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   125
           struct stat st;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   126
           if (!stat (files[i], &st))
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   127
             {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   128
-              s->glade_ui = glade_xml_new (files[i], NULL, NULL);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   129
-              break;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   130
+              GError* error = NULL;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   131
+
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   132
+              if (gtk_builder_add_from_file (s->glade_ui, files[i], &error))
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   133
+                break;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   134
+              else
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   135
+                {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   136
+                  g_warning ("Couldn't load builder file %s: %s",
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   137
+			     files[i], error->message);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   138
+                  g_error_free (error);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   139
+                }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   140
             }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   141
         }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   142
-      if (!s->glade_ui)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   143
+      if (i >= countof (files))
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   144
 	{
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   145
 	  fprintf (stderr,
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   146
                    "%s: could not load \"" GLADE_FILE_NAME "\"\n"
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   147
@@ -366,10 +376,10 @@ name_to_widget (state *s, const char *name)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   148
 	}
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   149
 # undef GLADE_FILE_NAME
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   150
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   151
-      glade_xml_signal_autoconnect (s->glade_ui);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   152
+      gtk_builder_connect_signals (s->glade_ui, NULL);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   153
     }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   154
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   155
-  w = glade_xml_get_widget (s->glade_ui, name);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   156
+  w = GTK_WIDGET (gtk_builder_get_object (s->glade_ui, name));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   157
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   158
 #else /* !HAVE_GTK2 */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   159
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   160
@@ -1633,11 +1643,8 @@ flush_dialog_changes_and_save (state *s)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   161
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   162
   /* Map the mode menu to `saver_mode' enum values. */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   163
   {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   164
-    GtkOptionMenu *opt = GTK_OPTION_MENU (name_to_widget (s, "mode_menu"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   165
-    GtkMenu *menu = GTK_MENU (gtk_option_menu_get_menu (opt));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   166
-    GtkWidget *selected = gtk_menu_get_active (menu);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   167
-    GList *kids = gtk_container_children (GTK_CONTAINER (menu));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   168
-    int menu_elt = g_list_index (kids, (gpointer) selected);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   169
+    GtkComboBox *opt = GTK_COMBO_BOX (name_to_widget (s, "mode_menu"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   170
+    int menu_elt = gtk_combo_box_get_active (opt);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   171
     if (menu_elt < 0 || menu_elt >= countof(mode_menu_order)) abort();
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   172
     p2->mode = mode_menu_order[menu_elt];
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   173
   }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   174
@@ -1743,9 +1750,10 @@ flush_popup_changes_and_save (state *s)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   175
   int list_elt = selected_list_element (s);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   176
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   177
   GtkEntry *cmd = GTK_ENTRY (name_to_widget (s, "cmd_text"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   178
-  GtkCombo *vis = GTK_COMBO (name_to_widget (s, "visual_combo"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   179
+  GtkComboBoxEntry *vis = GTK_COMBO_BOX_ENTRY (name_to_widget (s, "visual_combo"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   180
+  GtkEntry *visent = GTK_ENTRY (gtk_bin_get_child (GTK_BIN (vis)));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   181
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   182
-  const char *visual = gtk_entry_get_text (GTK_ENTRY (GTK_COMBO (vis)->entry));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   183
+  const char *visual = gtk_entry_get_text (visent);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   184
   const char *command = gtk_entry_get_text (cmd);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   185
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   186
   char c;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   187
@@ -1790,7 +1798,7 @@ flush_popup_changes_and_save (state *s)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   188
     {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   189
       gdk_beep ();				  /* unparsable */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   190
       visual = "";
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   191
-      gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (vis)->entry), _("Any"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   192
+      gtk_entry_set_text (visent, _("Any"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   193
     }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   194
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   195
   changed = flush_changes (s, list_elt, -1, command, visual);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   196
@@ -1838,21 +1846,8 @@ mode_menu_item_cb (GtkWidget *widget, gpointer user_data)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   197
   GtkWidget *list = name_to_widget (s, "list");
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   198
   int list_elt;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   199
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   200
-  GList *menu_items =
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   201
-    gtk_container_children (GTK_CONTAINER (GET_PARENT (widget)));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   202
-  int menu_index = 0;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   203
-  saver_mode new_mode;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   204
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   205
-  while (menu_items)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   206
-    {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   207
-      if (menu_items->data == widget)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   208
-        break;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   209
-      menu_index++;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   210
-      menu_items = menu_items->next;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   211
-    }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   212
-  if (!menu_items) abort();
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   213
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   214
-  new_mode = mode_menu_order[menu_index];
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   215
+  int menu_index = gtk_combo_box_get_active (GTK_COMBO_BOX (widget));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   216
+  saver_mode new_mode = mode_menu_order[menu_index];
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   217
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   218
   /* Keep the same list element displayed as before; except if we're
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   219
      switching *to* "one screensaver" mode from any other mode, set
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   220
@@ -2867,13 +2862,13 @@ populate_prefs_page (state *s)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   221
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   222
   /* Map the `saver_mode' enum to mode menu to values. */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   223
   {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   224
-    GtkOptionMenu *opt = GTK_OPTION_MENU (name_to_widget (s, "mode_menu"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   225
+    GtkComboBox *opt = GTK_COMBO_BOX (name_to_widget (s, "mode_menu"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   226
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   227
     int i;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   228
     for (i = 0; i < countof(mode_menu_order); i++)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   229
       if (mode_menu_order[i] == p->mode)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   230
         break;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   231
-    gtk_option_menu_set_history (opt, i);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   232
+    gtk_combo_box_set_active (opt, i);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   233
     update_list_sensitivity (s);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   234
   }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   235
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   236
@@ -3022,7 +3017,7 @@ sensitize_menu_items (state *s, Bool force_p)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   237
   static Bool running_p = False;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   238
   static time_t last_checked = 0;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   239
   time_t now = time ((time_t *) 0);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   240
-  const char *names[] = { "activate_menu", "lock_menu", "kill_menu",
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   241
+  const char *names[] = { "activate_action", "lock_action", "kill_action",
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   242
                           /* "demo" */ };
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   243
   int i;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   244
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   245
@@ -3034,8 +3029,9 @@ sensitize_menu_items (state *s, Bool force_p)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   246
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   247
   for (i = 0; i < countof(names); i++)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   248
     {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   249
-      GtkWidget *w = name_to_widget (s, names[i]);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   250
-      gtk_widget_set_sensitive (GTK_WIDGET(w), running_p);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   251
+      GtkAction *a = GTK_ACTION (gtk_builder_get_object (s->glade_ui,
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   252
+							 names[i]));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   253
+      gtk_action_set_sensitive (a, running_p);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   254
     }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   255
 }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   256
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   257
@@ -3107,7 +3103,7 @@ fix_text_entry_sizes (state *s)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   258
   /* Now fix the width of the combo box.
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   259
    */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   260
   w = GTK_WIDGET (name_to_widget (s, "visual_combo"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   261
-  w = GTK_COMBO (w)->entry;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   262
+  w = GTK_COMBO_BOX_ENTRY (w)->entry;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   263
   width = gdk_string_width (w->style->font, "PseudoColor___");
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   264
   gtk_widget_set_usize (w, width, -2);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   265
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   266
@@ -3313,7 +3309,7 @@ populate_demo_window (state *s, int list_elt)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   267
   GtkFrame *frame1 = GTK_FRAME (name_to_widget (s, "preview_frame"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   268
   GtkFrame *frame2 = GTK_FRAME (name_to_widget (s, "opt_frame"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   269
   GtkEntry *cmd    = GTK_ENTRY (name_to_widget (s, "cmd_text"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   270
-  GtkCombo *vis    = GTK_COMBO (name_to_widget (s, "visual_combo"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   271
+  GtkComboBoxEntry *vis = GTK_COMBO_BOX_ENTRY (name_to_widget (s, "visual_combo"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   272
   GtkWidget *list  = GTK_WIDGET (name_to_widget (s, "list"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   273
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   274
   if (p->mode == BLANK_ONLY)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   275
@@ -3363,7 +3359,7 @@ populate_demo_window (state *s, int list_elt)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   276
     gtk_window_set_title (GTK_WINDOW (s->popup_widget), title);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   277
   }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   278
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   279
-  gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (vis)->entry),
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   280
+  gtk_entry_set_text (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (vis))),
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   281
                       (hack
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   282
                        ? (hack->visual && *hack->visual
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   283
                           ? hack->visual
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   284
@@ -5164,31 +5160,32 @@ main (int argc, char **argv)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   285
 #endif /* !HAVE_GTK2 */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   286
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   287
   /* Hook up callbacks to the items on the mode menu. */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   288
-  {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   289
-    GtkOptionMenu *opt = GTK_OPTION_MENU (name_to_widget (s, "mode_menu"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   290
-    GtkMenu *menu = GTK_MENU (gtk_option_menu_get_menu (opt));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   291
-    GList *kids = gtk_container_children (GTK_CONTAINER (menu));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   292
-    int i;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   293
-    for (i = 0; kids; kids = kids->next, i++)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   294
-      {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   295
-        gtk_signal_connect (GTK_OBJECT (kids->data), "activate",
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   296
-                            GTK_SIGNAL_FUNC (mode_menu_item_cb),
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   297
-                            (gpointer) s);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   298
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   299
-        /* The "random-same" mode menu item does not appear unless
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   300
-           there are multple screens.
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   301
-         */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   302
-        if (s->nscreens <= 1 &&
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   303
-            mode_menu_order[i] == RANDOM_HACKS_SAME)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   304
-          gtk_widget_hide (GTK_WIDGET (kids->data));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   305
-      }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   306
+  gtk_signal_connect (GTK_OBJECT (name_to_widget (s, "mode_menu")),
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   307
+                      "changed", GTK_SIGNAL_FUNC (mode_menu_item_cb),
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   308
+                      (gpointer) s);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   309
+  if (s->nscreens <= 1)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   310
+    {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   311
+      GtkComboBox *opt = GTK_COMBO_BOX (name_to_widget (s, "mode_menu"));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   312
+      GtkTreeModel *list = gtk_combo_box_get_model (opt);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   313
+      unsigned int i;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   314
+      for (i = 0; i < countof(mode_menu_order); i++)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   315
+        {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   316
+          /* The "random-same" mode menu item does not appear unless
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   317
+             there are multiple screens.
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   318
+           */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   319
+          if (mode_menu_order[i] == RANDOM_HACKS_SAME)
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   320
+            {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   321
+              GtkTreeIter iter;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   322
+              gtk_tree_model_iter_nth_child (list, &iter, NULL, i);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   323
+              gtk_list_store_remove (GTK_LIST_STORE (list), &iter);
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   324
+              break;
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   325
+            }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   326
+        }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   327
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   328
-    if (s->nscreens <= 1)   /* recompute option-menu size */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   329
-      {
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   330
-        gtk_widget_unrealize (GTK_WIDGET (menu));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   331
-        gtk_widget_realize (GTK_WIDGET (menu));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   332
-      }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   333
-  }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   334
+        /* recompute option-menu size */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   335
+        gtk_widget_unrealize (GTK_WIDGET (opt));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   336
+        gtk_widget_realize (GTK_WIDGET (opt));
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   337
+    }
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   338
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   339
 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   340
   /* Handle the -prefs command-line argument. */
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   341
diff --git a/driver/xscreensaver-demo.glade2.in b/driver/xscreensaver-demo.glade2.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   342
deleted file mode 100644
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   343
index ad0095d..0000000
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   344
--- a/driver/xscreensaver-demo.glade2.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   345
+++ /dev/null
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   346
@@ -1,3136 +0,0 @@
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   347
-<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   348
-<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   349
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   350
-<glade-interface>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   351
-<requires lib="gnome"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   352
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   353
-<widget class="GtkWindow" id="xscreensaver_demo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   354
-  <property name="title" translatable="yes">XScreenSaver</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   355
-  <property name="type">GTK_WINDOW_TOPLEVEL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   356
-  <property name="window_position">GTK_WIN_POS_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   357
-  <property name="modal">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   358
-  <property name="resizable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   359
-  <property name="destroy_with_parent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   360
-  <property name="decorated">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   361
-  <property name="skip_taskbar_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   362
-  <property name="skip_pager_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   363
-  <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   364
-  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   365
-  <property name="focus_on_map">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   366
-  <property name="urgency_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   367
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   368
-  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   369
-    <widget class="GtkVBox" id="outer_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   370
-      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   371
-      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   372
-      <property name="spacing">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   373
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   374
-      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   375
-	<widget class="GtkMenuBar" id="menubar">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   376
-	  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   377
-	  <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   378
-	  <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   379
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   380
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   381
-	    <widget class="GtkMenuItem" id="file">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   382
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   383
-	      <property name="label" translatable="yes">_File</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   384
-	      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   385
-	      <signal name="activate" handler="file_menu_cb" last_modification_time="Sun, 06 Mar 2005 21:41:13 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   386
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   387
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   388
-		<widget class="GtkMenu" id="file_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   389
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   390
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   391
-		    <widget class="GtkMenuItem" id="activate_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   392
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   393
-		      <property name="label" translatable="yes">_Blank Screen Now</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   394
-		      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   395
-		      <signal name="activate" handler="activate_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   396
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   397
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   398
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   399
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   400
-		    <widget class="GtkMenuItem" id="lock_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   401
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   402
-		      <property name="label" translatable="yes">_Lock Screen Now</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   403
-		      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   404
-		      <signal name="activate" handler="lock_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   405
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   406
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   407
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   408
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   409
-		    <widget class="GtkMenuItem" id="kill_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   410
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   411
-		      <property name="label" translatable="yes">_Kill Daemon</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   412
-		      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   413
-		      <signal name="activate" handler="kill_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   414
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   415
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   416
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   417
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   418
-		    <widget class="GtkMenuItem" id="restart">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   419
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   420
-		      <property name="label" translatable="yes">_Restart Daemon</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   421
-		      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   422
-		      <signal name="activate" handler="restart_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   423
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   424
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   425
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   426
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   427
-		    <widget class="GtkMenuItem" id="separator1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   428
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   429
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   430
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   431
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   432
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   433
-		    <widget class="GtkMenuItem" id="exit_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   434
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   435
-		      <property name="label" translatable="yes">_Quit</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   436
-		      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   437
-		      <signal name="activate" handler="exit_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   438
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   439
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   440
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   441
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   442
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   443
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   444
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   445
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   446
-	    <widget class="GtkMenuItem" id="help">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   447
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   448
-	      <property name="label" translatable="yes">_Help</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   449
-	      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   450
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   451
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   452
-		<widget class="GtkMenu" id="help_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   453
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   454
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   455
-		    <widget class="GtkMenuItem" id="about_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   456
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   457
-		      <property name="label" translatable="yes">_About...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   458
-		      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   459
-		      <signal name="activate" handler="about_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   460
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   461
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   462
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   463
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   464
-		    <widget class="GtkMenuItem" id="doc_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   465
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   466
-		      <property name="label" translatable="yes">_Documentation...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   467
-		      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   468
-		      <signal name="activate" handler="doc_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   469
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   470
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   471
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   472
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   473
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   474
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   475
-	</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   476
-	<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   477
-	  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   478
-	  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   479
-	  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   480
-	</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   481
-      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   482
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   483
-      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   484
-	<widget class="GtkHBox" id="spacer_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   485
-	  <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   486
-	  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   487
-	  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   488
-	  <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   489
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   490
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   491
-	    <widget class="GtkNotebook" id="notebook">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   492
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   493
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   494
-	      <property name="show_tabs">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   495
-	      <property name="show_border">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   496
-	      <property name="tab_pos">GTK_POS_TOP</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   497
-	      <property name="scrollable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   498
-	      <property name="enable_popup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   499
-	      <signal name="switch_page" handler="switch_page_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   500
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   501
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   502
-		<widget class="GtkTable" id="demos_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   503
-		  <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   504
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   505
-		  <property name="n_rows">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   506
-		  <property name="n_columns">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   507
-		  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   508
-		  <property name="row_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   509
-		  <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   510
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   511
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   512
-		    <widget class="GtkTable" id="blanking_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   513
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   514
-		      <property name="n_rows">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   515
-		      <property name="n_columns">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   516
-		      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   517
-		      <property name="row_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   518
-		      <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   519
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   520
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   521
-			<widget class="GtkLabel" id="cycle_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   522
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   523
-			  <property name="label" translatable="yes">_Cycle After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   524
-			  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   525
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   526
-			  <property name="justify">GTK_JUSTIFY_RIGHT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   527
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   528
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   529
-			  <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   530
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   531
-			  <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   532
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   533
-			  <property name="mnemonic_widget">cycle_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   534
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   535
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   536
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   537
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   538
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   539
-			    <atkrelation target="cycle_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   540
-			    <atkrelation target="cycle_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   541
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   542
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   543
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   544
-			  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   545
-			  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   546
-			  <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   547
-			  <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   548
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   549
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   550
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   551
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   552
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   553
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   554
-			<widget class="GtkEventBox" id="lock_button_eventbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   555
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   556
-			  <property name="tooltip" translatable="yes">Whether a password should be required to un-blank the screen.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   557
-			  <property name="visible_window">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   558
-			  <property name="above_child">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   559
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   560
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   561
-			    <widget class="GtkCheckButton" id="lock_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   562
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   563
-			      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   564
-			      <property name="label" translatable="yes">_Lock Screen After  </property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   565
-			      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   566
-			      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   567
-			      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   568
-			      <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   569
-			      <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   570
-			      <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   571
-			      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   572
-				<atkproperty name="AtkObject::accessible_name" translatable="yes">Lock Screen</atkproperty>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   573
-				<atkrelation target="lock_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   574
-				<atkrelation target="lock_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   575
-				<atkrelation target="lock_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   576
-			      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   577
-			      <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   578
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   579
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   580
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   581
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   582
-			  <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   583
-			  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   584
-			  <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   585
-			  <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   586
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   587
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   588
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   589
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   590
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   591
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   592
-			<widget class="GtkSpinButton" id="timeout_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   593
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   594
-			  <property name="tooltip" translatable="yes">How long before the screen saver activates.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   595
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   596
-			  <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   597
-			  <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   598
-			  <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   599
-			  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   600
-			  <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   601
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   602
-			  <property name="adjustment">1 1 720 1 15 0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   603
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   604
-			    <atkrelation target="timeout_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   605
-			    <atkrelation target="timeout_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   606
-			    <atkrelation target="timeout_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   607
-			    <atkrelation target="timeout_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   608
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   609
-			  <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   610
-			  <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   611
-			  <signal name="value_changed" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   612
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   613
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   614
-			  <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   615
-			  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   616
-			  <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   617
-			  <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   618
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   619
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   620
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   621
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   622
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   623
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   624
-			<widget class="GtkSpinButton" id="lock_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   625
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   626
-			  <property name="tooltip" translatable="yes">How long after the screen blanks until a password will be required.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   627
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   628
-			  <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   629
-			  <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   630
-			  <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   631
-			  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   632
-			  <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   633
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   634
-			  <property name="adjustment">0 0 720 1 15 0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   635
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   636
-			    <atkproperty name="AtkObject::accessible_name" translatable="yes">Lock Screen After</atkproperty>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   637
-			    <atkrelation target="lock_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   638
-			    <atkrelation target="lock_button" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   639
-			    <atkrelation target="lock_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   640
-			    <atkrelation target="lock_button" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   641
-			    <atkrelation target="lock_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   642
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   643
-			  <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   644
-			  <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   645
-			  <signal name="value_changed" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   646
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   647
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   648
-			  <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   649
-			  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   650
-			  <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   651
-			  <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   652
-			  <property name="y_padding">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   653
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   654
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   655
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   656
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   657
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   658
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   659
-			<widget class="GtkSpinButton" id="cycle_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   660
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   661
-			  <property name="tooltip" translatable="yes">How long each display mode should run before choosing a new one (in Random mode.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   662
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   663
-			  <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   664
-			  <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   665
-			  <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   666
-			  <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   667
-			  <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   668
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   669
-			  <property name="adjustment">0 0 720 1 15 0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   670
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   671
-			    <atkrelation target="cycle_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   672
-			    <atkrelation target="cycle_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   673
-			    <atkrelation target="cycle_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   674
-			    <atkrelation target="cycle_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   675
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   676
-			  <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   677
-			  <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   678
-			  <signal name="value_changed" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   679
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   680
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   681
-			  <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   682
-			  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   683
-			  <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   684
-			  <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   685
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   686
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   687
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   688
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   689
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   690
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   691
-			<widget class="GtkLabel" id="lock_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   692
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   693
-			  <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   694
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   695
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   696
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   697
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   698
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   699
-			  <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   700
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   701
-			  <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   702
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   703
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   704
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   705
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   706
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   707
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   708
-			    <atkrelation target="lock_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   709
-			    <atkrelation target="lock_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   710
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   711
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   712
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   713
-			  <property name="left_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   714
-			  <property name="right_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   715
-			  <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   716
-			  <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   717
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   718
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   719
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   720
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   721
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   722
-			<widget class="GtkLabel" id="cycle_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   723
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   724
-			  <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   725
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   726
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   727
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   728
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   729
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   730
-			  <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   731
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   732
-			  <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   733
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   734
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   735
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   736
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   737
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   738
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   739
-			    <atkrelation target="cycle_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   740
-			    <atkrelation target="cycle_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   741
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   742
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   743
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   744
-			  <property name="left_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   745
-			  <property name="right_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   746
-			  <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   747
-			  <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   748
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   749
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   750
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   751
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   752
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   753
-			<widget class="GtkLabel" id="timeout_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   754
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   755
-			  <property name="label" translatable="yes">_Blank After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   756
-			  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   757
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   758
-			  <property name="justify">GTK_JUSTIFY_RIGHT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   759
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   760
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   761
-			  <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   762
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   763
-			  <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   764
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   765
-			  <property name="mnemonic_widget">timeout_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   766
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   767
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   768
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   769
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   770
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   771
-			    <atkrelation target="timeout_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   772
-			    <atkrelation target="timeout_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   773
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   774
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   775
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   776
-			  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   777
-			  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   778
-			  <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   779
-			  <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   780
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   781
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   782
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   783
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   784
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   785
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   786
-			<widget class="GtkLabel" id="timeout_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   787
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   788
-			  <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   789
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   790
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   791
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   792
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   793
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   794
-			  <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   795
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   796
-			  <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   797
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   798
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   799
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   800
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   801
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   802
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   803
-			    <atkrelation target="timeout_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   804
-			    <atkrelation target="timeout_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   805
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   806
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   807
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   808
-			  <property name="left_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   809
-			  <property name="right_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   810
-			  <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   811
-			  <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   812
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   813
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   814
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   815
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   816
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   817
-		      <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   818
-		      <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   819
-		      <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   820
-		      <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   821
-		      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   822
-		      <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   823
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   824
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   825
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   826
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   827
-		    <widget class="GtkHButtonBox" id="demo_manual_hbbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   828
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   829
-		      <property name="layout_style">GTK_BUTTONBOX_SPREAD</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   830
-		      <property name="spacing">30</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   831
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   832
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   833
-			<widget class="GtkButton" id="demo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   834
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   835
-			  <property name="tooltip" translatable="yes">Demo the selected screen saver in full-screen mode (click the mouse to return.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   836
-			  <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   837
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   838
-			  <property name="label" translatable="yes">_Preview</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   839
-			  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   840
-			  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   841
-			  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   842
-			  <signal name="clicked" handler="run_this_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   843
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   844
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   845
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   846
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   847
-			<widget class="GtkButton" id="settings">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   848
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   849
-			  <property name="tooltip" translatable="yes">Customization and explanation of the selected screen saver.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   850
-			  <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   851
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   852
-			  <property name="label" translatable="yes">_Settings...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   853
-			  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   854
-			  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   855
-			  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   856
-			  <signal name="clicked" handler="settings_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   857
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   858
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   859
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   860
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   861
-		      <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   862
-		      <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   863
-		      <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   864
-		      <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   865
-		      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   866
-		      <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   867
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   868
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   869
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   870
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   871
-		    <widget class="GtkVBox" id="list_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   872
-		      <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   873
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   874
-		      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   875
-		      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   876
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   877
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   878
-			<widget class="GtkHBox" id="mode_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   879
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   880
-			  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   881
-			  <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   882
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   883
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   884
-			    <widget class="GtkLabel" id="mode_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   885
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   886
-			      <property name="label" translatable="yes">_Mode:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   887
-			      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   888
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   889
-			      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   890
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   891
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   892
-			      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   893
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   894
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   895
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   896
-			      <property name="mnemonic_widget">mode_menu</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   897
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   898
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   899
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   900
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   901
-			      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   902
-				<atkrelation target="mode_menu_popup" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   903
-			      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   904
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   905
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   906
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   907
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   908
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   909
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   910
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   911
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   912
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   913
-			    <widget class="GtkOptionMenu" id="mode_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   914
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   915
-			      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   916
-			      <property name="history">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   917
-			      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   918
-				<atkrelation target="mode_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   919
-			      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   920
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   921
-			      <child internal-child="menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   922
-				<widget class="GtkMenu" id="mode_menu_popup">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   923
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   924
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   925
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   926
-				    <widget class="GtkMenuItem" id="disable_menuitem">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   927
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   928
-				      <property name="tooltip" translatable="yes">Never blank the screen or power down the monitor.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   929
-				      <property name="label" translatable="yes">_Disable Screen Saver</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   930
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   931
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   932
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   933
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   934
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   935
-				    <widget class="GtkMenuItem" id="blank_menuitem">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   936
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   937
-				      <property name="tooltip" translatable="yes">When idle or locked, blacken the screen only.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   938
-				      <property name="label" translatable="yes">_Blank Screen Only</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   939
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   940
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   941
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   942
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   943
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   944
-				    <widget class="GtkMenuItem" id="one_menuitem">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   945
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   946
-				      <property name="tooltip" translatable="yes">When idle or locked, run the display mode selected below.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   947
-				      <property name="label" translatable="yes">_Only One Screen Saver</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   948
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   949
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   950
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   951
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   952
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   953
-				    <widget class="GtkMenuItem" id="random_menuitem">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   954
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   955
-				      <property name="tooltip" translatable="yes">When idle or locked, choose a random display mode from among the checked items in the list below.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   956
-				      <property name="label" translatable="yes">_Random Screen Saver</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   957
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   958
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   959
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   960
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   961
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   962
-				    <widget class="GtkMenuItem" id="random_same_menuitem">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   963
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   964
-				      <property name="tooltip" translatable="yes">When idle or locked, choose a random display mode from among the checked items in the list below.  Run that same mode on each monitor.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   965
-				      <property name="label" translatable="yes">_Same Random Savers</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   966
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   967
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   968
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   969
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   970
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   971
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   972
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   973
-			      <property name="padding">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   974
-			      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   975
-			      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   976
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   977
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   978
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   979
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   980
-			  <property name="padding">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   981
-			  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   982
-			  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   983
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   984
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   985
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   986
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   987
-			<widget class="GtkScrolledWindow" id="scroller">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   988
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   989
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   990
-			  <property name="hscrollbar_policy">GTK_POLICY_NEVER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   991
-			  <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   992
-			  <property name="shadow_type">GTK_SHADOW_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   993
-			  <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   994
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   995
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   996
-			    <widget class="GtkTreeView" id="list">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   997
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   998
-			      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
   999
-			      <property name="headers_visible">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1000
-			      <property name="rules_hint">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1001
-			      <property name="reorderable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1002
-			      <property name="enable_search">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1003
-			      <property name="fixed_height_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1004
-			      <property name="hover_selection">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1005
-			      <property name="hover_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1006
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1007
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1008
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1009
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1010
-			  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1011
-			  <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1012
-			  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1013
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1014
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1015
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1016
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1017
-			<widget class="GtkHBox" id="centering_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1018
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1019
-			  <property name="homogeneous">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1020
-			  <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1021
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1022
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1023
-			    <widget class="GtkHBox" id="next_prev_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1024
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1025
-			      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1026
-			      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1027
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1028
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1029
-				<widget class="GtkButton" id="next">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1030
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1031
-				  <property name="tooltip" translatable="yes">Run the next screen saver in the list in full-screen mode (click the mouse to return.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1032
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1033
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1034
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1035
-				  <signal name="clicked" handler="run_next_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1036
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1037
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1038
-				    <widget class="GtkArrow" id="arrow1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1039
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1040
-				      <property name="arrow_type">GTK_ARROW_DOWN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1041
-				      <property name="shadow_type">GTK_SHADOW_OUT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1042
-				      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1043
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1044
-				      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1045
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1046
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1047
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1048
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1049
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1050
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1051
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1052
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1053
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1054
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1055
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1056
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1057
-				<widget class="GtkButton" id="prev">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1058
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1059
-				  <property name="tooltip" translatable="yes">Run the previous screen saver in the list in full-screen mode (click the mouse to return.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1060
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1061
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1062
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1063
-				  <signal name="clicked" handler="run_prev_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1064
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1065
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1066
-				    <widget class="GtkArrow" id="arrow2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1067
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1068
-				      <property name="arrow_type">GTK_ARROW_UP</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1069
-				      <property name="shadow_type">GTK_SHADOW_OUT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1070
-				      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1071
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1072
-				      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1073
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1074
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1075
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1076
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1077
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1078
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1079
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1080
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1081
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1082
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1083
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1084
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1085
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1086
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1087
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1088
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1089
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1090
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1091
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1092
-			  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1093
-			  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1094
-			  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1095
-			  <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1096
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1097
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1098
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1099
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1100
-		      <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1101
-		      <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1102
-		      <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1103
-		      <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1104
-		      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1105
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1106
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1107
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1108
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1109
-		    <widget class="GtkFrame" id="preview_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1110
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1111
-		      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1112
-		      <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1113
-		      <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1114
-		      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1115
-			<atkrelation target="label1" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1116
-		      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1117
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1118
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1119
-			<widget class="GtkNotebook" id="preview_notebook">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1120
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1121
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1122
-			  <property name="show_tabs">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1123
-			  <property name="show_border">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1124
-			  <property name="tab_pos">GTK_POS_BOTTOM</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1125
-			  <property name="scrollable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1126
-			  <property name="enable_popup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1127
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1128
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1129
-			    <widget class="GtkAspectFrame" id="preview_aspectframe">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1130
-			      <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1131
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1132
-			      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1133
-			      <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1134
-			      <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1135
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1136
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1137
-			      <property name="ratio">1.33000004292</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1138
-			      <property name="obey_child">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1139
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1140
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1141
-				<widget class="GtkDrawingArea" id="preview">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1142
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1143
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1144
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1145
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1146
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1147
-			      <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1148
-			      <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1149
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1150
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1151
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1152
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1153
-			    <widget class="GtkLabel" id="preview_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1154
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1155
-			      <property name="label" translatable="yes">preview</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1156
-			      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1157
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1158
-			      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1159
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1160
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1161
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1162
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1163
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1164
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1165
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1166
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1167
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1168
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1169
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1170
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1171
-			      <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1172
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1173
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1174
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1175
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1176
-			    <widget class="GtkLabel" id="no_preview_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1177
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1178
-			      <property name="label" translatable="yes">No Preview
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1179
-Available</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1180
-			      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1181
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1182
-			      <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1183
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1184
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1185
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1186
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1187
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1188
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1189
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1190
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1191
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1192
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1193
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1194
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1195
-			      <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1196
-			      <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1197
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1198
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1199
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1200
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1201
-			    <widget class="GtkLabel" id="no_preview_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1202
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1203
-			      <property name="label" translatable="yes">no preview</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1204
-			      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1205
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1206
-			      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1207
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1208
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1209
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1210
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1211
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1212
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1213
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1214
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1215
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1216
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1217
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1218
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1219
-			      <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1220
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1221
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1222
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1223
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1224
-			    <widget class="GtkLabel" id="not_installed_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1225
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1226
-			      <property name="label" translatable="yes">Not
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1227
-Installed</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1228
-			      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1229
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1230
-			      <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1231
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1232
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1233
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1234
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1235
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1236
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1237
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1238
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1239
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1240
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1241
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1242
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1243
-			      <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1244
-			      <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1245
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1246
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1247
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1248
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1249
-			    <widget class="GtkLabel" id="not_installed_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1250
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1251
-			      <property name="label" translatable="yes">not installed</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1252
-			      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1253
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1254
-			      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1255
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1256
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1257
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1258
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1259
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1260
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1261
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1262
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1263
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1264
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1265
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1266
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1267
-			      <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1268
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1269
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1270
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1271
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1272
-			    <widget class="GtkLabel" id="nothing_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1273
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1274
-			      <property name="label" translatable="yes">Very few (or no) screen savers appear to be available.
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1275
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1276
-This probably means that the &quot;xscreensaver-extras&quot; and
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1277
-&quot;xscreensaver-gl-extras&quot; packages are not installed.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1278
-			      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1279
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1280
-			      <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1281
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1282
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1283
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1284
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1285
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1286
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1287
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1288
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1289
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1290
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1291
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1292
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1293
-			      <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1294
-			      <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1295
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1296
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1297
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1298
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1299
-			    <widget class="GtkLabel" id="nothing_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1300
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1301
-			      <property name="label" translatable="yes">nothing</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1302
-			      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1303
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1304
-			      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1305
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1306
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1307
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1308
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1309
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1310
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1311
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1312
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1313
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1314
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1315
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1316
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1317
-			      <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1318
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1319
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1320
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1321
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1322
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1323
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1324
-			<widget class="GtkLabel" id="label1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1325
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1326
-			  <property name="label" translatable="yes">Description</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1327
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1328
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1329
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1330
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1331
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1332
-			  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1333
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1334
-			  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1335
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1336
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1337
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1338
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1339
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1340
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1341
-			    <atkrelation target="preview_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1342
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1343
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1344
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1345
-			  <property name="type">label_item</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1346
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1347
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1348
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1349
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1350
-		      <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1351
-		      <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1352
-		      <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1353
-		      <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1354
-		      <property name="y_padding">6</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1355
-		      <property name="x_options">expand|shrink|fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1356
-		      <property name="y_options">expand|shrink|fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1357
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1358
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1359
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1360
-		<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1361
-		  <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1362
-		  <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1363
-		</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1364
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1365
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1366
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1367
-		<widget class="GtkLabel" id="demo_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1368
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1369
-		  <property name="label" translatable="yes">_Display Modes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1370
-		  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1371
-		  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1372
-		  <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1373
-		  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1374
-		  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1375
-		  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1376
-		  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1377
-		  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1378
-		  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1379
-		  <property name="mnemonic_widget">notebook</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1380
-		  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1381
-		  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1382
-		  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1383
-		  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1384
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1385
-		<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1386
-		  <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1387
-		</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1388
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1389
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1390
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1391
-		<widget class="GtkTable" id="options_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1392
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1393
-		  <property name="n_rows">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1394
-		  <property name="n_columns">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1395
-		  <property name="homogeneous">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1396
-		  <property name="row_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1397
-		  <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1398
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1399
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1400
-		    <widget class="GtkFrame" id="grab_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1401
-		      <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1402
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1403
-		      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1404
-		      <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1405
-		      <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1406
-		      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1407
-			<atkrelation target="label2" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1408
-		      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1409
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1410
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1411
-			<widget class="GtkHBox" id="grab_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1412
-			  <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1413
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1414
-			  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1415
-			  <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1416
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1417
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1418
-			    <widget class="GtkImage" id="image2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1419
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1420
-			      <property name="pixbuf">screensaver-snap.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1421
-			      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1422
-			      <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1423
-			      <property name="xpad">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1424
-			      <property name="ypad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1425
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1426
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1427
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1428
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1429
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1430
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1431
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1432
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1433
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1434
-			    <widget class="GtkVBox" id="grab_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1435
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1436
-			      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1437
-			      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1438
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1439
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1440
-				<widget class="GtkCheckButton" id="grab_desk_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1441
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1442
-				  <property name="tooltip" translatable="yes">Whether the image-manipulating modes should be allowed to operate on an image of your desktop.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1443
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1444
-				  <property name="label" translatable="yes">Grab Desktop _Images</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1445
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1446
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1447
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1448
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1449
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1450
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1451
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1452
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1453
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1454
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1455
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1456
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1457
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1458
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1459
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1460
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1461
-				<widget class="GtkCheckButton" id="grab_video_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1462
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1463
-				  <property name="tooltip" translatable="yes">Whether the image-manipulating modes should operate on images captured from the system's video input (if there is one.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1464
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1465
-				  <property name="label" translatable="yes">Grab _Video Frames</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1466
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1467
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1468
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1469
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1470
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1471
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1472
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1473
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1474
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1475
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1476
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1477
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1478
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1479
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1480
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1481
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1482
-				<widget class="GtkCheckButton" id="grab_image_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1483
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1484
-				  <property name="tooltip" translatable="yes">Whether the image-manipulating modes should load image files.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1485
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1486
-				  <property name="label" translatable="yes">Choose _Random Image:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1487
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1488
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1489
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1490
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1491
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1492
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1493
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1494
-				    <atkrelation target="image_text" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1495
-				    <atkrelation target="image_browse_button" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1496
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1497
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1498
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1499
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1500
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1501
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1502
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1503
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1504
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1505
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1506
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1507
-				<widget class="GtkHBox" id="image_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1508
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1509
-				  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1510
-				  <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1511
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1512
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1513
-				    <widget class="GtkLabel" id="grab_dummy">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1514
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1515
-				      <property name="label" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1516
-				      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1517
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1518
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1519
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1520
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1521
-				      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1522
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1523
-				      <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1524
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1525
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1526
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1527
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1528
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1529
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1530
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1531
-				      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1532
-				      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1533
-				      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1534
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1535
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1536
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1537
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1538
-				    <widget class="GtkEntry" id="image_text">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1539
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1540
-				      <property name="tooltip" translatable="yes">The local directory, RSS feed or Atom feed from which images will be randomly chosen.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1541
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1542
-				      <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1543
-				      <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1544
-				      <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1545
-				      <property name="text" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1546
-				      <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1547
-				      <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1548
-				      <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1549
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1550
-					<atkrelation target="grab_image_button" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1551
-					<atkrelation target="grab_image_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1552
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1553
-				      <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1554
-				      <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1555
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1556
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1557
-				      <property name="padding">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1558
-				      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1559
-				      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1560
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1561
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1562
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1563
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1564
-				    <widget class="GtkButton" id="image_browse_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1565
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1566
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1567
-				      <property name="label" translatable="yes">_Browse</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1568
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1569
-				      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1570
-				      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1571
-				      <signal name="clicked" handler="browse_image_dir_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1572
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1573
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1574
-				      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1575
-				      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1576
-				      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1577
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1578
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1579
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1580
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1581
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1582
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1583
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1584
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1585
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1586
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1587
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1588
-				<widget class="GtkLabel" id="label8">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1589
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1590
-				  <property name="label" translatable="yes">Local directory, or RSS feed URL.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1591
-				  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1592
-				  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1593
-				  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1594
-				  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1595
-				  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1596
-				  <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1597
-				  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1598
-				  <property name="xpad">20</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1599
-				  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1600
-				  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1601
-				  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1602
-				  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1603
-				  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1604
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1605
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1606
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1607
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1608
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1609
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1610
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1611
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1612
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1613
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1614
-			      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1615
-			      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1616
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1617
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1618
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1619
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1620
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1621
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1622
-			<widget class="GtkLabel" id="label2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1623
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1624
-			  <property name="label" translatable="yes">Image Manipulation</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1625
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1626
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1627
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1628
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1629
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1630
-			  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1631
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1632
-			  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1633
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1634
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1635
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1636
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1637
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1638
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1639
-			    <atkrelation target="grab_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1640
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1641
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1642
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1643
-			  <property name="type">label_item</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1644
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1645
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1646
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1647
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1648
-		      <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1649
-		      <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1650
-		      <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1651
-		      <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1652
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1653
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1654
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1655
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1656
-		    <widget class="GtkFrame" id="diag_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1657
-		      <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1658
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1659
-		      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1660
-		      <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1661
-		      <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1662
-		      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1663
-			<atkrelation target="label3" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1664
-		      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1665
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1666
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1667
-			<widget class="GtkHBox" id="diag_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1668
-			  <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1669
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1670
-			  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1671
-			  <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1672
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1673
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1674
-			    <widget class="GtkImage" id="diag_logo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1675
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1676
-			      <property name="pixbuf">screensaver-diagnostic.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1677
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1678
-			      <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1679
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1680
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1681
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1682
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1683
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1684
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1685
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1686
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1687
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1688
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1689
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1690
-			    <widget class="GtkTable" id="text_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1691
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1692
-			      <property name="n_rows">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1693
-			      <property name="n_columns">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1694
-			      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1695
-			      <property name="row_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1696
-			      <property name="column_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1697
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1698
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1699
-				<widget class="GtkRadioButton" id="text_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1700
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1701
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the text typed here.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1702
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1703
-				  <property name="label" translatable="yes">_Text</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1704
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1705
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1706
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1707
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1708
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1709
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1710
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1711
-				    <atkrelation target="text_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1712
-				    <atkrelation target="text_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1713
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1714
-				  <signal name="toggled" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:31:44 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1715
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1716
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1717
-				  <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1718
-				  <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1719
-				  <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1720
-				  <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1721
-				  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1722
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1723
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1724
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1725
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1726
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1727
-				<widget class="GtkRadioButton" id="text_file_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1728
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1729
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the contents of this file.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1730
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1731
-				  <property name="label" translatable="yes">Text _file</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1732
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1733
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1734
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1735
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1736
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1737
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1738
-				  <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1739
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1740
-				    <atkrelation target="text_file_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1741
-				    <atkrelation target="text_file_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1742
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1743
-				  <signal name="toggled" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:31:55 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1744
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1745
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1746
-				  <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1747
-				  <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1748
-				  <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1749
-				  <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1750
-				  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1751
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1752
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1753
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1754
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1755
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1756
-				<widget class="GtkRadioButton" id="text_program_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1757
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1758
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the output of this program.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1759
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1760
-				  <property name="label" translatable="yes">_Program</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1761
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1762
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1763
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1764
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1765
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1766
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1767
-				  <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1768
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1769
-				    <atkrelation target="text_program_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1770
-				    <atkrelation target="text_program_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1771
-				    <atkrelation target="text_program_browse" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1772
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1773
-				  <signal name="toggled" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:07 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1774
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1775
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1776
-				  <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1777
-				  <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1778
-				  <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1779
-				  <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1780
-				  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1781
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1782
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1783
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1784
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1785
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1786
-				<widget class="GtkRadioButton" id="text_url_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1787
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1788
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the contents of this URL (HTML or RSS).</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1789
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1790
-				  <property name="label" translatable="yes">_URL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1791
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1792
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1793
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1794
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1795
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1796
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1797
-				  <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1798
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1799
-				    <atkrelation target="text_url_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1800
-				    <atkrelation target="text_url_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1801
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1802
-				  <signal name="toggled" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:17 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1803
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1804
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1805
-				  <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1806
-				  <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1807
-				  <property name="top_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1808
-				  <property name="bottom_attach">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1809
-				  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1810
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1811
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1812
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1813
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1814
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1815
-				<widget class="GtkRadioButton" id="text_host_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1816
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1817
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the local host name, date, and time.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1818
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1819
-				  <property name="label" translatable="yes">_Host Name and Time</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1820
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1821
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1822
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1823
-				  <property name="active">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1824
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1825
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1826
-				  <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1827
-				  <signal name="toggled" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:31:32 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1828
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1829
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1830
-				  <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1831
-				  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1832
-				  <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1833
-				  <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1834
-				  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1835
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1836
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1837
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1838
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1839
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1840
-				<widget class="GtkEntry" id="text_url_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1841
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1842
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the contents of this URL (HTML or RSS).</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1843
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1844
-				  <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1845
-				  <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1846
-				  <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1847
-				  <property name="text" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1848
-				  <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1849
-				  <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1850
-				  <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1851
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1852
-				    <atkrelation target="text_url_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1853
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1854
-				  <signal name="activate" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:33:10 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1855
-				  <signal name="focus_out_event" handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:34:26 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1856
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1857
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1858
-				  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1859
-				  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1860
-				  <property name="top_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1861
-				  <property name="bottom_attach">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1862
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1863
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1864
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1865
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1866
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1867
-				<widget class="GtkButton" id="text_file_browse">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1868
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1869
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1870
-				  <property name="label" translatable="yes">_Browse</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1871
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1872
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1873
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1874
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1875
-				    <atkrelation target="text_file_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1876
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1877
-				  <signal name="clicked" handler="browse_text_file_cb" last_modification_time="Sun, 20 Mar 2005 01:24:38 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1878
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1879
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1880
-				  <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1881
-				  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1882
-				  <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1883
-				  <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1884
-				  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1885
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1886
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1887
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1888
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1889
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1890
-				<widget class="GtkEntry" id="text_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1891
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1892
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the text typed here.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1893
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1894
-				  <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1895
-				  <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1896
-				  <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1897
-				  <property name="text" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1898
-				  <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1899
-				  <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1900
-				  <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1901
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1902
-				    <atkrelation target="text_program_radio" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1903
-				    <atkrelation target="text_program_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1904
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1905
-				  <signal name="activate" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:42 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1906
-				  <signal name="focus_out_event" handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:33:43 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1907
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1908
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1909
-				  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1910
-				  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1911
-				  <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1912
-				  <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1913
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1914
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1915
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1916
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1917
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1918
-				<widget class="GtkEntry" id="text_program_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1919
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1920
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the output of this program.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1921
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1922
-				  <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1923
-				  <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1924
-				  <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1925
-				  <property name="text" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1926
-				  <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1927
-				  <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1928
-				  <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1929
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1930
-				    <atkrelation target="text_program_radio" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1931
-				    <atkrelation target="text_program_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1932
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1933
-				  <signal name="activate" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:33:02 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1934
-				  <signal name="focus_out_event" handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:34:15 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1935
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1936
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1937
-				  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1938
-				  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1939
-				  <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1940
-				  <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1941
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1942
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1943
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1944
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1945
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1946
-				<widget class="GtkButton" id="text_program_browse">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1947
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1948
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1949
-				  <property name="label" translatable="yes">_Browse</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1950
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1951
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1952
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1953
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1954
-				    <atkrelation target="text_program_radio" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1955
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1956
-				  <signal name="clicked" handler="browse_text_program_cb" last_modification_time="Sun, 20 Mar 2005 01:24:51 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1957
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1958
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1959
-				  <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1960
-				  <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1961
-				  <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1962
-				  <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1963
-				  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1964
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1965
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1966
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1967
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1968
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1969
-				<widget class="GtkEntry" id="text_file_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1970
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1971
-				  <property name="tooltip" translatable="yes">Text-displaying modes will display the contents of this file.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1972
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1973
-				  <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1974
-				  <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1975
-				  <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1976
-				  <property name="text" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1977
-				  <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1978
-				  <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1979
-				  <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1980
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1981
-				    <atkrelation target="text_file_radio" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1982
-				    <atkrelation target="text_file_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1983
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1984
-				  <signal name="activate" handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:53 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1985
-				  <signal name="focus_out_event" handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:33:55 GMT"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1986
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1987
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1988
-				  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1989
-				  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1990
-				  <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1991
-				  <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1992
-				  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1993
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1994
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1995
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1996
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1997
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1998
-			      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  1999
-			      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2000
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2001
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2002
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2003
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2004
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2005
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2006
-			<widget class="GtkLabel" id="label3">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2007
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2008
-			  <property name="label" translatable="yes">Text Manipulation</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2009
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2010
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2011
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2012
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2013
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2014
-			  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2015
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2016
-			  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2017
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2018
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2019
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2020
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2021
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2022
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2023
-			    <atkrelation target="diag_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2024
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2025
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2026
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2027
-			  <property name="type">label_item</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2028
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2029
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2030
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2031
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2032
-		      <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2033
-		      <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2034
-		      <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2035
-		      <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2036
-		      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2037
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2038
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2039
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2040
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2041
-		    <widget class="GtkFrame" id="dpms_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2042
-		      <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2043
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2044
-		      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2045
-		      <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2046
-		      <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2047
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2048
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2049
-			<widget class="GtkHBox" id="dpms_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2050
-			  <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2051
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2052
-			  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2053
-			  <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2054
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2055
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2056
-			    <widget class="GtkImage" id="dpms_logo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2057
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2058
-			      <property name="pixbuf">screensaver-power.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2059
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2060
-			      <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2061
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2062
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2063
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2064
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2065
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2066
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2067
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2068
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2069
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2070
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2071
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2072
-			    <widget class="GtkVBox" id="vbox6">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2073
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2074
-			      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2075
-			      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2076
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2077
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2078
-				<widget class="GtkCheckButton" id="dpms_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2079
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2080
-				  <property name="tooltip" translatable="yes">Whether the monitor should be powered down after a while.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2081
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2082
-				  <property name="label" translatable="yes">_Power Management Enabled</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2083
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2084
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2085
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2086
-				  <property name="active">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2087
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2088
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2089
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2090
-				    <atkrelation target="dpms_suspend_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2091
-				    <atkrelation target="dpms_standby_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2092
-				    <atkrelation target="dpms_off_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2093
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2094
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2095
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2096
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2097
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2098
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2099
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2100
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2101
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2102
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2103
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2104
-				<widget class="GtkTable" id="dpms_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2105
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2106
-				  <property name="n_rows">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2107
-				  <property name="n_columns">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2108
-				  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2109
-				  <property name="row_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2110
-				  <property name="column_spacing">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2111
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2112
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2113
-				    <widget class="GtkLabel" id="dpms_standby_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2114
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2115
-				      <property name="label" translatable="yes">Stand_by After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2116
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2117
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2118
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2119
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2120
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2121
-				      <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2122
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2123
-				      <property name="xpad">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2124
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2125
-				      <property name="mnemonic_widget">dpms_standby_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2126
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2127
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2128
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2129
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2130
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2131
-					<atkrelation target="dpms_standby_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2132
-					<atkrelation target="dpms_standby_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2133
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2134
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2135
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2136
-				      <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2137
-				      <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2138
-				      <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2139
-				      <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2140
-				      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2141
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2142
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2143
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2144
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2145
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2146
-				    <widget class="GtkLabel" id="dpms_suspend_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2147
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2148
-				      <property name="label" translatable="yes">Sus_pend After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2149
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2150
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2151
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2152
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2153
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2154
-				      <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2155
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2156
-				      <property name="xpad">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2157
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2158
-				      <property name="mnemonic_widget">dpms_suspend_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2159
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2160
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2161
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2162
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2163
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2164
-					<atkrelation target="dpms_suspend_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2165
-					<atkrelation target="dpms_suspend_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2166
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2167
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2168
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2169
-				      <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2170
-				      <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2171
-				      <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2172
-				      <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2173
-				      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2174
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2175
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2176
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2177
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2178
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2179
-				    <widget class="GtkLabel" id="dpms_off_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2180
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2181
-				      <property name="label" translatable="yes">_Off After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2182
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2183
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2184
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2185
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2186
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2187
-				      <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2188
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2189
-				      <property name="xpad">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2190
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2191
-				      <property name="mnemonic_widget">dpms_off_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2192
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2193
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2194
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2195
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2196
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2197
-					<atkrelation target="dpms_off_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2198
-					<atkrelation target="dpms_off_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2199
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2200
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2201
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2202
-				      <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2203
-				      <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2204
-				      <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2205
-				      <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2206
-				      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2207
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2208
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2209
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2210
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2211
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2212
-				    <widget class="GtkLabel" id="dpms_standby_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2213
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2214
-				      <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2215
-				      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2216
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2217
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2218
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2219
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2220
-				      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2221
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2222
-				      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2223
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2224
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2225
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2226
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2227
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2228
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2229
-					<atkrelation target="dpms_standby_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2230
-					<atkrelation target="dpms_standby_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2231
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2232
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2233
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2234
-				      <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2235
-				      <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2236
-				      <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2237
-				      <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2238
-				      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2239
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2240
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2241
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2242
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2243
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2244
-				    <widget class="GtkLabel" id="dpms_suspend_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2245
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2246
-				      <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2247
-				      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2248
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2249
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2250
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2251
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2252
-				      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2253
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2254
-				      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2255
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2256
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2257
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2258
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2259
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2260
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2261
-					<atkrelation target="dpms_suspend_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2262
-					<atkrelation target="dpms_suspend_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2263
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2264
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2265
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2266
-				      <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2267
-				      <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2268
-				      <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2269
-				      <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2270
-				      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2271
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2272
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2273
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2274
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2275
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2276
-				    <widget class="GtkLabel" id="dpms_off_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2277
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2278
-				      <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2279
-				      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2280
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2281
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2282
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2283
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2284
-				      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2285
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2286
-				      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2287
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2288
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2289
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2290
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2291
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2292
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2293
-					<atkrelation target="dpms_off_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2294
-					<atkrelation target="dpms_off_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2295
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2296
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2297
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2298
-				      <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2299
-				      <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2300
-				      <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2301
-				      <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2302
-				      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2303
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2304
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2305
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2306
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2307
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2308
-				    <widget class="GtkSpinButton" id="dpms_off_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2309
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2310
-				      <property name="tooltip" translatable="yes">How long until the monitor powers down.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2311
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2312
-				      <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2313
-				      <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2314
-				      <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2315
-				      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2316
-				      <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2317
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2318
-				      <property name="adjustment">0 0 1440 1 15 0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2319
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2320
-					<atkrelation target="dpms_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2321
-					<atkrelation target="dpms_off_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2322
-					<atkrelation target="dpms_off_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2323
-					<atkrelation target="dpms_off_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2324
-					<atkrelation target="dpms_off_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2325
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2326
-				      <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2327
-				      <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2328
-				      <signal name="value_changed" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2329
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2330
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2331
-				      <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2332
-				      <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2333
-				      <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2334
-				      <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2335
-				      <property name="x_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2336
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2337
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2338
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2339
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2340
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2341
-				    <widget class="GtkSpinButton" id="dpms_suspend_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2342
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2343
-				      <property name="tooltip" translatable="yes">How long until the monitor goes into power-saving mode.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2344
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2345
-				      <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2346
-				      <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2347
-				      <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2348
-				      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2349
-				      <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2350
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2351
-				      <property name="adjustment">0 0 1440 1 15 0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2352
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2353
-					<atkrelation target="dpms_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2354
-					<atkrelation target="dpms_suspend_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2355
-					<atkrelation target="dpms_suspend_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2356
-					<atkrelation target="dpms_suspend_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2357
-					<atkrelation target="dpms_suspend_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2358
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2359
-				      <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2360
-				      <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2361
-				      <signal name="value_changed" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2362
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2363
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2364
-				      <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2365
-				      <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2366
-				      <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2367
-				      <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2368
-				      <property name="x_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2369
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2370
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2371
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2372
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2373
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2374
-				    <widget class="GtkSpinButton" id="dpms_standby_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2375
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2376
-				      <property name="tooltip" translatable="yes">How long until the monitor goes completely black.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2377
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2378
-				      <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2379
-				      <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2380
-				      <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2381
-				      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2382
-				      <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2383
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2384
-				      <property name="adjustment">0 0 1440 1 15 0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2385
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2386
-					<atkrelation target="dpms_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2387
-					<atkrelation target="dpms_standby_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2388
-					<atkrelation target="dpms_standby_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2389
-					<atkrelation target="dpms_standby_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2390
-					<atkrelation target="dpms_standby_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2391
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2392
-				      <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2393
-				      <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2394
-				      <signal name="value_changed" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2395
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2396
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2397
-				      <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2398
-				      <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2399
-				      <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2400
-				      <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2401
-				      <property name="x_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2402
-				      <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2403
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2404
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2405
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2406
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2407
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2408
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2409
-				  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2410
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2411
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2412
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2413
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2414
-				<widget class="GtkCheckButton" id="dpms_quickoff_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2415
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2416
-				  <property name="tooltip" translatable="yes">Whether the monitor should be powered off immediately in "Blank Screen Only" mode, regardless of the above power-management timeouts.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2417
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2418
-				  <property name="label" translatable="yes">_Quick Power-off in Blank Only Mode</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2419
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2420
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2421
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2422
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2423
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2424
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2425
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2426
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2427
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2428
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2429
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2430
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2431
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2432
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2433
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2434
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2435
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2436
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2437
-			      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2438
-			      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2439
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2440
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2441
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2442
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2443
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2444
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2445
-			<widget class="GtkLabel" id="label4">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2446
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2447
-			  <property name="label" translatable="yes">Display Power Management</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2448
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2449
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2450
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2451
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2452
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2453
-			  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2454
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2455
-			  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2456
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2457
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2458
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2459
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2460
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2461
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2462
-			    <atkrelation target="dpms_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2463
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2464
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2465
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2466
-			  <property name="type">label_item</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2467
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2468
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2469
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2470
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2471
-		      <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2472
-		      <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2473
-		      <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2474
-		      <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2475
-		      <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2476
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2477
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2478
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2479
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2480
-		    <widget class="GtkFrame" id="cmap_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2481
-		      <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2482
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2483
-		      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2484
-		      <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2485
-		      <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2486
-		      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2487
-			<atkrelation target="label5" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2488
-		      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2489
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2490
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2491
-			<widget class="GtkHBox" id="cmap_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2492
-			  <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2493
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2494
-			  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2495
-			  <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2496
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2497
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2498
-			    <widget class="GtkImage" id="image5">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2499
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2500
-			      <property name="pixbuf">screensaver-colorselector.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2501
-			      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2502
-			      <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2503
-			      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2504
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2505
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2506
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2507
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2508
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2509
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2510
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2511
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2512
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2513
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2514
-			    <widget class="GtkVBox" id="vbox7">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2515
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2516
-			      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2517
-			      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2518
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2519
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2520
-				<widget class="GtkCheckButton" id="fade_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2521
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2522
-				  <property name="tooltip" translatable="yes">Whether the screen should slowly fade to black when the screen saver activates.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2523
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2524
-				  <property name="label" translatable="yes">Fade to Black when _Blanking</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2525
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2526
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2527
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2528
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2529
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2530
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2531
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2532
-				    <atkrelation target="fade_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2533
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2534
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2535
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2536
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2537
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2538
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2539
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2540
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2541
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2542
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2543
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2544
-				<widget class="GtkCheckButton" id="unfade_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2545
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2546
-				  <property name="tooltip" translatable="yes">Whether the screen should slowly fade in from black when the screen saver deactivates.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2547
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2548
-				  <property name="label" translatable="yes">Fade from Black When _Unblanking</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2549
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2550
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2551
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2552
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2553
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2554
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2555
-				  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2556
-				    <atkrelation target="fade_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2557
-				  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2558
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2559
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2560
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2561
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2562
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2563
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2564
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2565
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2566
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2567
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2568
-				<widget class="GtkHBox" id="fade_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2569
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2570
-				  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2571
-				  <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2572
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2573
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2574
-				    <widget class="GtkLabel" id="fade_dummy">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2575
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2576
-				      <property name="label" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2577
-				      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2578
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2579
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2580
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2581
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2582
-				      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2583
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2584
-				      <property name="xpad">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2585
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2586
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2587
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2588
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2589
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2590
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2591
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2592
-				      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2593
-				      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2594
-				      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2595
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2596
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2597
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2598
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2599
-				    <widget class="GtkLabel" id="fade_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2600
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2601
-				      <property name="label" translatable="yes">F_ade Duration</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2602
-				      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2603
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2604
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2605
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2606
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2607
-				      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2608
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2609
-				      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2610
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2611
-				      <property name="mnemonic_widget">fade_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2612
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2613
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2614
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2615
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2616
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2617
-					<atkrelation target="fade_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2618
-					<atkrelation target="fade_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2619
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2620
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2621
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2622
-				      <property name="padding">14</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2623
-				      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2624
-				      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2625
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2626
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2627
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2628
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2629
-				    <widget class="GtkSpinButton" id="fade_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2630
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2631
-				      <property name="tooltip" translatable="yes">How long it should take for the screen to fade in and out.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2632
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2633
-				      <property name="climb_rate">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2634
-				      <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2635
-				      <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2636
-				      <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2637
-				      <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2638
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2639
-				      <property name="adjustment">0 0 10 1 1 0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2640
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2641
-					<atkrelation target="unfade_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2642
-					<atkrelation target="fade_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2643
-					<atkrelation target="fade_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2644
-					<atkrelation target="fade_sec_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2645
-					<atkrelation target="fade_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2646
-					<atkrelation target="fade_sec_label" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2647
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2648
-				      <signal name="activate" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2649
-				      <signal name="focus_out_event" handler="pref_changed_event_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2650
-				      <signal name="value_changed" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2651
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2652
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2653
-				      <property name="padding">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2654
-				      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2655
-				      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2656
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2657
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2658
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2659
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2660
-				    <widget class="GtkLabel" id="fade_sec_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2661
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2662
-				      <property name="label" translatable="yes">seconds</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2663
-				      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2664
-				      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2665
-				      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2666
-				      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2667
-				      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2668
-				      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2669
-				      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2670
-				      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2671
-				      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2672
-				      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2673
-				      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2674
-				      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2675
-				      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2676
-				      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2677
-					<atkrelation target="fade_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2678
-					<atkrelation target="fade_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2679
-				      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2680
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2681
-				    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2682
-				      <property name="padding">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2683
-				      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2684
-				      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2685
-				    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2686
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2687
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2688
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2689
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2690
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2691
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2692
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2693
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2694
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2695
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2696
-				<widget class="GtkHSeparator" id="cmap_hr">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2697
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2698
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2699
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2700
-				  <property name="padding">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2701
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2702
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2703
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2704
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2705
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2706
-			      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2707
-				<widget class="GtkCheckButton" id="install_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2708
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2709
-				  <property name="tooltip" translatable="yes">Whether to install a private colormap when running in 8-bit mode on the default Visual.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2710
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2711
-				  <property name="label" translatable="yes">Install _Colormap</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2712
-				  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2713
-				  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2714
-				  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2715
-				  <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2716
-				  <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2717
-				  <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2718
-				  <signal name="toggled" handler="pref_changed_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2719
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2720
-				<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2721
-				  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2722
-				  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2723
-				  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2724
-				</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2725
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2726
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2727
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2728
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2729
-			      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2730
-			      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2731
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2732
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2733
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2734
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2735
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2736
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2737
-			<widget class="GtkLabel" id="label5">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2738
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2739
-			  <property name="label" translatable="yes">Fading and Colormaps</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2740
-			  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2741
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2742
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2743
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2744
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2745
-			  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2746
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2747
-			  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2748
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2749
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2750
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2751
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2752
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2753
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2754
-			    <atkrelation target="cmap_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2755
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2756
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2757
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2758
-			  <property name="type">label_item</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2759
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2760
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2761
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2762
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2763
-		      <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2764
-		      <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2765
-		      <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2766
-		      <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2767
-		      <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2768
-		      <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2769
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2770
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2771
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2772
-		<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2773
-		  <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2774
-		  <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2775
-		</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2776
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2777
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2778
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2779
-		<widget class="GtkLabel" id="options_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2780
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2781
-		  <property name="label" translatable="yes">_Advanced</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2782
-		  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2783
-		  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2784
-		  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2785
-		  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2786
-		  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2787
-		  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2788
-		  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2789
-		  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2790
-		  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2791
-		  <property name="mnemonic_widget">notebook</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2792
-		  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2793
-		  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2794
-		  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2795
-		  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2796
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2797
-		<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2798
-		  <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2799
-		</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2800
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2801
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2802
-	    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2803
-	      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2804
-	      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2805
-	      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2806
-	    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2807
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2808
-	</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2809
-	<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2810
-	  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2811
-	  <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2812
-	  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2813
-	</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2814
-      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2815
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2816
-      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2817
-	<widget class="GtkHButtonBox" id="hbuttonbox2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2818
-	  <property name="border_width">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2819
-	  <property name="layout_style">GTK_BUTTONBOX_EDGE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2820
-	  <property name="spacing">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2821
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2822
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2823
-	    <widget class="GtkButton" id="helpbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2824
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2825
-	      <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2826
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2827
-	      <property name="label">gtk-help</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2828
-	      <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2829
-	      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2830
-	      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2831
-	      <signal name="clicked" handler="doc_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2832
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2833
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2834
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2835
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2836
-	    <widget class="GtkButton" id="closebutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2837
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2838
-	      <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2839
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2840
-	      <property name="label">gtk-close</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2841
-	      <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2842
-	      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2843
-	      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2844
-	      <signal name="clicked" handler="exit_menu_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2845
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2846
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2847
-	</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2848
-	<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2849
-	  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2850
-	  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2851
-	  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2852
-	  <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2853
-	</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2854
-      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2855
-    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2856
-  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2857
-</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2858
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2859
-<widget class="GtkDialog" id="xscreensaver_settings_dialog">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2860
-  <property name="title" translatable="yes">dialog1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2861
-  <property name="type">GTK_WINDOW_TOPLEVEL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2862
-  <property name="window_position">GTK_WIN_POS_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2863
-  <property name="modal">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2864
-  <property name="resizable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2865
-  <property name="destroy_with_parent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2866
-  <property name="decorated">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2867
-  <property name="skip_taskbar_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2868
-  <property name="skip_pager_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2869
-  <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2870
-  <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2871
-  <property name="focus_on_map">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2872
-  <property name="urgency_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2873
-  @COMMENT_DEMO_GLADE2_GTK_2_22_HEAD@<property name="has_separator">False</property>@COMMENT_DEMO_GLADE2_GTK_2_22_TAIL@
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2874
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2875
-  <child internal-child="vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2876
-    <widget class="GtkVBox" id="dialog_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2877
-      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2878
-      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2879
-      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2880
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2881
-      <child internal-child="action_area">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2882
-	<widget class="GtkHButtonBox" id="dialog_action_area">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2883
-	  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2884
-	  <property name="layout_style">GTK_BUTTONBOX_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2885
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2886
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2887
-	    <widget class="GtkButton" id="adv_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2888
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2889
-	      <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2890
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2891
-	      <property name="label" translatable="yes">_Advanced &gt;&gt;</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2892
-	      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2893
-	      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2894
-	      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2895
-	      <property name="response_id">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2896
-	      <signal name="clicked" handler="settings_adv_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2897
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2898
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2899
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2900
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2901
-	    <widget class="GtkButton" id="std_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2902
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2903
-	      <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2904
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2905
-	      <property name="label" translatable="yes">_Standard &lt;&lt;</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2906
-	      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2907
-	      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2908
-	      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2909
-	      <property name="response_id">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2910
-	      <signal name="clicked" handler="settings_std_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2911
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2912
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2913
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2914
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2915
-	    <widget class="GtkButton" id="reset_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2916
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2917
-	      <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2918
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2919
-	      <property name="label" translatable="yes">_Reset to Defaults</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2920
-	      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2921
-	      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2922
-	      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2923
-	      <property name="response_id">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2924
-	      <signal name="clicked" handler="settings_reset_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2925
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2926
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2927
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2928
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2929
-	    <widget class="GtkButton" id="cancel_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2930
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2931
-	      <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2932
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2933
-	      <property name="label">gtk-cancel</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2934
-	      <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2935
-	      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2936
-	      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2937
-	      <property name="response_id">-6</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2938
-	      <signal name="clicked" handler="settings_cancel_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2939
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2940
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2941
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2942
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2943
-	    <widget class="GtkButton" id="ok_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2944
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2945
-	      <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2946
-	      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2947
-	      <property name="label">gtk-ok</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2948
-	      <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2949
-	      <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2950
-	      <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2951
-	      <property name="response_id">-5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2952
-	      <signal name="clicked" handler="settings_ok_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2953
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2954
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2955
-	</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2956
-	<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2957
-	  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2958
-	  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2959
-	  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2960
-	  <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2961
-	</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2962
-      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2963
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2964
-      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2965
-	<widget class="GtkVBox" id="vbox1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2966
-	  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2967
-	  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2968
-	  <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2969
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2970
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2971
-	    <widget class="GtkFrame" id="opt_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2972
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2973
-	      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2974
-	      <property name="label_yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2975
-	      <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2976
-	      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2977
-		<atkrelation target="label6" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2978
-	      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2979
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2980
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2981
-		<widget class="GtkNotebook" id="opt_notebook">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2982
-		  <property name="border_width">12</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2983
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2984
-		  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2985
-		  <property name="show_tabs">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2986
-		  <property name="show_border">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2987
-		  <property name="tab_pos">GTK_POS_BOTTOM</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2988
-		  <property name="scrollable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2989
-		  <property name="enable_popup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2990
-		  <signal name="switch_page" handler="settings_switch_page_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2991
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2992
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2993
-		    <widget class="GtkVBox" id="settings_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2994
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2995
-		      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2996
-		      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2997
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2998
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  2999
-			<placeholder/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3000
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3001
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3002
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3003
-		      <property name="tab_expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3004
-		      <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3005
-		      <property name="tab_pack">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3006
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3007
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3008
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3009
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3010
-		    <widget class="GtkLabel" id="std_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3011
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3012
-		      <property name="label" translatable="yes">Standard</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3013
-		      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3014
-		      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3015
-		      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3016
-		      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3017
-		      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3018
-		      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3019
-		      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3020
-		      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3021
-		      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3022
-		      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3023
-		      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3024
-		      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3025
-		      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3026
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3027
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3028
-		      <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3029
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3030
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3031
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3032
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3033
-		    <widget class="GtkTable" id="adv_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3034
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3035
-		      <property name="n_rows">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3036
-		      <property name="n_columns">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3037
-		      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3038
-		      <property name="row_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3039
-		      <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3040
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3041
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3042
-			<widget class="GtkImage" id="cmd_logo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3043
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3044
-			  <property name="pixbuf">screensaver-cmndln.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3045
-			  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3046
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3047
-			  <property name="xpad">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3048
-			  <property name="ypad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3049
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3050
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3051
-			  <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3052
-			  <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3053
-			  <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3054
-			  <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3055
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3056
-			  <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3057
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3058
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3059
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3060
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3061
-			<widget class="GtkLabel" id="cmd_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3062
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3063
-			  <property name="label" translatable="yes">_Command Line:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3064
-			  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3065
-			  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3066
-			  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3067
-			  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3068
-			  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3069
-			  <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3070
-			  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3071
-			  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3072
-			  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3073
-			  <property name="mnemonic_widget">cmd_text</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3074
-			  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3075
-			  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3076
-			  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3077
-			  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3078
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3079
-			    <atkrelation target="cmd_text" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3080
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3081
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3082
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3083
-			  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3084
-			  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3085
-			  <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3086
-			  <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3087
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3088
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3089
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3090
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3091
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3092
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3093
-			<widget class="GtkEntry" id="cmd_text">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3094
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3095
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3096
-			  <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3097
-			  <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3098
-			  <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3099
-			  <property name="text" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3100
-			  <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3101
-			  <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3102
-			  <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3103
-			  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3104
-			    <atkrelation target="cmd_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3105
-			  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3106
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3107
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3108
-			  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3109
-			  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3110
-			  <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3111
-			  <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3112
-			  <property name="y_options"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3113
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3114
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3115
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3116
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3117
-			<widget class="GtkHBox" id="visual_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3118
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3119
-			  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3120
-			  <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3121
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3122
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3123
-			    <widget class="GtkLabel" id="visual">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3124
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3125
-			      <property name="label" translatable="yes">_Visual:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3126
-			      <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3127
-			      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3128
-			      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3129
-			      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3130
-			      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3131
-			      <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3132
-			      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3133
-			      <property name="xpad">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3134
-			      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3135
-			      <property name="mnemonic_widget">visual_entry</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3136
-			      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3137
-			      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3138
-			      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3139
-			      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3140
-			      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3141
-				<atkrelation target="visual_combo" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3142
-			      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3143
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3144
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3145
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3146
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3147
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3148
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3149
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3150
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3151
-			  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3152
-			    <widget class="GtkCombo" id="visual_combo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3153
-			      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3154
-			      <property name="value_in_list">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3155
-			      <property name="allow_empty">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3156
-			      <property name="case_sensitive">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3157
-			      <property name="enable_arrow_keys">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3158
-			      <property name="enable_arrows_always">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3159
-			      <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3160
-				<atkrelation target="visual" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3161
-			      </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3162
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3163
-			      <child internal-child="entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3164
-				<widget class="GtkEntry" id="visual_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3165
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3166
-				  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3167
-				  <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3168
-				  <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3169
-				  <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3170
-				  <property name="text" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3171
-				  <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3172
-				  <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3173
-				  <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3174
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3175
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3176
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3177
-			      <child internal-child="list">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3178
-				<widget class="GtkList" id="combo-list1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3179
-				  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3180
-				  <property name="selection_mode">GTK_SELECTION_BROWSE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3181
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3182
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3183
-				    <widget class="GtkListItem" id="listitem25">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3184
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3185
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3186
-				      <property name="label" translatable="yes">Any</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3187
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3188
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3189
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3190
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3191
-				    <widget class="GtkListItem" id="listitem26">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3192
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3193
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3194
-				      <property name="label" translatable="yes">Best</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3195
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3196
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3197
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3198
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3199
-				    <widget class="GtkListItem" id="listitem27">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3200
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3201
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3202
-				      <property name="label" translatable="yes">Default</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3203
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3204
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3205
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3206
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3207
-				    <widget class="GtkListItem" id="listitem28">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3208
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3209
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3210
-				      <property name="label" translatable="yes">Default-N</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3211
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3212
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3213
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3214
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3215
-				    <widget class="GtkListItem" id="listitem29">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3216
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3217
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3218
-				      <property name="label" translatable="yes">GL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3219
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3220
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3221
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3222
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3223
-				    <widget class="GtkListItem" id="listitem30">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3224
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3225
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3226
-				      <property name="label" translatable="yes">TrueColor</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3227
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3228
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3229
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3230
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3231
-				    <widget class="GtkListItem" id="listitem31">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3232
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3233
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3234
-				      <property name="label" translatable="yes">PseudoColor</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3235
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3236
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3237
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3238
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3239
-				    <widget class="GtkListItem" id="listitem32">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3240
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3241
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3242
-				      <property name="label" translatable="yes">StaticGray</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3243
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3244
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3245
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3246
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3247
-				    <widget class="GtkListItem" id="listitem33">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3248
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3249
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3250
-				      <property name="label" translatable="yes">GrayScale</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3251
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3252
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3253
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3254
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3255
-				    <widget class="GtkListItem" id="listitem34">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3256
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3257
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3258
-				      <property name="label" translatable="yes">DirectColor</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3259
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3260
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3261
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3262
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3263
-				    <widget class="GtkListItem" id="listitem35">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3264
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3265
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3266
-				      <property name="label" translatable="yes">Color</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3267
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3268
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3269
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3270
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3271
-				    <widget class="GtkListItem" id="listitem36">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3272
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3273
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3274
-				      <property name="label" translatable="yes">Gray</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3275
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3276
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3277
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3278
-				  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3279
-				    <widget class="GtkListItem" id="listitem37">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3280
-				      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3281
-				      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3282
-				      <property name="label" translatable="yes">Mono</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3283
-				    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3284
-				  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3285
-				</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3286
-			      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3287
-			    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3288
-			    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3289
-			      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3290
-			      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3291
-			      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3292
-			    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3293
-			  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3294
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3295
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3296
-			  <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3297
-			  <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3298
-			  <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3299
-			  <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3300
-			  <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3301
-			  <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3302
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3303
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3304
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3305
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3306
-		      <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3307
-		      <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3308
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3309
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3310
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3311
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3312
-		    <widget class="GtkLabel" id="adv_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3313
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3314
-		      <property name="label" translatable="yes">Advanced</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3315
-		      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3316
-		      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3317
-		      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3318
-		      <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3319
-		      <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3320
-		      <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3321
-		      <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3322
-		      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3323
-		      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3324
-		      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3325
-		      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3326
-		      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3327
-		      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3328
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3329
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3330
-		      <property name="type">tab</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3331
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3332
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3333
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3334
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3335
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3336
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3337
-		<widget class="GtkLabel" id="label6">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3338
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3339
-		  <property name="label" translatable="yes">Settings</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3340
-		  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3341
-		  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3342
-		  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3343
-		  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3344
-		  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3345
-		  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3346
-		  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3347
-		  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3348
-		  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3349
-		  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3350
-		  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3351
-		  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3352
-		  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3353
-		  <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3354
-		    <atkrelation target="opt_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3355
-		  </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3356
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3357
-		<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3358
-		  <property name="type">label_item</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3359
-		</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3360
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3361
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3362
-	    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3363
-	      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3364
-	      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3365
-	      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3366
-	    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3367
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3368
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3369
-	  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3370
-	    <widget class="GtkFrame" id="doc_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3371
-	      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3372
-	      <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3373
-	      <property name="label_yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3374
-	      <property name="shadow_type">GTK_SHADOW_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3375
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3376
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3377
-		<widget class="GtkVBox" id="doc_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3378
-		  <property name="border_width">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3379
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3380
-		  <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3381
-		  <property name="spacing">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3382
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3383
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3384
-		    <widget class="GtkLabel" id="doc">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3385
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3386
-		      <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3387
-		      <property name="label" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3388
-		      <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3389
-		      <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3390
-		      <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3391
-		      <property name="wrap">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3392
-		      <property name="selectable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3393
-		      <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3394
-		      <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3395
-		      <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3396
-		      <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3397
-		      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3398
-		      <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3399
-		      <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3400
-		      <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3401
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3402
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3403
-		      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3404
-		      <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3405
-		      <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3406
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3407
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3408
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3409
-		  <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3410
-		    <widget class="GtkHBox" id="hbox1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3411
-		      <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3412
-		      <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3413
-		      <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3414
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3415
-		      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3416
-			<widget class="GtkButton" id="manual">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3417
-			  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3418
-			  <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3419
-			  <property name="label" translatable="yes">_Documentation...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3420
-			  <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3421
-			  <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3422
-			  <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3423
-			  <signal name="clicked" handler="manual_cb"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3424
-			</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3425
-			<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3426
-			  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3427
-			  <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3428
-			  <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3429
-			  <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3430
-			</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3431
-		      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3432
-		    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3433
-		    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3434
-		      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3435
-		      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3436
-		      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3437
-		    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3438
-		  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3439
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3440
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3441
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3442
-	      <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3443
-		<widget class="GtkLabel" id="label7">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3444
-		  <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3445
-		  <property name="label" translatable="yes"></property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3446
-		  <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3447
-		  <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3448
-		  <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3449
-		  <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3450
-		  <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3451
-		  <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3452
-		  <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3453
-		  <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3454
-		  <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3455
-		  <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3456
-		  <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3457
-		  <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3458
-		  <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3459
-		</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3460
-		<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3461
-		  <property name="type">label_item</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3462
-		</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3463
-	      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3464
-	    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3465
-	    <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3466
-	      <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3467
-	      <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3468
-	      <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3469
-	    </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3470
-	  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3471
-	</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3472
-	<packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3473
-	  <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3474
-	  <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3475
-	  <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3476
-	</packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3477
-      </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3478
-    </widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3479
-  </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3480
-</widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3481
-
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3482
-</glade-interface>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3483
diff --git a/driver/xscreensaver-demo.ui.in b/driver/xscreensaver-demo.ui.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3484
new file mode 100644
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3485
index 0000000..9c31a9b
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3486
--- /dev/null
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3487
+++ b/driver/xscreensaver-demo.ui.in
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3488
@@ -0,0 +1,2912 @@
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3489
+<?xml version="1.0"?>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3490
+<!--*- mode: xml -*-->
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3491
+<interface>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3492
+  <object class="GtkAdjustment" id="adjustment1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3493
+    <property name="upper">720</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3494
+    <property name="lower">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3495
+    <property name="page_increment">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3496
+    <property name="step_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3497
+    <property name="page_size">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3498
+    <property name="value">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3499
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3500
+  <object class="GtkAdjustment" id="adjustment2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3501
+    <property name="upper">720</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3502
+    <property name="lower">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3503
+    <property name="page_increment">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3504
+    <property name="step_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3505
+    <property name="page_size">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3506
+    <property name="value">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3507
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3508
+  <object class="GtkAdjustment" id="adjustment3">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3509
+    <property name="upper">720</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3510
+    <property name="lower">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3511
+    <property name="page_increment">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3512
+    <property name="step_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3513
+    <property name="page_size">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3514
+    <property name="value">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3515
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3516
+  <object class="GtkAdjustment" id="adjustment4">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3517
+    <property name="upper">1440</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3518
+    <property name="lower">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3519
+    <property name="page_increment">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3520
+    <property name="step_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3521
+    <property name="page_size">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3522
+    <property name="value">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3523
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3524
+  <object class="GtkAdjustment" id="adjustment5">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3525
+    <property name="upper">1440</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3526
+    <property name="lower">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3527
+    <property name="page_increment">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3528
+    <property name="step_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3529
+    <property name="page_size">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3530
+    <property name="value">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3531
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3532
+  <object class="GtkAdjustment" id="adjustment6">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3533
+    <property name="upper">1440</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3534
+    <property name="lower">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3535
+    <property name="page_increment">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3536
+    <property name="step_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3537
+    <property name="page_size">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3538
+    <property name="value">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3539
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3540
+  <object class="GtkAdjustment" id="adjustment7">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3541
+    <property name="upper">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3542
+    <property name="lower">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3543
+    <property name="page_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3544
+    <property name="step_increment">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3545
+    <property name="page_size">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3546
+    <property name="value">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3547
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3548
+  <object class="GtkListStore" id="mode_menu_model">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3549
+    <columns>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3550
+      <column type="gchararray"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3551
+    </columns>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3552
+    <data>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3553
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3554
+        <col id="0" translatable="yes">Disable Screen Saver</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3555
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3556
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3557
+        <col id="0" translatable="yes">Blank Screen Only</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3558
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3559
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3560
+        <col id="0" translatable="yes">Only One Screen Saver</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3561
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3562
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3563
+        <col id="0" translatable="yes">Random Screen Saver</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3564
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3565
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3566
+        <col id="0" translatable="yes">Same Random Savers</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3567
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3568
+    </data>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3569
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3570
+  <object class="GtkListStore" id="visual_combo_model">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3571
+    <columns>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3572
+      <column type="gchararray"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3573
+    </columns>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3574
+    <data>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3575
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3576
+        <col id="0" translatable="yes">Any</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3577
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3578
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3579
+        <col id="0" translatable="yes">Best</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3580
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3581
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3582
+        <col id="0" translatable="yes">Default</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3583
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3584
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3585
+        <col id="0" translatable="yes">Default-N</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3586
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3587
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3588
+        <col id="0" translatable="yes">GL</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3589
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3590
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3591
+        <col id="0" translatable="yes">TrueColor</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3592
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3593
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3594
+        <col id="0" translatable="yes">PseudoColor</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3595
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3596
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3597
+        <col id="0" translatable="yes">StaticGray</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3598
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3599
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3600
+        <col id="0" translatable="yes">GrayScale</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3601
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3602
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3603
+        <col id="0" translatable="yes">DirectColor</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3604
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3605
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3606
+        <col id="0" translatable="yes">Color</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3607
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3608
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3609
+        <col id="0" translatable="yes">Gray</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3610
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3611
+      <row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3612
+        <col id="0" translatable="yes">Mono</col>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3613
+      </row>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3614
+    </data>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3615
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3616
+  <object class="GtkUIManager" id="uimanager1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3617
+    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3618
+      <object class="GtkActionGroup" id="actiongroup1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3619
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3620
+          <object class="GtkAction" id="file">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3621
+            <property name="name">file</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3622
+            <property name="label" translatable="yes">_File</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3623
+            <signal handler="file_menu_cb" last_modification_time="Sun, 06 Mar 2005 21:41:13 GMT" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3624
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3625
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3626
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3627
+          <object class="GtkAction" id="activate_action">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3628
+            <property name="name">activate_action</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3629
+            <property name="label" translatable="yes">_Blank Screen Now</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3630
+            <signal handler="activate_menu_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3631
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3632
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3633
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3634
+          <object class="GtkAction" id="lock_action">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3635
+            <property name="name">lock_action</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3636
+            <property name="label" translatable="yes">_Lock Screen Now</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3637
+            <signal handler="lock_menu_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3638
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3639
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3640
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3641
+          <object class="GtkAction" id="kill_action">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3642
+            <property name="name">kill_action</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3643
+            <property name="label" translatable="yes">_Kill Daemon</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3644
+            <signal handler="kill_menu_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3645
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3646
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3647
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3648
+          <object class="GtkAction" id="restart_action">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3649
+            <property name="name">restart_action</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3650
+            <property name="label" translatable="yes">_Restart Daemon</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3651
+            <signal handler="restart_menu_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3652
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3653
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3654
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3655
+          <object class="GtkAction" id="exit_action">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3656
+            <property name="name">exit_action</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3657
+            <property name="label" translatable="yes">_Quit</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3658
+            <signal handler="exit_menu_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3659
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3660
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3661
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3662
+          <object class="GtkAction" id="help">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3663
+            <property name="name">help</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3664
+            <property name="label" translatable="yes">_Help</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3665
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3666
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3667
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3668
+          <object class="GtkAction" id="about_action">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3669
+            <property name="name">about_action</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3670
+            <property name="label" translatable="yes">_About...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3671
+            <signal handler="about_menu_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3672
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3673
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3674
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3675
+          <object class="GtkAction" id="doc_action">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3676
+            <property name="name">doc_action</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3677
+            <property name="label" translatable="yes">_Documentation...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3678
+            <signal handler="doc_menu_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3679
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3680
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3681
+      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3682
+    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3683
+    <ui>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3684
+      <menubar name="menubar">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3685
+        <menu action="file">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3686
+          <menuitem name="activate_menu" action="activate_action"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3687
+          <menuitem name="lock_menu" action="lock_action"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3688
+          <menuitem name="kill_menu" action="kill_action"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3689
+          <menuitem name="restart_menu" action="restart_action"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3690
+          <separator/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3691
+          <menuitem name="exit_menu" action="exit_action"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3692
+        </menu>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3693
+        <menu action="help">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3694
+          <menuitem name="about_menu" action="about_action"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3695
+          <menuitem name="doc_menu" action="doc_action"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3696
+        </menu>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3697
+      </menubar>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3698
+    </ui>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3699
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3700
+  <object class="GtkWindow" id="xscreensaver_demo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3701
+    <property name="title" translatable="yes">XScreenSaver</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3702
+    <property name="type">GTK_WINDOW_TOPLEVEL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3703
+    <property name="window_position">GTK_WIN_POS_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3704
+    <property name="modal">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3705
+    <property name="resizable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3706
+    <property name="destroy_with_parent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3707
+    <property name="decorated">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3708
+    <property name="skip_taskbar_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3709
+    <property name="skip_pager_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3710
+    <property name="type_hint">GDK_WINDOW_TYPE_HINT_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3711
+    <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3712
+    <property name="focus_on_map">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3713
+    <property name="urgency_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3714
+    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3715
+      <object class="GtkVBox" id="outer_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3716
+        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3717
+        <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3718
+        <property name="spacing">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3719
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3720
+          <object class="GtkMenuBar" constructor="uimanager1" id="menubar">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3721
+            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3722
+            <property name="pack_direction">GTK_PACK_DIRECTION_LTR</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3723
+            <property name="child_pack_direction">GTK_PACK_DIRECTION_LTR</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3724
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3725
+          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3726
+            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3727
+            <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3728
+            <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3729
+          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3730
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3731
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3732
+          <object class="GtkHBox" id="spacer_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3733
+            <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3734
+            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3735
+            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3736
+            <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3737
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3738
+              <object class="GtkNotebook" id="notebook">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3739
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3740
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3741
+                <property name="show_tabs">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3742
+                <property name="show_border">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3743
+                <property name="tab_pos">GTK_POS_TOP</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3744
+                <property name="scrollable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3745
+                <property name="enable_popup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3746
+                <signal handler="switch_page_cb" name="switch_page"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3747
+                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3748
+                  <object class="GtkTable" id="demos_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3749
+                    <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3750
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3751
+                    <property name="n_rows">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3752
+                    <property name="n_columns">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3753
+                    <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3754
+                    <property name="row_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3755
+                    <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3756
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3757
+                      <object class="GtkTable" id="blanking_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3758
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3759
+                        <property name="n_rows">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3760
+                        <property name="n_columns">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3761
+                        <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3762
+                        <property name="row_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3763
+                        <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3764
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3765
+                          <object class="GtkLabel" id="cycle_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3766
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3767
+                            <property name="label" translatable="yes">_Cycle After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3768
+                            <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3769
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3770
+                            <property name="justify">GTK_JUSTIFY_RIGHT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3771
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3772
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3773
+                            <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3774
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3775
+                            <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3776
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3777
+                            <property name="mnemonic_widget">cycle_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3778
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3779
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3780
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3781
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3782
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3783
+                              <relation target="cycle_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3784
+                              <relation target="cycle_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3785
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3786
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3787
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3788
+                            <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3789
+                            <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3790
+                            <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3791
+                            <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3792
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3793
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3794
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3795
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3796
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3797
+                          <object class="GtkEventBox" id="lock_button_eventbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3798
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3799
+                            <property name="tooltip-text" translatable="yes">Whether a password should be required to un-blank the screen.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3800
+                            <property name="visible_window">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3801
+                            <property name="above_child">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3802
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3803
+                              <object class="GtkCheckButton" id="lock_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3804
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3805
+                                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3806
+                                <property name="label" translatable="yes">_Lock Screen After  </property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3807
+                                <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3808
+                                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3809
+                                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3810
+                                <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3811
+                                <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3812
+                                <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3813
+                                <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3814
+                                  <relation target="lock_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3815
+                                  <relation target="lock_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3816
+                                  <relation target="lock_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3817
+                                </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3818
+                                <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3819
+                                <child internal-child="accessible">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3820
+                                  <object class="AtkObject" id="a11y-lock_button1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3821
+                                    <property name="AtkObject::accessible_name" translatable="yes">Lock Screen</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3822
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3823
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3824
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3825
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3826
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3827
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3828
+                            <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3829
+                            <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3830
+                            <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3831
+                            <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3832
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3833
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3834
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3835
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3836
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3837
+                          <object class="GtkSpinButton" id="timeout_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3838
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3839
+                            <property name="tooltip-text" translatable="yes">How long before the screen saver activates.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3840
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3841
+                            <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3842
+                            <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3843
+                            <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3844
+                            <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3845
+                            <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3846
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3847
+                            <property name="adjustment">adjustment1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3848
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3849
+                              <relation target="timeout_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3850
+                              <relation target="timeout_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3851
+                              <relation target="timeout_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3852
+                              <relation target="timeout_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3853
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3854
+                            <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3855
+                            <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3856
+                            <signal handler="pref_changed_cb" name="value_changed"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3857
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3858
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3859
+                            <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3860
+                            <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3861
+                            <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3862
+                            <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3863
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3864
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3865
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3866
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3867
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3868
+                          <object class="GtkSpinButton" id="lock_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3869
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3870
+                            <property name="tooltip-text" translatable="yes">How long after the screen blanks until a password will be required.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3871
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3872
+                            <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3873
+                            <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3874
+                            <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3875
+                            <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3876
+                            <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3877
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3878
+                            <property name="adjustment">adjustment2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3879
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3880
+                              <relation target="lock_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3881
+                              <relation target="lock_button" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3882
+                              <relation target="lock_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3883
+                              <relation target="lock_button" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3884
+                              <relation target="lock_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3885
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3886
+                            <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3887
+                            <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3888
+                            <signal handler="pref_changed_cb" name="value_changed"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3889
+                            <child internal-child="accessible">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3890
+                              <object class="AtkObject" id="a11y-lock_spinbutton1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3891
+                                <property name="AtkObject::accessible_name" translatable="yes">Lock Screen After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3892
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3893
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3894
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3895
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3896
+                            <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3897
+                            <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3898
+                            <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3899
+                            <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3900
+                            <property name="y_padding">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3901
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3902
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3903
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3904
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3905
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3906
+                          <object class="GtkSpinButton" id="cycle_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3907
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3908
+                            <property name="tooltip-text" translatable="yes">How long each display mode should run before choosing a new one (in Random mode.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3909
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3910
+                            <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3911
+                            <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3912
+                            <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3913
+                            <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3914
+                            <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3915
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3916
+                            <property name="adjustment">adjustment3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3917
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3918
+                              <relation target="cycle_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3919
+                              <relation target="cycle_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3920
+                              <relation target="cycle_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3921
+                              <relation target="cycle_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3922
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3923
+                            <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3924
+                            <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3925
+                            <signal handler="pref_changed_cb" name="value_changed"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3926
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3927
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3928
+                            <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3929
+                            <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3930
+                            <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3931
+                            <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3932
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3933
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3934
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3935
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3936
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3937
+                          <object class="GtkLabel" id="lock_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3938
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3939
+                            <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3940
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3941
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3942
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3943
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3944
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3945
+                            <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3946
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3947
+                            <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3948
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3949
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3950
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3951
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3952
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3953
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3954
+                              <relation target="lock_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3955
+                              <relation target="lock_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3956
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3957
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3958
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3959
+                            <property name="left_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3960
+                            <property name="right_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3961
+                            <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3962
+                            <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3963
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3964
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3965
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3966
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3967
+                          <object class="GtkLabel" id="cycle_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3968
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3969
+                            <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3970
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3971
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3972
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3973
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3974
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3975
+                            <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3976
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3977
+                            <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3978
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3979
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3980
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3981
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3982
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3983
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3984
+                              <relation target="cycle_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3985
+                              <relation target="cycle_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3986
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3987
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3988
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3989
+                            <property name="left_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3990
+                            <property name="right_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3991
+                            <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3992
+                            <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3993
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3994
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3995
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3996
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3997
+                          <object class="GtkLabel" id="timeout_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3998
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  3999
+                            <property name="label" translatable="yes">_Blank After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4000
+                            <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4001
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4002
+                            <property name="justify">GTK_JUSTIFY_RIGHT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4003
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4004
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4005
+                            <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4006
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4007
+                            <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4008
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4009
+                            <property name="mnemonic_widget">timeout_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4010
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4011
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4012
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4013
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4014
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4015
+                              <relation target="timeout_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4016
+                              <relation target="timeout_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4017
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4018
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4019
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4020
+                            <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4021
+                            <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4022
+                            <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4023
+                            <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4024
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4025
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4026
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4027
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4028
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4029
+                          <object class="GtkLabel" id="timeout_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4030
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4031
+                            <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4032
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4033
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4034
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4035
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4036
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4037
+                            <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4038
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4039
+                            <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4040
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4041
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4042
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4043
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4044
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4045
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4046
+                              <relation target="timeout_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4047
+                              <relation target="timeout_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4048
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4049
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4050
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4051
+                            <property name="left_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4052
+                            <property name="right_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4053
+                            <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4054
+                            <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4055
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4056
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4057
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4058
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4059
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4060
+                        <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4061
+                        <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4062
+                        <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4063
+                        <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4064
+                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4065
+                        <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4066
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4067
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4068
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4069
+                      <object class="GtkHButtonBox" id="demo_manual_hbbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4070
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4071
+                        <property name="layout_style">GTK_BUTTONBOX_SPREAD</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4072
+                        <property name="spacing">30</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4073
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4074
+                          <object class="GtkButton" id="demo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4075
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4076
+                            <property name="tooltip-text" translatable="yes">Demo the selected screen saver in full-screen mode (click the mouse to return.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4077
+                            <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4078
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4079
+                            <property name="label" translatable="yes">_Preview</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4080
+                            <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4081
+                            <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4082
+                            <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4083
+                            <signal handler="run_this_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4084
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4085
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4086
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4087
+                          <object class="GtkButton" id="settings">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4088
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4089
+                            <property name="tooltip-text" translatable="yes">Customization and explanation of the selected screen saver.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4090
+                            <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4091
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4092
+                            <property name="label" translatable="yes">_Settings...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4093
+                            <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4094
+                            <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4095
+                            <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4096
+                            <signal handler="settings_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4097
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4098
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4099
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4100
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4101
+                        <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4102
+                        <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4103
+                        <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4104
+                        <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4105
+                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4106
+                        <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4107
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4108
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4109
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4110
+                      <object class="GtkVBox" id="list_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4111
+                        <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4112
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4113
+                        <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4114
+                        <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4115
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4116
+                          <object class="GtkHBox" id="mode_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4117
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4118
+                            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4119
+                            <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4120
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4121
+                              <object class="GtkLabel" id="mode_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4122
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4123
+                                <property name="label" translatable="yes">_Mode:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4124
+                                <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4125
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4126
+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4127
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4128
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4129
+                                <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4130
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4131
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4132
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4133
+                                <property name="mnemonic_widget">mode_menu</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4134
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4135
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4136
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4137
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4138
+                                <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4139
+                                  <relation target="mode_menu" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4140
+                                </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4141
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4142
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4143
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4144
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4145
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4146
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4147
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4148
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4149
+                              <object class="GtkComboBox" id="mode_menu">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4150
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4151
+                                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4152
+                                <property name="has_entry">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4153
+                                <property name="model">mode_menu_model</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4154
+                                <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4155
+                                  <relation target="mode_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4156
+                                </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4157
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4158
+                                  <object class="GtkCellRendererText" id="renderer1"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4159
+                                  <attributes>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4160
+                                    <attribute name="text">0</attribute>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4161
+                                  </attributes>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4162
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4163
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4164
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4165
+                                <property name="padding">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4166
+                                <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4167
+                                <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4168
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4169
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4170
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4171
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4172
+                            <property name="padding">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4173
+                            <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4174
+                            <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4175
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4176
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4177
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4178
+                          <object class="GtkScrolledWindow" id="scroller">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4179
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4180
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4181
+                            <property name="hscrollbar_policy">GTK_POLICY_NEVER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4182
+                            <property name="vscrollbar_policy">GTK_POLICY_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4183
+                            <property name="shadow_type">GTK_SHADOW_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4184
+                            <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4185
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4186
+                              <object class="GtkTreeView" id="list">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4187
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4188
+                                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4189
+                                <property name="headers_visible">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4190
+                                <property name="rules_hint">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4191
+                                <property name="reorderable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4192
+                                <property name="enable_search">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4193
+                                <property name="fixed_height_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4194
+                                <property name="hover_selection">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4195
+                                <property name="hover_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4196
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4197
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4198
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4199
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4200
+                            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4201
+                            <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4202
+                            <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4203
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4204
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4205
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4206
+                          <object class="GtkHBox" id="centering_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4207
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4208
+                            <property name="homogeneous">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4209
+                            <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4210
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4211
+                              <object class="GtkHBox" id="next_prev_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4212
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4213
+                                <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4214
+                                <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4215
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4216
+                                  <object class="GtkButton" id="next">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4217
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4218
+                                    <property name="tooltip-text" translatable="yes">Run the next screen saver in the list in full-screen mode (click the mouse to return.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4219
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4220
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4221
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4222
+                                    <signal handler="run_next_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4223
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4224
+                                      <object class="GtkArrow" id="arrow1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4225
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4226
+                                        <property name="arrow_type">GTK_ARROW_DOWN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4227
+                                        <property name="shadow_type">GTK_SHADOW_OUT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4228
+                                        <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4229
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4230
+                                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4231
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4232
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4233
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4234
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4235
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4236
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4237
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4238
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4239
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4240
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4241
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4242
+                                  <object class="GtkButton" id="prev">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4243
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4244
+                                    <property name="tooltip-text" translatable="yes">Run the previous screen saver in the list in full-screen mode (click the mouse to return.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4245
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4246
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4247
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4248
+                                    <signal handler="run_prev_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4249
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4250
+                                      <object class="GtkArrow" id="arrow2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4251
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4252
+                                        <property name="arrow_type">GTK_ARROW_UP</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4253
+                                        <property name="shadow_type">GTK_SHADOW_OUT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4254
+                                        <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4255
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4256
+                                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4257
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4258
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4259
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4260
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4261
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4262
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4263
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4264
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4265
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4266
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4267
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4268
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4269
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4270
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4271
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4272
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4273
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4274
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4275
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4276
+                            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4277
+                            <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4278
+                            <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4279
+                            <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4280
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4281
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4282
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4283
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4284
+                        <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4285
+                        <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4286
+                        <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4287
+                        <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4288
+                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4289
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4290
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4291
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4292
+                      <object class="GtkFrame" id="preview_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4293
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4294
+                        <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4295
+                        <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4296
+                        <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4297
+                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4298
+                          <relation target="label1" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4299
+                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4300
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4301
+                          <object class="GtkNotebook" id="preview_notebook">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4302
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4303
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4304
+                            <property name="show_tabs">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4305
+                            <property name="show_border">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4306
+                            <property name="tab_pos">GTK_POS_BOTTOM</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4307
+                            <property name="scrollable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4308
+                            <property name="enable_popup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4309
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4310
+                              <object class="GtkAspectFrame" id="preview_aspectframe">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4311
+                                <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4312
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4313
+                                <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4314
+                                <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4315
+                                <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4316
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4317
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4318
+                                <property name="ratio">1.33000004292</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4319
+                                <property name="obey_child">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4320
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4321
+                                  <object class="GtkDrawingArea" id="preview">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4322
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4323
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4324
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4325
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4326
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4327
+                                <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4328
+                                <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4329
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4330
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4331
+                            <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4332
+                              <object class="GtkLabel" id="preview_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4333
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4334
+                                <property name="label" translatable="yes">preview</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4335
+                                <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4336
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4337
+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4338
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4339
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4340
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4341
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4342
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4343
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4344
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4345
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4346
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4347
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4348
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4349
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4350
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4351
+                              <object class="GtkLabel" id="no_preview_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4352
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4353
+                                <property name="label" translatable="yes">No Preview
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4354
+Available</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4355
+                                <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4356
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4357
+                                <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4358
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4359
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4360
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4361
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4362
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4363
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4364
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4365
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4366
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4367
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4368
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4369
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4370
+                                <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4371
+                                <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4372
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4373
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4374
+                            <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4375
+                              <object class="GtkLabel" id="no_preview_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4376
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4377
+                                <property name="label" translatable="yes">no preview</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4378
+                                <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4379
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4380
+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4381
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4382
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4383
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4384
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4385
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4386
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4387
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4388
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4389
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4390
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4391
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4392
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4393
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4394
+                              <object class="GtkLabel" id="not_installed_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4395
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4396
+                                <property name="label" translatable="yes">Not
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4397
+Installed</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4398
+                                <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4399
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4400
+                                <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4401
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4402
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4403
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4404
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4405
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4406
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4407
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4408
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4409
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4410
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4411
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4412
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4413
+                                <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4414
+                                <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4415
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4416
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4417
+                            <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4418
+                              <object class="GtkLabel" id="not_installed_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4419
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4420
+                                <property name="label" translatable="yes">not installed</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4421
+                                <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4422
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4423
+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4424
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4425
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4426
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4427
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4428
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4429
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4430
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4431
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4432
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4433
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4434
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4435
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4436
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4437
+                              <object class="GtkLabel" id="nothing_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4438
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4439
+                                <property name="label" translatable="yes">Very few (or no) screen savers appear to be available.
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4440
+
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4441
+This probably means that the "xscreensaver-extras" and
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4442
+"xscreensaver-gl-extras" packages are not installed.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4443
+                                <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4444
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4445
+                                <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4446
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4447
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4448
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4449
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4450
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4451
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4452
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4453
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4454
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4455
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4456
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4457
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4458
+                                <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4459
+                                <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4460
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4461
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4462
+                            <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4463
+                              <object class="GtkLabel" id="nothing_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4464
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4465
+                                <property name="label" translatable="yes">nothing</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4466
+                                <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4467
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4468
+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4469
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4470
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4471
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4472
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4473
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4474
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4475
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4476
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4477
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4478
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4479
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4480
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4481
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4482
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4483
+                        <child type="label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4484
+                          <object class="GtkLabel" id="label1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4485
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4486
+                            <property name="label" translatable="yes">Description</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4487
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4488
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4489
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4490
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4491
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4492
+                            <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4493
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4494
+                            <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4495
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4496
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4497
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4498
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4499
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4500
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4501
+                              <relation target="preview_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4502
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4503
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4504
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4505
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4506
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4507
+                        <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4508
+                        <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4509
+                        <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4510
+                        <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4511
+                        <property name="y_padding">6</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4512
+                        <property name="x_options">expand|shrink|fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4513
+                        <property name="y_options">expand|shrink|fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4514
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4515
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4516
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4517
+                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4518
+                    <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4519
+                    <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4520
+                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4521
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4522
+                <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4523
+                  <object class="GtkLabel" id="demo_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4524
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4525
+                    <property name="label" translatable="yes">_Display Modes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4526
+                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4527
+                    <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4528
+                    <property name="justify">GTK_JUSTIFY_CENTER</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4529
+                    <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4530
+                    <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4531
+                    <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4532
+                    <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4533
+                    <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4534
+                    <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4535
+                    <property name="mnemonic_widget">notebook</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4536
+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4537
+                    <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4538
+                    <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4539
+                    <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4540
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4541
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4542
+                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4543
+                  <object class="GtkTable" id="options_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4544
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4545
+                    <property name="n_rows">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4546
+                    <property name="n_columns">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4547
+                    <property name="homogeneous">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4548
+                    <property name="row_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4549
+                    <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4550
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4551
+                      <object class="GtkFrame" id="grab_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4552
+                        <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4553
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4554
+                        <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4555
+                        <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4556
+                        <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4557
+                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4558
+                          <relation target="label2" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4559
+                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4560
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4561
+                          <object class="GtkHBox" id="grab_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4562
+                            <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4563
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4564
+                            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4565
+                            <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4566
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4567
+                              <object class="GtkImage" id="image2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4568
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4569
+                                <property name="pixbuf">screensaver-snap.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4570
+                                <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4571
+                                <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4572
+                                <property name="xpad">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4573
+                                <property name="ypad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4574
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4575
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4576
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4577
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4578
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4579
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4580
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4581
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4582
+                              <object class="GtkVBox" id="grab_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4583
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4584
+                                <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4585
+                                <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4586
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4587
+                                  <object class="GtkCheckButton" id="grab_desk_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4588
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4589
+                                    <property name="tooltip-text" translatable="yes">Whether the image-manipulating modes should be allowed to operate on an image of your desktop.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4590
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4591
+                                    <property name="label" translatable="yes">Grab Desktop _Images</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4592
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4593
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4594
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4595
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4596
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4597
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4598
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4599
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4600
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4601
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4602
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4603
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4604
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4605
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4606
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4607
+                                  <object class="GtkCheckButton" id="grab_video_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4608
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4609
+                                    <property name="tooltip-text" translatable="yes">Whether the image-manipulating modes should operate on images captured from the system's video input (if there is one.)</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4610
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4611
+                                    <property name="label" translatable="yes">Grab _Video Frames</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4612
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4613
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4614
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4615
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4616
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4617
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4618
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4619
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4620
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4621
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4622
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4623
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4624
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4625
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4626
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4627
+                                  <object class="GtkCheckButton" id="grab_image_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4628
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4629
+                                    <property name="tooltip-text" translatable="yes">Whether the image-manipulating modes should load image files.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4630
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4631
+                                    <property name="label" translatable="yes">Choose _Random Image:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4632
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4633
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4634
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4635
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4636
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4637
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4638
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4639
+                                      <relation target="image_text" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4640
+                                      <relation target="image_browse_button" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4641
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4642
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4643
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4644
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4645
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4646
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4647
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4648
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4649
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4650
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4651
+                                  <object class="GtkHBox" id="image_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4652
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4653
+                                    <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4654
+                                    <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4655
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4656
+                                      <object class="GtkLabel" id="grab_dummy">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4657
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4658
+                                        <property name="label" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4659
+                                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4660
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4661
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4662
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4663
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4664
+                                        <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4665
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4666
+                                        <property name="xpad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4667
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4668
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4669
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4670
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4671
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4672
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4673
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4674
+                                        <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4675
+                                        <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4676
+                                        <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4677
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4678
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4679
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4680
+                                      <object class="GtkEntry" id="image_text">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4681
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4682
+                                        <property name="tooltip-text" translatable="yes">The local directory, RSS feed or Atom feed from which images will be randomly chosen.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4683
+                                        <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4684
+                                        <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4685
+                                        <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4686
+                                        <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4687
+                                        <property name="text" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4688
+                                        <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4689
+                                        <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4690
+                                        <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4691
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4692
+                                          <relation target="grab_image_button" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4693
+                                          <relation target="grab_image_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4694
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4695
+                                        <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4696
+                                        <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4697
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4698
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4699
+                                        <property name="padding">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4700
+                                        <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4701
+                                        <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4702
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4703
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4704
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4705
+                                      <object class="GtkButton" id="image_browse_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4706
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4707
+                                        <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4708
+                                        <property name="label" translatable="yes">_Browse</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4709
+                                        <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4710
+                                        <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4711
+                                        <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4712
+                                        <signal handler="browse_image_dir_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4713
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4714
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4715
+                                        <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4716
+                                        <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4717
+                                        <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4718
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4719
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4720
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4721
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4722
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4723
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4724
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4725
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4726
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4727
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4728
+                                  <object class="GtkLabel" id="label8">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4729
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4730
+                                    <property name="label" translatable="yes">Local directory, or RSS feed URL.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4731
+                                    <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4732
+                                    <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4733
+                                    <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4734
+                                    <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4735
+                                    <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4736
+                                    <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4737
+                                    <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4738
+                                    <property name="xpad">20</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4739
+                                    <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4740
+                                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4741
+                                    <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4742
+                                    <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4743
+                                    <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4744
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4745
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4746
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4747
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4748
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4749
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4750
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4751
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4752
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4753
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4754
+                                <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4755
+                                <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4756
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4757
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4758
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4759
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4760
+                        <child type="label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4761
+                          <object class="GtkLabel" id="label2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4762
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4763
+                            <property name="label" translatable="yes">Image Manipulation</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4764
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4765
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4766
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4767
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4768
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4769
+                            <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4770
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4771
+                            <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4772
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4773
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4774
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4775
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4776
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4777
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4778
+                              <relation target="grab_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4779
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4780
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4781
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4782
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4783
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4784
+                        <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4785
+                        <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4786
+                        <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4787
+                        <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4788
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4789
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4790
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4791
+                      <object class="GtkFrame" id="diag_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4792
+                        <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4793
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4794
+                        <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4795
+                        <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4796
+                        <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4797
+                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4798
+                          <relation target="label3" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4799
+                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4800
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4801
+                          <object class="GtkHBox" id="diag_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4802
+                            <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4803
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4804
+                            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4805
+                            <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4806
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4807
+                              <object class="GtkImage" id="diag_logo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4808
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4809
+                                <property name="pixbuf">screensaver-diagnostic.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4810
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4811
+                                <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4812
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4813
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4814
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4815
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4816
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4817
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4818
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4819
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4820
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4821
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4822
+                              <object class="GtkTable" id="text_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4823
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4824
+                                <property name="n_rows">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4825
+                                <property name="n_columns">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4826
+                                <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4827
+                                <property name="row_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4828
+                                <property name="column_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4829
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4830
+                                  <object class="GtkRadioButton" id="text_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4831
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4832
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the text typed here.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4833
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4834
+                                    <property name="label" translatable="yes">_Text</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4835
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4836
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4837
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4838
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4839
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4840
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4841
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4842
+                                      <relation target="text_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4843
+                                      <relation target="text_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4844
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4845
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:31:44 GMT" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4846
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4847
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4848
+                                    <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4849
+                                    <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4850
+                                    <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4851
+                                    <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4852
+                                    <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4853
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4854
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4855
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4856
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4857
+                                  <object class="GtkRadioButton" id="text_file_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4858
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4859
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the contents of this file.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4860
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4861
+                                    <property name="label" translatable="yes">Text _file</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4862
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4863
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4864
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4865
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4866
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4867
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4868
+                                    <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4869
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4870
+                                      <relation target="text_file_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4871
+                                      <relation target="text_file_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4872
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4873
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:31:55 GMT" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4874
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4875
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4876
+                                    <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4877
+                                    <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4878
+                                    <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4879
+                                    <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4880
+                                    <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4881
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4882
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4883
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4884
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4885
+                                  <object class="GtkRadioButton" id="text_program_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4886
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4887
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the output of this program.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4888
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4889
+                                    <property name="label" translatable="yes">_Program</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4890
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4891
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4892
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4893
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4894
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4895
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4896
+                                    <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4897
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4898
+                                      <relation target="text_program_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4899
+                                      <relation target="text_program_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4900
+                                      <relation target="text_program_browse" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4901
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4902
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:07 GMT" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4903
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4904
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4905
+                                    <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4906
+                                    <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4907
+                                    <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4908
+                                    <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4909
+                                    <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4910
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4911
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4912
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4913
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4914
+                                  <object class="GtkRadioButton" id="text_url_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4915
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4916
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the contents of this URL (HTML or RSS).</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4917
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4918
+                                    <property name="label" translatable="yes">_URL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4919
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4920
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4921
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4922
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4923
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4924
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4925
+                                    <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4926
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4927
+                                      <relation target="text_url_entry" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4928
+                                      <relation target="text_url_entry" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4929
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4930
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:17 GMT" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4931
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4932
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4933
+                                    <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4934
+                                    <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4935
+                                    <property name="top_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4936
+                                    <property name="bottom_attach">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4937
+                                    <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4938
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4939
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4940
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4941
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4942
+                                  <object class="GtkRadioButton" id="text_host_radio">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4943
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4944
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the local host name, date, and time.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4945
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4946
+                                    <property name="label" translatable="yes">_Host Name and Time</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4947
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4948
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4949
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4950
+                                    <property name="active">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4951
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4952
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4953
+                                    <property name="group">text_radio</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4954
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:31:32 GMT" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4955
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4956
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4957
+                                    <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4958
+                                    <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4959
+                                    <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4960
+                                    <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4961
+                                    <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4962
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4963
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4964
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4965
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4966
+                                  <object class="GtkEntry" id="text_url_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4967
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4968
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the contents of this URL (HTML or RSS).</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4969
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4970
+                                    <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4971
+                                    <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4972
+                                    <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4973
+                                    <property name="text" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4974
+                                    <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4975
+                                    <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4976
+                                    <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4977
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4978
+                                      <relation target="text_url_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4979
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4980
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:33:10 GMT" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4981
+                                    <signal handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:34:26 GMT" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4982
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4983
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4984
+                                    <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4985
+                                    <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4986
+                                    <property name="top_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4987
+                                    <property name="bottom_attach">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4988
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4989
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4990
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4991
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4992
+                                  <object class="GtkButton" id="text_file_browse">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4993
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4994
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4995
+                                    <property name="label" translatable="yes">_Browse</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4996
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4997
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4998
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  4999
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5000
+                                      <relation target="text_file_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5001
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5002
+                                    <signal handler="browse_text_file_cb" last_modification_time="Sun, 20 Mar 2005 01:24:38 GMT" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5003
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5004
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5005
+                                    <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5006
+                                    <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5007
+                                    <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5008
+                                    <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5009
+                                    <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5010
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5011
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5012
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5013
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5014
+                                  <object class="GtkEntry" id="text_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5015
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5016
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the text typed here.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5017
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5018
+                                    <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5019
+                                    <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5020
+                                    <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5021
+                                    <property name="text" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5022
+                                    <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5023
+                                    <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5024
+                                    <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5025
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5026
+                                      <relation target="text_program_radio" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5027
+                                      <relation target="text_program_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5028
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5029
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:42 GMT" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5030
+                                    <signal handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:33:43 GMT" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5031
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5032
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5033
+                                    <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5034
+                                    <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5035
+                                    <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5036
+                                    <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5037
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5038
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5039
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5040
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5041
+                                  <object class="GtkEntry" id="text_program_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5042
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5043
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the output of this program.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5044
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5045
+                                    <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5046
+                                    <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5047
+                                    <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5048
+                                    <property name="text" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5049
+                                    <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5050
+                                    <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5051
+                                    <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5052
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5053
+                                      <relation target="text_program_radio" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5054
+                                      <relation target="text_program_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5055
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5056
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:33:02 GMT" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5057
+                                    <signal handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:34:15 GMT" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5058
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5059
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5060
+                                    <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5061
+                                    <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5062
+                                    <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5063
+                                    <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5064
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5065
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5066
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5067
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5068
+                                  <object class="GtkButton" id="text_program_browse">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5069
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5070
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5071
+                                    <property name="label" translatable="yes">_Browse</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5072
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5073
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5074
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5075
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5076
+                                      <relation target="text_program_radio" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5077
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5078
+                                    <signal handler="browse_text_program_cb" last_modification_time="Sun, 20 Mar 2005 01:24:51 GMT" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5079
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5080
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5081
+                                    <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5082
+                                    <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5083
+                                    <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5084
+                                    <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5085
+                                    <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5086
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5087
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5088
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5089
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5090
+                                  <object class="GtkEntry" id="text_file_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5091
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5092
+                                    <property name="tooltip-text" translatable="yes">Text-displaying modes will display the contents of this file.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5093
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5094
+                                    <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5095
+                                    <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5096
+                                    <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5097
+                                    <property name="text" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5098
+                                    <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5099
+                                    <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5100
+                                    <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5101
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5102
+                                      <relation target="text_file_radio" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5103
+                                      <relation target="text_file_radio" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5104
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5105
+                                    <signal handler="pref_changed_cb" last_modification_time="Sun, 20 Mar 2005 21:32:53 GMT" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5106
+                                    <signal handler="pref_changed_event_cb" last_modification_time="Sun, 20 Mar 2005 21:33:55 GMT" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5107
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5108
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5109
+                                    <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5110
+                                    <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5111
+                                    <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5112
+                                    <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5113
+                                    <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5114
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5115
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5116
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5117
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5118
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5119
+                                <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5120
+                                <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5121
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5122
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5123
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5124
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5125
+                        <child type="label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5126
+                          <object class="GtkLabel" id="label3">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5127
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5128
+                            <property name="label" translatable="yes">Text Manipulation</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5129
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5130
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5131
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5132
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5133
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5134
+                            <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5135
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5136
+                            <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5137
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5138
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5139
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5140
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5141
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5142
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5143
+                              <relation target="diag_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5144
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5145
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5146
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5147
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5148
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5149
+                        <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5150
+                        <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5151
+                        <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5152
+                        <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5153
+                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5154
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5155
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5156
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5157
+                      <object class="GtkFrame" id="dpms_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5158
+                        <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5159
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5160
+                        <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5161
+                        <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5162
+                        <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5163
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5164
+                          <object class="GtkHBox" id="dpms_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5165
+                            <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5166
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5167
+                            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5168
+                            <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5169
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5170
+                              <object class="GtkImage" id="dpms_logo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5171
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5172
+                                <property name="pixbuf">screensaver-power.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5173
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5174
+                                <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5175
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5176
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5177
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5178
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5179
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5180
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5181
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5182
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5183
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5184
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5185
+                              <object class="GtkVBox" id="vbox6">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5186
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5187
+                                <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5188
+                                <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5189
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5190
+                                  <object class="GtkCheckButton" id="dpms_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5191
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5192
+                                    <property name="tooltip-text" translatable="yes">Whether the monitor should be powered down after a while.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5193
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5194
+                                    <property name="label" translatable="yes">_Power Management Enabled</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5195
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5196
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5197
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5198
+                                    <property name="active">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5199
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5200
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5201
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5202
+                                      <relation target="dpms_suspend_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5203
+                                      <relation target="dpms_standby_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5204
+                                      <relation target="dpms_off_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5205
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5206
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5207
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5208
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5209
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5210
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5211
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5212
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5213
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5214
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5215
+                                  <object class="GtkTable" id="dpms_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5216
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5217
+                                    <property name="n_rows">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5218
+                                    <property name="n_columns">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5219
+                                    <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5220
+                                    <property name="row_spacing">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5221
+                                    <property name="column_spacing">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5222
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5223
+                                      <object class="GtkLabel" id="dpms_standby_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5224
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5225
+                                        <property name="label" translatable="yes">Stand_by After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5226
+                                        <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5227
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5228
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5229
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5230
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5231
+                                        <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5232
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5233
+                                        <property name="xpad">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5234
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5235
+                                        <property name="mnemonic_widget">dpms_standby_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5236
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5237
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5238
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5239
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5240
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5241
+                                          <relation target="dpms_standby_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5242
+                                          <relation target="dpms_standby_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5243
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5244
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5245
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5246
+                                        <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5247
+                                        <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5248
+                                        <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5249
+                                        <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5250
+                                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5251
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5252
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5253
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5254
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5255
+                                      <object class="GtkLabel" id="dpms_suspend_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5256
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5257
+                                        <property name="label" translatable="yes">Sus_pend After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5258
+                                        <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5259
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5260
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5261
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5262
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5263
+                                        <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5264
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5265
+                                        <property name="xpad">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5266
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5267
+                                        <property name="mnemonic_widget">dpms_suspend_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5268
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5269
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5270
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5271
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5272
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5273
+                                          <relation target="dpms_suspend_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5274
+                                          <relation target="dpms_suspend_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5275
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5276
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5277
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5278
+                                        <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5279
+                                        <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5280
+                                        <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5281
+                                        <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5282
+                                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5283
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5284
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5285
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5286
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5287
+                                      <object class="GtkLabel" id="dpms_off_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5288
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5289
+                                        <property name="label" translatable="yes">_Off After</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5290
+                                        <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5291
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5292
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5293
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5294
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5295
+                                        <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5296
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5297
+                                        <property name="xpad">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5298
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5299
+                                        <property name="mnemonic_widget">dpms_off_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5300
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5301
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5302
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5303
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5304
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5305
+                                          <relation target="dpms_off_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5306
+                                          <relation target="dpms_off_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5307
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5308
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5309
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5310
+                                        <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5311
+                                        <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5312
+                                        <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5313
+                                        <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5314
+                                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5315
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5316
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5317
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5318
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5319
+                                      <object class="GtkLabel" id="dpms_standby_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5320
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5321
+                                        <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5322
+                                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5323
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5324
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5325
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5326
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5327
+                                        <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5328
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5329
+                                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5330
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5331
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5332
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5333
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5334
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5335
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5336
+                                          <relation target="dpms_standby_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5337
+                                          <relation target="dpms_standby_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5338
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5339
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5340
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5341
+                                        <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5342
+                                        <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5343
+                                        <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5344
+                                        <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5345
+                                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5346
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5347
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5348
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5349
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5350
+                                      <object class="GtkLabel" id="dpms_suspend_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5351
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5352
+                                        <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5353
+                                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5354
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5355
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5356
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5357
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5358
+                                        <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5359
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5360
+                                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5361
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5362
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5363
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5364
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5365
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5366
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5367
+                                          <relation target="dpms_suspend_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5368
+                                          <relation target="dpms_suspend_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5369
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5370
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5371
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5372
+                                        <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5373
+                                        <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5374
+                                        <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5375
+                                        <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5376
+                                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5377
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5378
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5379
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5380
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5381
+                                      <object class="GtkLabel" id="dpms_off_mlabel">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5382
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5383
+                                        <property name="label" translatable="yes">minutes</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5384
+                                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5385
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5386
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5387
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5388
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5389
+                                        <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5390
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5391
+                                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5392
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5393
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5394
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5395
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5396
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5397
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5398
+                                          <relation target="dpms_off_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5399
+                                          <relation target="dpms_off_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5400
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5401
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5402
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5403
+                                        <property name="left_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5404
+                                        <property name="right_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5405
+                                        <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5406
+                                        <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5407
+                                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5408
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5409
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5410
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5411
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5412
+                                      <object class="GtkSpinButton" id="dpms_off_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5413
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5414
+                                        <property name="tooltip-text" translatable="yes">How long until the monitor powers down.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5415
+                                        <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5416
+                                        <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5417
+                                        <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5418
+                                        <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5419
+                                        <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5420
+                                        <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5421
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5422
+                                        <property name="adjustment">adjustment4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5423
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5424
+                                          <relation target="dpms_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5425
+                                          <relation target="dpms_off_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5426
+                                          <relation target="dpms_off_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5427
+                                          <relation target="dpms_off_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5428
+                                          <relation target="dpms_off_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5429
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5430
+                                        <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5431
+                                        <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5432
+                                        <signal handler="pref_changed_cb" name="value_changed"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5433
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5434
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5435
+                                        <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5436
+                                        <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5437
+                                        <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5438
+                                        <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5439
+                                        <property name="x_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5440
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5441
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5442
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5443
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5444
+                                      <object class="GtkSpinButton" id="dpms_suspend_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5445
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5446
+                                        <property name="tooltip-text" translatable="yes">How long until the monitor goes into power-saving mode.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5447
+                                        <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5448
+                                        <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5449
+                                        <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5450
+                                        <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5451
+                                        <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5452
+                                        <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5453
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5454
+                                        <property name="adjustment">adjustment5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5455
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5456
+                                          <relation target="dpms_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5457
+                                          <relation target="dpms_suspend_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5458
+                                          <relation target="dpms_suspend_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5459
+                                          <relation target="dpms_suspend_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5460
+                                          <relation target="dpms_suspend_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5461
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5462
+                                        <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5463
+                                        <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5464
+                                        <signal handler="pref_changed_cb" name="value_changed"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5465
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5466
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5467
+                                        <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5468
+                                        <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5469
+                                        <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5470
+                                        <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5471
+                                        <property name="x_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5472
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5473
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5474
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5475
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5476
+                                      <object class="GtkSpinButton" id="dpms_standby_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5477
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5478
+                                        <property name="tooltip-text" translatable="yes">How long until the monitor goes completely black.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5479
+                                        <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5480
+                                        <property name="climb_rate">15</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5481
+                                        <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5482
+                                        <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5483
+                                        <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5484
+                                        <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5485
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5486
+                                        <property name="adjustment">adjustment6</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5487
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5488
+                                          <relation target="dpms_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5489
+                                          <relation target="dpms_standby_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5490
+                                          <relation target="dpms_standby_mlabel" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5491
+                                          <relation target="dpms_standby_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5492
+                                          <relation target="dpms_standby_mlabel" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5493
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5494
+                                        <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5495
+                                        <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5496
+                                        <signal handler="pref_changed_cb" name="value_changed"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5497
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5498
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5499
+                                        <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5500
+                                        <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5501
+                                        <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5502
+                                        <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5503
+                                        <property name="x_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5504
+                                        <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5505
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5506
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5507
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5508
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5509
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5510
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5511
+                                    <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5512
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5513
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5514
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5515
+                                  <object class="GtkCheckButton" id="dpms_quickoff_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5516
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5517
+                                    <property name="tooltip-text" translatable="yes">Whether the monitor should be powered off immediately in "Blank Screen Only" mode, regardless of the above power-management timeouts.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5518
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5519
+                                    <property name="label" translatable="yes">_Quick Power-off in Blank Only Mode</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5520
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5521
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5522
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5523
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5524
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5525
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5526
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5527
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5528
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5529
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5530
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5531
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5532
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5533
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5534
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5535
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5536
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5537
+                                <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5538
+                                <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5539
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5540
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5541
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5542
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5543
+                        <child type="label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5544
+                          <object class="GtkLabel" id="label4">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5545
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5546
+                            <property name="label" translatable="yes">Display Power Management</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5547
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5548
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5549
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5550
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5551
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5552
+                            <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5553
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5554
+                            <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5555
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5556
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5557
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5558
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5559
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5560
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5561
+                              <relation target="dpms_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5562
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5563
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5564
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5565
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5566
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5567
+                        <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5568
+                        <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5569
+                        <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5570
+                        <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5571
+                        <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5572
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5573
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5574
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5575
+                      <object class="GtkFrame" id="cmap_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5576
+                        <property name="border_width">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5577
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5578
+                        <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5579
+                        <property name="label_yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5580
+                        <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5581
+                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5582
+                          <relation target="label5" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5583
+                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5584
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5585
+                          <object class="GtkHBox" id="cmap_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5586
+                            <property name="border_width">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5587
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5588
+                            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5589
+                            <property name="spacing">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5590
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5591
+                              <object class="GtkImage" id="image5">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5592
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5593
+                                <property name="pixbuf">screensaver-colorselector.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5594
+                                <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5595
+                                <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5596
+                                <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5597
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5598
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5599
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5600
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5601
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5602
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5603
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5604
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5605
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5606
+                              <object class="GtkVBox" id="vbox7">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5607
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5608
+                                <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5609
+                                <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5610
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5611
+                                  <object class="GtkCheckButton" id="fade_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5612
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5613
+                                    <property name="tooltip-text" translatable="yes">Whether the screen should slowly fade to black when the screen saver activates.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5614
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5615
+                                    <property name="label" translatable="yes">Fade to Black when _Blanking</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5616
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5617
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5618
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5619
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5620
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5621
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5622
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5623
+                                      <relation target="fade_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5624
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5625
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5626
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5627
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5628
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5629
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5630
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5631
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5632
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5633
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5634
+                                  <object class="GtkCheckButton" id="unfade_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5635
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5636
+                                    <property name="tooltip-text" translatable="yes">Whether the screen should slowly fade in from black when the screen saver deactivates.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5637
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5638
+                                    <property name="label" translatable="yes">Fade from Black When _Unblanking</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5639
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5640
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5641
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5642
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5643
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5644
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5645
+                                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5646
+                                      <relation target="fade_spinbutton" type="controller-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5647
+                                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5648
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5649
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5650
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5651
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5652
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5653
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5654
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5655
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5656
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5657
+                                  <object class="GtkHBox" id="fade_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5658
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5659
+                                    <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5660
+                                    <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5661
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5662
+                                      <object class="GtkLabel" id="fade_dummy">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5663
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5664
+                                        <property name="label" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5665
+                                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5666
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5667
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5668
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5669
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5670
+                                        <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5671
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5672
+                                        <property name="xpad">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5673
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5674
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5675
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5676
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5677
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5678
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5679
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5680
+                                        <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5681
+                                        <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5682
+                                        <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5683
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5684
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5685
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5686
+                                      <object class="GtkLabel" id="fade_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5687
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5688
+                                        <property name="label" translatable="yes">F_ade Duration</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5689
+                                        <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5690
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5691
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5692
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5693
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5694
+                                        <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5695
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5696
+                                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5697
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5698
+                                        <property name="mnemonic_widget">fade_spinbutton</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5699
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5700
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5701
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5702
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5703
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5704
+                                          <relation target="fade_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5705
+                                          <relation target="fade_spinbutton" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5706
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5707
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5708
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5709
+                                        <property name="padding">14</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5710
+                                        <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5711
+                                        <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5712
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5713
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5714
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5715
+                                      <object class="GtkSpinButton" id="fade_spinbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5716
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5717
+                                        <property name="tooltip-text" translatable="yes">How long it should take for the screen to fade in and out.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5718
+                                        <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5719
+                                        <property name="climb_rate">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5720
+                                        <property name="digits">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5721
+                                        <property name="numeric">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5722
+                                        <property name="update_policy">GTK_UPDATE_ALWAYS</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5723
+                                        <property name="snap_to_ticks">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5724
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5725
+                                        <property name="adjustment">adjustment7</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5726
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5727
+                                          <relation target="unfade_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5728
+                                          <relation target="fade_button" type="controlled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5729
+                                          <relation target="fade_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5730
+                                          <relation target="fade_sec_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5731
+                                          <relation target="fade_label" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5732
+                                          <relation target="fade_sec_label" type="flows-to"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5733
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5734
+                                        <signal handler="pref_changed_cb" name="activate"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5735
+                                        <signal handler="pref_changed_event_cb" name="focus_out_event"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5736
+                                        <signal handler="pref_changed_cb" name="value_changed"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5737
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5738
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5739
+                                        <property name="padding">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5740
+                                        <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5741
+                                        <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5742
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5743
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5744
+                                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5745
+                                      <object class="GtkLabel" id="fade_sec_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5746
+                                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5747
+                                        <property name="label" translatable="yes">seconds</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5748
+                                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5749
+                                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5750
+                                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5751
+                                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5752
+                                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5753
+                                        <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5754
+                                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5755
+                                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5756
+                                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5757
+                                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5758
+                                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5759
+                                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5760
+                                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5761
+                                        <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5762
+                                          <relation target="fade_spinbutton" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5763
+                                          <relation target="fade_spinbutton" type="flows-from"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5764
+                                        </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5765
+                                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5766
+                                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5767
+                                        <property name="padding">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5768
+                                        <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5769
+                                        <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5770
+                                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5771
+                                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5772
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5773
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5774
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5775
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5776
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5777
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5778
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5779
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5780
+                                  <object class="GtkHSeparator" id="cmap_hr">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5781
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5782
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5783
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5784
+                                    <property name="padding">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5785
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5786
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5787
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5788
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5789
+                                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5790
+                                  <object class="GtkCheckButton" id="install_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5791
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5792
+                                    <property name="tooltip-text" translatable="yes">Whether to install a private colormap when running in 8-bit mode on the default Visual.</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5793
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5794
+                                    <property name="label" translatable="yes">Install _Colormap</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5795
+                                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5796
+                                    <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5797
+                                    <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5798
+                                    <property name="active">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5799
+                                    <property name="inconsistent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5800
+                                    <property name="draw_indicator">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5801
+                                    <signal handler="pref_changed_cb" name="toggled"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5802
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5803
+                                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5804
+                                    <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5805
+                                    <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5806
+                                    <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5807
+                                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5808
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5809
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5810
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5811
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5812
+                                <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5813
+                                <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5814
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5815
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5816
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5817
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5818
+                        <child type="label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5819
+                          <object class="GtkLabel" id="label5">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5820
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5821
+                            <property name="label" translatable="yes">Fading and Colormaps</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5822
+                            <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5823
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5824
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5825
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5826
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5827
+                            <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5828
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5829
+                            <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5830
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5831
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5832
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5833
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5834
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5835
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5836
+                              <relation target="cmap_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5837
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5838
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5839
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5840
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5841
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5842
+                        <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5843
+                        <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5844
+                        <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5845
+                        <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5846
+                        <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5847
+                        <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5848
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5849
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5850
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5851
+                  <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5852
+                    <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5853
+                    <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5854
+                  </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5855
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5856
+                <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5857
+                  <object class="GtkLabel" id="options_tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5858
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5859
+                    <property name="label" translatable="yes">_Advanced</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5860
+                    <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5861
+                    <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5862
+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5863
+                    <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5864
+                    <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5865
+                    <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5866
+                    <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5867
+                    <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5868
+                    <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5869
+                    <property name="mnemonic_widget">notebook</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5870
+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5871
+                    <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5872
+                    <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5873
+                    <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5874
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5875
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5876
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5877
+              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5878
+                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5879
+                <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5880
+                <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5881
+              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5882
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5883
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5884
+          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5885
+            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5886
+            <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5887
+            <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5888
+          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5889
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5890
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5891
+          <object class="GtkHButtonBox" id="hbuttonbox2">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5892
+            <property name="border_width">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5893
+            <property name="layout_style">GTK_BUTTONBOX_EDGE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5894
+            <property name="spacing">10</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5895
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5896
+              <object class="GtkButton" id="helpbutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5897
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5898
+                <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5899
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5900
+                <property name="label">gtk-help</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5901
+                <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5902
+                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5903
+                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5904
+                <signal handler="doc_menu_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5905
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5906
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5907
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5908
+              <object class="GtkButton" id="closebutton">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5909
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5910
+                <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5911
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5912
+                <property name="label">gtk-close</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5913
+                <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5914
+                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5915
+                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5916
+                <signal handler="exit_menu_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5917
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5918
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5919
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5920
+          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5921
+            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5922
+            <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5923
+            <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5924
+            <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5925
+          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5926
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5927
+      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5928
+    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5929
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5930
+  <object class="GtkDialog" id="xscreensaver_settings_dialog">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5931
+    <property name="title" translatable="yes">dialog1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5932
+    <property name="type">GTK_WINDOW_TOPLEVEL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5933
+    <property name="window_position">GTK_WIN_POS_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5934
+    <property name="modal">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5935
+    <property name="resizable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5936
+    <property name="destroy_with_parent">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5937
+    <property name="decorated">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5938
+    <property name="skip_taskbar_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5939
+    <property name="skip_pager_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5940
+    <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5941
+    <property name="gravity">GDK_GRAVITY_NORTH_WEST</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5942
+    <property name="focus_on_map">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5943
+    <property name="urgency_hint">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5944
+    @COMMENT_DEMO_GLADE2_GTK_2_22_HEAD@<property name="has_separator">False</property>@COMMENT_DEMO_GLADE2_GTK_2_22_TAIL@
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5945
+    <child internal-child="vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5946
+      <object class="GtkVBox" id="dialog_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5947
+        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5948
+        <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5949
+        <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5950
+        <child internal-child="action_area">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5951
+          <object class="GtkHButtonBox" id="dialog_action_area">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5952
+            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5953
+            <property name="layout_style">GTK_BUTTONBOX_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5954
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5955
+              <object class="GtkButton" id="adv_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5956
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5957
+                <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5958
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5959
+                <property name="label" translatable="yes">_Advanced &gt;&gt;</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5960
+                <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5961
+                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5962
+                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5963
+                <signal handler="settings_adv_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5964
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5965
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5966
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5967
+              <object class="GtkButton" id="std_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5968
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5969
+                <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5970
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5971
+                <property name="label" translatable="yes">_Standard &lt;&lt;</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5972
+                <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5973
+                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5974
+                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5975
+                <signal handler="settings_std_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5976
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5977
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5978
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5979
+              <object class="GtkButton" id="reset_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5980
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5981
+                <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5982
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5983
+                <property name="label" translatable="yes">_Reset to Defaults</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5984
+                <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5985
+                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5986
+                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5987
+                <signal handler="settings_reset_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5988
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5989
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5990
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5991
+              <object class="GtkButton" id="cancel_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5992
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5993
+                <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5994
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5995
+                <property name="label">gtk-cancel</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5996
+                <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5997
+                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5998
+                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  5999
+                <signal handler="settings_cancel_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6000
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6001
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6002
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6003
+              <object class="GtkButton" id="ok_button">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6004
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6005
+                <property name="can_default">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6006
+                <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6007
+                <property name="label">gtk-ok</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6008
+                <property name="use_stock">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6009
+                <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6010
+                <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6011
+                <signal handler="settings_ok_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6012
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6013
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6014
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6015
+          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6016
+            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6017
+            <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6018
+            <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6019
+            <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6020
+          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6021
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6022
+        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6023
+          <object class="GtkVBox" id="vbox1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6024
+            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6025
+            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6026
+            <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6027
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6028
+              <object class="GtkFrame" id="opt_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6029
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6030
+                <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6031
+                <property name="label_yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6032
+                <property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6033
+                <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6034
+                  <relation target="label6" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6035
+                </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6036
+                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6037
+                  <object class="GtkNotebook" id="opt_notebook">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6038
+                    <property name="border_width">12</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6039
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6040
+                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6041
+                    <property name="show_tabs">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6042
+                    <property name="show_border">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6043
+                    <property name="tab_pos">GTK_POS_BOTTOM</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6044
+                    <property name="scrollable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6045
+                    <property name="enable_popup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6046
+                    <signal handler="settings_switch_page_cb" name="switch_page"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6047
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6048
+                      <object class="GtkVBox" id="settings_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6049
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6050
+                        <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6051
+                        <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6052
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6053
+                          <placeholder/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6054
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6055
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6056
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6057
+                        <property name="tab_expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6058
+                        <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6059
+                        <property name="tab_pack">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6060
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6061
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6062
+                    <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6063
+                      <object class="GtkLabel" id="std_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6064
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6065
+                        <property name="label" translatable="yes">Standard</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6066
+                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6067
+                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6068
+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6069
+                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6070
+                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6071
+                        <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6072
+                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6073
+                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6074
+                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6075
+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6076
+                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6077
+                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6078
+                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6079
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6080
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6081
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6082
+                      <object class="GtkTable" id="adv_table">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6083
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6084
+                        <property name="n_rows">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6085
+                        <property name="n_columns">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6086
+                        <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6087
+                        <property name="row_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6088
+                        <property name="column_spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6089
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6090
+                          <object class="GtkImage" id="cmd_logo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6091
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6092
+                            <property name="pixbuf">screensaver-cmndln.png</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6093
+                            <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6094
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6095
+                            <property name="xpad">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6096
+                            <property name="ypad">8</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6097
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6098
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6099
+                            <property name="left_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6100
+                            <property name="right_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6101
+                            <property name="top_attach">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6102
+                            <property name="bottom_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6103
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6104
+                            <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6105
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6106
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6107
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6108
+                          <object class="GtkLabel" id="cmd_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6109
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6110
+                            <property name="label" translatable="yes">_Command Line:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6111
+                            <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6112
+                            <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6113
+                            <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6114
+                            <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6115
+                            <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6116
+                            <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6117
+                            <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6118
+                            <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6119
+                            <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6120
+                            <property name="mnemonic_widget">cmd_text</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6121
+                            <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6122
+                            <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6123
+                            <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6124
+                            <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6125
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6126
+                              <relation target="cmd_text" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6127
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6128
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6129
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6130
+                            <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6131
+                            <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6132
+                            <property name="top_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6133
+                            <property name="bottom_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6134
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6135
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6136
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6137
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6138
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6139
+                          <object class="GtkEntry" id="cmd_text">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6140
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6141
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6142
+                            <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6143
+                            <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6144
+                            <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6145
+                            <property name="text" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6146
+                            <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6147
+                            <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6148
+                            <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6149
+                            <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6150
+                              <relation target="cmd_label" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6151
+                            </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6152
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6153
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6154
+                            <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6155
+                            <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6156
+                            <property name="top_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6157
+                            <property name="bottom_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6158
+                            <property name="y_options"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6159
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6160
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6161
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6162
+                          <object class="GtkHBox" id="visual_hbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6163
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6164
+                            <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6165
+                            <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6166
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6167
+                              <object class="GtkLabel" id="visual">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6168
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6169
+                                <property name="label" translatable="yes">_Visual:</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6170
+                                <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6171
+                                <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6172
+                                <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6173
+                                <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6174
+                                <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6175
+                                <property name="xalign">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6176
+                                <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6177
+                                <property name="xpad">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6178
+                                <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6179
+                                <property name="mnemonic_widget">visual_combo</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6180
+                                <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6181
+                                <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6182
+                                <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6183
+                                <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6184
+                                <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6185
+                                  <relation target="visual_combo" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6186
+                                </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6187
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6188
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6189
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6190
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6191
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6192
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6193
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6194
+                            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6195
+                              <object class="GtkComboBoxEntry" id="visual_combo">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6196
+                                <property name="has_entry">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6197
+                                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6198
+                                <property name="model">visual_combo_model</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6199
+                                <property name="text-column">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6200
+                                <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6201
+                                  <relation target="visual" type="labelled-by"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6202
+                                </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6203
+                                <child internal-child="entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6204
+                                  <object class="GtkEntry" id="visual_entry">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6205
+                                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6206
+                                    <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6207
+                                    <property name="editable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6208
+                                    <property name="visibility">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6209
+                                    <property name="max_length">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6210
+                                    <property name="text" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6211
+                                    <property name="has_frame">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6212
+                                    <property name="invisible_char">*</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6213
+                                    <property name="activates_default">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6214
+                                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6215
+                                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6216
+                              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6217
+                              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6218
+                                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6219
+                                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6220
+                                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6221
+                              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6222
+                            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6223
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6224
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6225
+                            <property name="left_attach">1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6226
+                            <property name="right_attach">2</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6227
+                            <property name="top_attach">3</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6228
+                            <property name="bottom_attach">4</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6229
+                            <property name="x_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6230
+                            <property name="y_options">fill</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6231
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6232
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6233
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6234
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6235
+                        <property name="tab_expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6236
+                        <property name="tab_fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6237
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6238
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6239
+                    <child type="tab">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6240
+                      <object class="GtkLabel" id="adv_label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6241
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6242
+                        <property name="label" translatable="yes">Advanced</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6243
+                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6244
+                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6245
+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6246
+                        <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6247
+                        <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6248
+                        <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6249
+                        <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6250
+                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6251
+                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6252
+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6253
+                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6254
+                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6255
+                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6256
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6257
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6258
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6259
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6260
+                <child type="label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6261
+                  <object class="GtkLabel" id="label6">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6262
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6263
+                    <property name="label" translatable="yes">Settings</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6264
+                    <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6265
+                    <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6266
+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6267
+                    <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6268
+                    <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6269
+                    <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6270
+                    <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6271
+                    <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6272
+                    <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6273
+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6274
+                    <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6275
+                    <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6276
+                    <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6277
+                    <accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6278
+                      <relation target="opt_frame" type="label-for"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6279
+                    </accessibility>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6280
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6281
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6282
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6283
+              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6284
+                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6285
+                <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6286
+                <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6287
+              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6288
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6289
+            <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6290
+              <object class="GtkFrame" id="doc_frame">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6291
+                <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6292
+                <property name="label_xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6293
+                <property name="label_yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6294
+                <property name="shadow_type">GTK_SHADOW_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6295
+                <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6296
+                  <object class="GtkVBox" id="doc_vbox">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6297
+                    <property name="border_width">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6298
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6299
+                    <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6300
+                    <property name="spacing">5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6301
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6302
+                      <object class="GtkLabel" id="doc">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6303
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6304
+                        <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6305
+                        <property name="label" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6306
+                        <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6307
+                        <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6308
+                        <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6309
+                        <property name="wrap">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6310
+                        <property name="selectable">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6311
+                        <property name="xalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6312
+                        <property name="yalign">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6313
+                        <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6314
+                        <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6315
+                        <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6316
+                        <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6317
+                        <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6318
+                        <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6319
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6320
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6321
+                        <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6322
+                        <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6323
+                        <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6324
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6325
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6326
+                    <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6327
+                      <object class="GtkHBox" id="hbox1">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6328
+                        <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6329
+                        <property name="homogeneous">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6330
+                        <property name="spacing">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6331
+                        <child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6332
+                          <object class="GtkButton" id="manual">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6333
+                            <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6334
+                            <property name="can_focus">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6335
+                            <property name="label" translatable="yes">_Documentation...</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6336
+                            <property name="use_underline">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6337
+                            <property name="relief">GTK_RELIEF_NORMAL</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6338
+                            <property name="focus_on_click">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6339
+                            <signal handler="manual_cb" name="clicked"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6340
+                          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6341
+                          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6342
+                            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6343
+                            <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6344
+                            <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6345
+                            <property name="pack_type">GTK_PACK_END</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6346
+                          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6347
+                        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6348
+                      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6349
+                      <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6350
+                        <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6351
+                        <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6352
+                        <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6353
+                      </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6354
+                    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6355
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6356
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6357
+                <child type="label">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6358
+                  <object class="GtkLabel" id="label7">
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6359
+                    <property name="visible">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6360
+                    <property name="label" translatable="yes"/>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6361
+                    <property name="use_underline">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6362
+                    <property name="use_markup">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6363
+                    <property name="justify">GTK_JUSTIFY_LEFT</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6364
+                    <property name="wrap">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6365
+                    <property name="selectable">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6366
+                    <property name="xalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6367
+                    <property name="yalign">0.5</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6368
+                    <property name="xpad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6369
+                    <property name="ypad">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6370
+                    <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6371
+                    <property name="width_chars">-1</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6372
+                    <property name="single_line_mode">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6373
+                    <property name="angle">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6374
+                  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6375
+                </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6376
+              </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6377
+              <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6378
+                <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6379
+                <property name="expand">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6380
+                <property name="fill">False</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6381
+              </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6382
+            </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6383
+          </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6384
+          <packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6385
+            <property name="padding">0</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6386
+            <property name="expand">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6387
+            <property name="fill">True</property>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6388
+          </packing>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6389
+        </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6390
+      </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6391
+    </child>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6392
+    <action-widgets>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6393
+      <action-widget response="0">adv_button</action-widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6394
+      <action-widget response="0">std_button</action-widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6395
+      <action-widget response="0">reset_button</action-widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6396
+      <action-widget response="-6">cancel_button</action-widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6397
+      <action-widget response="-5">ok_button</action-widget>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6398
+    </action-widgets>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6399
+  </object>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6400
+</interface>
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6401
-- 
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6402
2.7.4
c93a988b3522 25803271 xscreensaver should stop using libglade
Alan Coopersmith <Alan.Coopersmith@Oracle.COM>
parents:
diff changeset
  6403