[Goodies-commits] r5825 - in xfce4-mount-plugin/trunk: . panel-plugin

Fabian Nowak timystery at xfce.org
Mon Oct 27 00:35:49 CET 2008


Author: timystery
Date: 2008-10-26 23:35:49 +0000 (Sun, 26 Oct 2008)
New Revision: 5825

Modified:
   xfce4-mount-plugin/trunk/ChangeLog
   xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c
Log:
new header in mount plugin


Modified: xfce4-mount-plugin/trunk/ChangeLog
===================================================================
--- xfce4-mount-plugin/trunk/ChangeLog	2008-10-26 23:24:18 UTC (rev 5824)
+++ xfce4-mount-plugin/trunk/ChangeLog	2008-10-26 23:35:49 UTC (rev 5825)
@@ -1,3 +1,9 @@
+27 october 2008
+- New xfce-style header
+
+19 may 2008 - starting version 0.5.6
+- make labels in mount menu exactly as wide as necessary
+
 17 may 2008 - addition to version 0.5.5
 - updated German translation
 - allow UUID device points
@@ -48,7 +54,7 @@
 - corrected some wrong settings
 - hungarian translation
 
-17 september 2005 - version 0.3 
+17 september 2005 - version 0.3
 - now maintained by Fabian Nowak <timystery at arcor.de>
 - basic translation possibilities added
 - german tranlsaation added
@@ -74,7 +80,7 @@
 This is the first release of xfce4-mount-plugin. this little plugin behaves like the "kwikdisk - removable media utility" shipped with KDE.
 Press it and it displays a list of items representing your various devices. If you click on an unmounted devices it will mount it and vice versa. There is no warning in case a device can't be mounted or unmounted.
 The plugin displays various information on each device :
-"device name" > "mount point" ["used size"/"total size"] "available size" free 
+"device name" > "mount point" ["used size"/"total size"] "available size" free
 and an obvious progress bar
 
 BUG

Modified: xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c
===================================================================
--- xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c	2008-10-26 23:24:18 UTC (rev 5824)
+++ xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c	2008-10-26 23:35:49 UTC (rev 5825)
@@ -719,19 +719,21 @@
     xfce_panel_plugin_block_menu (plugin);
 
     GtkWidget *dlg, *header;
-    dlg = gtk_dialog_new_with_buttons (_("Edit Properties"),
+    //dlg = gtk_dialog_new_with_buttons (_("Edit Properties"),
+    dlg = xfce_titled_dialog_new_with_buttons(
+                _("Xfce 4 Mount Plugin"),
                 GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))),
                 GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
                 GTK_STOCK_CLOSE, GTK_RESPONSE_OK, NULL);
 
     gtk_container_set_border_width (GTK_CONTAINER (dlg), 2);
 
-    header = xfce_create_header (NULL, _("Mount devices"));
+    /* header = xfce_create_header (NULL, _("Mount devices"));
     gtk_widget_set_size_request (GTK_BIN (header)->child, -1, 32);
     gtk_container_set_border_width (GTK_CONTAINER (header), BORDER - 2);
     gtk_widget_show (header);
     gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), header, FALSE,
-                        TRUE, 0);
+                        TRUE, 0); */
 
     GtkWidget *vbox;
     t_mounter_dialog * md;




More information about the Goodies-commits mailing list