[gnome-commander] Revamped file properties dialog (location, volume and free space)
- From: Piotr Eljasiak <epiotr src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-commander] Revamped file properties dialog (location, volume and free space)
- Date: Tue, 6 Oct 2009 15:47:55 +0000 (UTC)
commit af01e037e70c9cab006580052564b6385d62cb83
Author: Piotr Eljasiak <epiotr src gnome org>
Date: Tue Oct 6 17:45:30 2009 +0200
Revamped file properties dialog (location, volume and free space)
NEWS | 1 +
doc/C/gnome-commander.xml | 2 +-
src/gnome-cmd-file-props-dialog.cc | 53 ++++++++++++++++++++++++++++++++++++
3 files changed, 55 insertions(+), 1 deletions(-)
---
diff --git a/NEWS b/NEWS
index 80176a4..0b5069d 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ Bug fixes:
* Fixed problem #... (...)
New features:
+ * Revamped file properties dialog
* New or updated docs: de, es
* New or updated translations: da, es, eu, ru, sl, zh_CN
* New key bindings:
diff --git a/doc/C/gnome-commander.xml b/doc/C/gnome-commander.xml
index d60a4a7..11ce8ec 100644
--- a/doc/C/gnome-commander.xml
+++ b/doc/C/gnome-commander.xml
@@ -5990,7 +5990,7 @@
<para>
<itemizedlist>
<listitem>
- <para>...</para>
+ <para>Revamped file properties dialog</para>
</listitem>
<listitem>
<para>New or updated docs: de, es</para>
diff --git a/src/gnome-cmd-file-props-dialog.cc b/src/gnome-cmd-file-props-dialog.cc
index f75f605..acc147c 100644
--- a/src/gnome-cmd-file-props-dialog.cc
+++ b/src/gnome-cmd-file-props-dialog.cc
@@ -23,6 +23,7 @@
#include "gnome-cmd-includes.h"
#include "gnome-cmd-dir.h"
+#include "gnome-cmd-con-device.h"
#include "gnome-cmd-file-selector.h"
#include "gnome-cmd-main-win.h"
#include "gnome-cmd-file-props-dialog.h"
@@ -392,6 +393,58 @@ inline GtkWidget *create_properties_tab (GnomeCmdFilePropsDialogPrivate *data)
add_sep (table, y++);
+ if (gnome_cmd_file_is_local (data->f))
+ {
+ GnomeCmdDir *dir = gnome_cmd_file_get_parent_dir (data->f);
+ GnomeCmdCon *con = dir ? gnome_cmd_dir_get_connection (dir) : NULL;
+ gchar *location = gnome_cmd_file_get_real_path (GNOME_CMD_FILE (dir));
+
+ label = create_bold_label (dialog, _("Location:"));
+ table_add (table, label, 0, y, GTK_FILL);
+
+ label = create_label (dialog, location);
+ table_add (table, label, 1, y++, GTK_FILL);
+
+ g_free (location);
+
+ label = create_bold_label (dialog, _("Volume:"));
+ table_add (table, label, 0, y, GTK_FILL);
+
+ if (GNOME_CMD_IS_CON_DEVICE (con))
+ {
+ GnomeVFSVolume *vol = gnome_cmd_con_device_get_vfs_volume (GNOME_CMD_CON_DEVICE (con));
+ gchar *fs_type = gnome_vfs_volume_get_filesystem_type (vol);
+ gchar *dev_path = gnome_vfs_volume_get_device_path (vol);
+
+ gchar *s = g_strdup_printf ("%s (%s, %s)", gnome_cmd_con_get_alias (con), dev_path, fs_type);
+
+ g_free (fs_type);
+ g_free (dev_path);
+
+ label = create_label (dialog, s);
+
+ g_free (s);
+ }
+ else
+ label = create_label (dialog, gnome_cmd_con_get_alias (con));
+
+ table_add (table, label, 1, y++, GTK_FILL);
+
+ if (dir && gnome_cmd_con_can_show_free_space (con))
+ if (gchar *free_space = gnome_cmd_dir_get_free_space (dir))
+ {
+ label = create_bold_label (dialog, _("Free space:"));
+ table_add (table, label, 0, y, GTK_FILL);
+
+ label = create_label (dialog, free_space);
+ table_add (table, label, 1, y++, GTK_FILL);
+
+ g_free (free_space);
+ }
+
+ add_sep (table, y++);
+ }
+
label = create_bold_label (dialog, _("Type:"));
table_add (table, label, 0, y, GTK_FILL);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]