diff --git a/libnemo-private/nemo-global-preferences.c b/libnemo-private/nemo-global-preferences.c index d42197deb..1a9612162 100644 --- a/libnemo-private/nemo-global-preferences.c +++ b/libnemo-private/nemo-global-preferences.c @@ -82,6 +82,23 @@ nemo_global_preferences_get_tooltip_flags (void) return flags; } +gboolean +nemo_global_preferences_should_load_plugin (const gchar *name, const gchar *key) +{ + gchar **disabled_list = g_settings_get_strv (nemo_plugin_preferences, key); + + gboolean ret = TRUE; + gint i = 0; + + for (i = 0; i < g_strv_length (disabled_list); i++) { + if (g_strcmp0 (disabled_list[i], name) == 0) + ret = FALSE; + } + + g_strfreev (disabled_list); + return ret; +} + static void ignore_view_metadata_cb (GSettings *settings, gchar *key, @@ -108,10 +125,12 @@ nemo_global_preferences_init (void) nemo_compact_view_preferences = g_settings_new("org.nemo.compact-view"); nemo_desktop_preferences = g_settings_new("org.nemo.desktop"); nemo_tree_sidebar_preferences = g_settings_new("org.nemo.sidebar-panels.tree"); + nemo_plugin_preferences = g_settings_new("org.nemo.plugins"); gnome_lockdown_preferences = g_settings_new("org.cinnamon.desktop.lockdown"); gnome_background_preferences = g_settings_new("org.cinnamon.desktop.background"); gnome_media_handling_preferences = g_settings_new("org.cinnamon.desktop.media-handling"); gnome_terminal_preferences = g_settings_new("org.cinnamon.desktop.default-applications.terminal"); + cinnamon_privacy_preferences = g_settings_new("org.cinnamon.desktop.privacy"); ignore_view_metadata = g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_IGNORE_VIEW_METADATA); diff --git a/libnemo-private/nemo-global-preferences.h b/libnemo-private/nemo-global-preferences.h index a9d333a82..6df7feacf 100644 --- a/libnemo-private/nemo-global-preferences.h +++ b/libnemo-private/nemo-global-preferences.h @@ -68,6 +68,9 @@ typedef enum /* Single/Double click preference */ #define NEMO_PREFERENCES_CLICK_POLICY "click-policy" +/* Quick renames with two single clicks and pause in-between*/ +#define NEMO_PREFERENCES_QUICK_RENAMES_WITH_PAUSE_IN_BETWEEN "quick-renames-with-pause-in-between" + /* Activating executable text files */ #define NEMO_PREFERENCES_EXECUTABLE_TEXT_ACTIVATION "executable-text-activation" @@ -76,6 +79,8 @@ typedef enum #define NEMO_PREFERENCES_NEW_TAB_POSITION "tabs-open-position" #define NEMO_PREFERENCES_SHOW_LOCATION_ENTRY "show-location-entry" +#define NEMO_PREFERENCES_SHOW_PREVIOUS_ICON_TOOLBAR "show-previous-icon-toolbar" +#define NEMO_PREFERENCES_SHOW_NEXT_ICON_TOOLBAR "show-next-icon-toolbar" #define NEMO_PREFERENCES_SHOW_UP_ICON_TOOLBAR "show-up-icon-toolbar" #define NEMO_PREFERENCES_SHOW_EDIT_ICON_TOOLBAR "show-edit-icon-toolbar" #define NEMO_PREFERENCES_SHOW_RELOAD_ICON_TOOLBAR "show-reload-icon-toolbar" @@ -83,7 +88,10 @@ typedef enum #define NEMO_PREFERENCES_SHOW_COMPUTER_ICON_TOOLBAR "show-computer-icon-toolbar" #define NEMO_PREFERENCES_SHOW_SEARCH_ICON_TOOLBAR "show-search-icon-toolbar" #define NEMO_PREFERENCES_SHOW_NEW_FOLDER_ICON_TOOLBAR "show-new-folder-icon-toolbar" -#define NEMO_PREFERENCES_SHOW_LABEL_SEARCH_ICON_TOOLBAR "show-label-search-icon-toolbar" +#define NEMO_PREFERENCES_SHOW_OPEN_IN_TERMINAL_TOOLBAR "show-open-in-terminal-toolbar" +#define NEMO_PREFERENCES_SHOW_ICON_VIEW_ICON_TOOLBAR "show-icon-view-icon-toolbar" +#define NEMO_PREFERENCES_SHOW_LIST_VIEW_ICON_TOOLBAR "show-list-view-icon-toolbar" +#define NEMO_PREFERENCES_SHOW_COMPACT_VIEW_ICON_TOOLBAR "show-compact-view-icon-toolbar" /* Which views should be displayed for new windows */ #define NEMO_WINDOW_STATE_START_WITH_STATUS_BAR "start-with-status-bar" @@ -95,6 +103,7 @@ typedef enum #define NEMO_WINDOW_STATE_MAXIMIZED "maximized" #define NEMO_WINDOW_STATE_SIDEBAR_WIDTH "sidebar-width" #define NEMO_WINDOW_STATE_MY_COMPUTER_EXPANDED "my-computer-expanded" +#define NEMO_WINDOW_STATE_BOOKMARKS_EXPANDED "bookmarks-expanded" #define NEMO_WINDOW_STATE_DEVICES_EXPANDED "devices-expanded" #define NEMO_WINDOW_STATE_NETWORK_EXPANDED "network-expanded" @@ -115,6 +124,12 @@ typedef enum #define NEMO_PREFERENCES_SHOW_BOOKMARKS_IN_TO_MENUS "show-bookmarks-in-to-menus" #define NEMO_PREFERENCES_SHOW_PLACES_IN_TO_MENUS "show-places-in-to-menus" +#define NEMO_PREFERENCES_RECENT_ENABLED "remember-recent-files" + +#define NEMO_PREFERENCES_SIDEBAR_BOOKMARK_BREAKPOINT "sidebar-bookmark-breakpoint" + +#define NEMO_PREFERENCES_CONTEXT_MENUS_SHOW_ALL_ACTIONS "context-menus-show-all-actions" + enum { NEMO_DEFAULT_FOLDER_VIEWER_ICON_VIEW, @@ -224,10 +239,16 @@ typedef enum #define NEMO_PREFERENCES_DISABLE_MENU_WARNING "disable-menu-warning" +/* Plugins */ +#define NEMO_PLUGIN_PREFERENCES_DISABLED_EXTENSIONS "disabled-extensions" +#define NEMO_PLUGIN_PREFERENCES_DISABLED_ACTIONS "disabled-actions" +#define NEMO_PLUGIN_PREFERENCES_DISABLED_SCRIPTS "disabled-scripts" + void nemo_global_preferences_init (void); char *nemo_global_preferences_get_default_folder_viewer_preference_as_iid (void); gboolean nemo_global_preferences_get_ignore_view_metadata (void); gint nemo_global_preferences_get_tooltip_flags (void); +gboolean nemo_global_preferences_should_load_plugin (const gchar *name, const gchar *key); GSettings *nemo_preferences; GSettings *nemo_icon_view_preferences; @@ -236,10 +257,12 @@ GSettings *nemo_compact_view_preferences; GSettings *nemo_desktop_preferences; GSettings *nemo_tree_sidebar_preferences; GSettings *nemo_window_state; +GSettings *nemo_plugin_preferences; GSettings *gnome_lockdown_preferences; GSettings *gnome_background_preferences; GSettings *gnome_media_handling_preferences; GSettings *gnome_terminal_preferences; +GSettings *cinnamon_privacy_preferences; G_END_DECLS diff --git a/libnemo-private/nemo-icon-container.c b/libnemo-private/nemo-icon-container.c index 4da462f94..7d9b74e1c 100644 --- a/libnemo-private/nemo-icon-container.c +++ b/libnemo-private/nemo-icon-container.c @@ -268,7 +268,7 @@ typedef struct { gboolean tight; } PlacementGrid; -static guint signals[LAST_SIGNAL]; +static guint signals[LAST_SIGNAL] = { 0 }; static void tooltip_prefs_changed_callback (NemoIconContainer *container) @@ -1416,9 +1416,6 @@ lay_down_icons_horizontal (NemoIconContainer *container, } lay_down_one_line (container, line_start, NULL, y, max_height_above, positions, TRUE); - - /* Advance to next line. */ - y += max_height_below + ICON_PAD_BOTTOM; } g_array_free (positions, TRUE); @@ -1903,6 +1900,7 @@ align_icons (NemoIconContainer *container) grid = placement_grid_new (container, TRUE); if (!grid) { + g_list_free (unplaced_icons); return; } @@ -4287,6 +4285,55 @@ button_press_event (GtkWidget *widget, } if (clicked_on_icon) { + NemoIcon *icon;//current icon which was clicked on + EelDRect icon_rect;//stores dimensions of the icon part + double eventX;//where did click event happened for x + double eventY;//where did click event happened for y + /* when icon is in renaming mode and user clicks on the image part of icon renaming should get closed */ + icon = get_first_selected_icon (container);//this function gets the clicked icon + icon_rect = nemo_icon_canvas_item_get_icon_rectangle (icon->item); + eel_canvas_window_to_world (EEL_CANVAS (container), event->x, event->y, &eventX, &eventY); + if (eventX > icon_rect.x0 && eventX < icon_rect.x1 && eventY > icon_rect.y0 && eventY < icon_rect.y1 && icon == get_icon_being_renamed (container)){ + end_renaming_mode (container,TRUE); + } + + /* Olny if the preferences is selected and clicks are for left button do a quick renames with pause in-between */ + if(event -> button == 1 && g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_QUICK_RENAMES_WITH_PAUSE_IN_BETWEEN)){ + static NemoIcon *last_icon_clicked = NULL;//this will show if icon was selected before + EelDRect text_rect;//stores dimentions of the text part + static int clicked_on_icon_text_before=0;//this is different from last_icon_clicked, here we have to make sure if it was clicked on text part + static gint64 last_time_clicked_on_icon_text_before=0;//it should be static to keep the last time it was clicked on icon + int double_click_time;//default double click time on the system + + + g_object_get (G_OBJECT (gtk_widget_get_settings (widget)), + "gtk-double-click-time", &double_click_time, + NULL);//this will get the default double click time for user's system + + icon = get_first_selected_icon (container);//this function gets the clicked icon + + /*This gets the dimentions of the text part*/ + text_rect = nemo_icon_canvas_item_get_text_rectangle (icon -> item, FALSE); + + /* the events get trapded into another coordinate system, this will fix it */ + eel_canvas_window_to_world(EEL_CANVAS (container), event -> x, event -> y, &eventX, &eventY); + + //users should click only into the text area + if((eventX > text_rect.x0 && eventX < text_rect.x1 && eventY > text_rect.y0 && eventY < text_rect.y1) || + (eventX > icon_rect.x0 && eventX < icon_rect.x1 && eventY > icon_rect.y0 && eventY < icon_rect.y1)){ + if(clicked_on_icon_text_before == 0 || last_icon_clicked != icon){//if it was not clicked before then do not rename, just mark it as being clicked + last_time_clicked_on_icon_text_before = eel_get_system_time (); + clicked_on_icon_text_before = 1; + last_icon_clicked = icon;//we need to be sure that the last icon which was clicked is the current we are clicking + } + else{//if it was clicked before then change the name, but not bafore double click time, this prevents annoying effects + if(eel_get_system_time() > last_time_clicked_on_icon_text_before+(double_click_time * 1250)) + nemo_icon_container_start_renaming_selected_item(container,FALSE);//we send a FALSE so it will be smart enough to not take extentions + last_time_clicked_on_icon_text_before = 0; + clicked_on_icon_text_before = 0; + } + } + } return TRUE; } @@ -5487,7 +5534,9 @@ key_press_event (GtkWidget *widget, * start the typeahead find capabilities. * Copied from NemoIconContainer */ if (!handled && - event->keyval != GDK_KEY_slash /* don't steal slash key event, used for "go to" */ && + event->keyval != GDK_KEY_asciitilde && + event->keyval != GDK_KEY_KP_Divide && + event->keyval != GDK_KEY_slash /* don't steal slash key events, used for "go to" */ && event->keyval != GDK_KEY_BackSpace && event->keyval != GDK_KEY_Delete) { GdkEvent *new_event; @@ -8332,7 +8381,7 @@ nemo_icon_container_start_renaming_selected_item (NemoIconContainer *container, pango_font_description_free (desc); icon_rect = nemo_icon_canvas_item_get_icon_rectangle (icon->item); - text_rect = nemo_icon_canvas_item_get_text_rectangle (icon->item, TRUE); + text_rect = nemo_icon_canvas_item_get_text_rectangle (icon->item, TRUE); if (nemo_icon_container_is_layout_vertical (container) && container->details->label_position == NEMO_ICON_LABEL_POSITION_BESIDE) { @@ -8367,7 +8416,13 @@ nemo_icon_container_start_renaming_selected_item (NemoIconContainer *container, start_offset = 0; end_offset = -1; } else { - eel_filename_get_rename_region (editable_text, &start_offset, &end_offset); + /* if it is a directory it should select all of the text regardless of select_all option */ + if (nemo_file_is_directory (icon->data)){ + start_offset = 0; + end_offset = -1; + }else{ + eel_filename_get_rename_region (editable_text, &start_offset, &end_offset); + } } gtk_widget_show (details->rename_widget); @@ -8501,13 +8556,8 @@ nemo_icon_container_set_is_desktop (NemoIconContainer *container, if (is_desktop) { GtkStyleContext *context; - context = gtk_widget_get_style_context (GTK_WIDGET (container)); - if (gtk_style_context_has_class (context, "nemo-desktop")) { - gtk_style_context_add_class (context, "nemo-desktop"); - } - else { - gtk_style_context_add_class (context, "nautilus-desktop"); - } + context = gtk_widget_get_style_context (GTK_WIDGET (container)); + gtk_style_context_add_class (context, "nemo-desktop"); } } @@ -8894,7 +8944,6 @@ nemo_icon_container_accessible_add_selection (AtkSelection *accessible, { GtkWidget *widget; NemoIconContainer *container; - GList *l; GList *selection; NemoIcon *icon; @@ -8905,10 +8954,8 @@ nemo_icon_container_accessible_add_selection (AtkSelection *accessible, container = NEMO_ICON_CONTAINER (widget); - l = g_list_nth (container->details->icons, i); - if (l) { - icon = l->data; - + icon = g_list_nth_data (container->details->icons, i); + if (icon) { selection = nemo_icon_container_get_selection (container); selection = g_list_prepend (selection, icon->data); @@ -8945,16 +8992,13 @@ nemo_icon_container_accessible_ref_selection (AtkSelection *accessible, { AtkObject *atk_object; NemoIconContainerAccessiblePrivate *priv; - GList *item; NemoIcon *icon; nemo_icon_container_accessible_update_selection (ATK_OBJECT (accessible)); priv = accessible_get_priv (ATK_OBJECT (accessible)); - item = (g_list_nth (priv->selection, i)); - - if (item) { - icon = item->data; + icon = g_list_nth_data (priv->selection, i); + if (icon) { atk_object = atk_gobject_accessible_for_object (G_OBJECT (icon->item)); if (atk_object) { g_object_ref (atk_object); @@ -8985,7 +9029,6 @@ nemo_icon_container_accessible_is_child_selected (AtkSelection *accessible, int i) { NemoIconContainer *container; - GList *l; NemoIcon *icon; GtkWidget *widget; @@ -8996,12 +9039,8 @@ nemo_icon_container_accessible_is_child_selected (AtkSelection *accessible, container = NEMO_ICON_CONTAINER (widget); - l = g_list_nth (container->details->icons, i); - if (l) { - icon = l->data; - return icon->is_selected; - } - return FALSE; + icon = g_list_nth_data (container->details->icons, i); + return icon ? icon->is_selected : FALSE; } static gboolean @@ -9010,7 +9049,6 @@ nemo_icon_container_accessible_remove_selection (AtkSelection *accessible, { NemoIconContainer *container; NemoIconContainerAccessiblePrivate *priv; - GList *l; GList *selection; NemoIcon *icon; GtkWidget *widget; @@ -9025,10 +9063,8 @@ nemo_icon_container_accessible_remove_selection (AtkSelection *accessible, container = NEMO_ICON_CONTAINER (widget); - l = g_list_nth (priv->selection, i); - if (l) { - icon = l->data; - + icon = g_list_nth_data (priv->selection, i); + if (icon) { selection = nemo_icon_container_get_selection (container); selection = g_list_remove (selection, icon->data); nemo_icon_container_set_selection (container, selection); @@ -9118,7 +9154,6 @@ nemo_icon_container_accessible_ref_child (AtkObject *accessible, int i) { AtkObject *atk_object; NemoIconContainer *container; - GList *item; NemoIcon *icon; GtkWidget *widget; @@ -9129,11 +9164,8 @@ nemo_icon_container_accessible_ref_child (AtkObject *accessible, int i) container = NEMO_ICON_CONTAINER (widget); - item = (g_list_nth (container->details->icons, i)); - - if (item) { - icon = item->data; - + icon = g_list_nth_data (container->details->icons, i); + if (icon) { atk_object = atk_gobject_accessible_for_object (G_OBJECT (icon->item)); g_object_ref (atk_object); diff --git a/libnemo-private/org.nemo.gschema.valid b/libnemo-private/org.nemo.gschema.valid new file mode 100644 index 000000000..e69de29bb diff --git a/libnemo-private/org.nemo.gschema.xml b/libnemo-private/org.nemo.gschema.xml new file mode 100644 index 000000000..b82d6deeb --- /dev/null +++ b/libnemo-private/org.nemo.gschema.xml @@ -0,0 +1,583 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 'after-current-tab' + Where to position newly open tabs in browser windows. + If set to "after-current-tab", then new tabs are inserted after the current tab. If set to "end", then new tabs are appended to the end of the tab list. + + + true + Enables the classic Nemo behavior, where all windows are browsers + If set to true, then all Nemo windows will be browser windows. This is how Nemo used to behave before version 2.6, and some people prefer this behavior. + + + false + Enables renaming of icons by two times clicking with pause between clicks + If set to true, then icons in all Nemo windows will be able to get renamed quickly. Users should click two times on icons with a pause time more than double-click time of their system. + + + false + Show the location entry by default + If set to true, then Nemo browser windows will show a textual input entry for the location toolbar. + + + true + Show Previous button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Next button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Up button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show refresh button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show toggle button location entry/pathbar + If set to true, then Nemo browser windows will show the button. + + + false + Show Home button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show Computer button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Search button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show new folder button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + false + Show open in terminal in the nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Icon View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show List View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Compact View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Whether to ask for confirmation when deleting files, or emptying Trash + If set to true, then Nemo will ask for confirmation when you attempt to delete files, or empty the Trash. + + + true + Whether to enable immediate deletion + If set to true, then Nemo will have a feature allowing you to delete a file immediately and in-place, instead of moving it to the trash. This feature can be dangerous, so use caution. + + + false + Whether to swap the hotkeys for Trash and Delete + If set to true, the Delete key will permanently delete a file, and the Shift-Delete key will only trash a file. + + + + 'local-only' + When to show preview text in icons + Speed tradeoff for when to show a preview of text file contents in the file's icon. If set to "always" then always show previews, even if the folder is on a remote server. If set to "local-only" then only show previews for local file systems. If set to "never" then never bother to read preview data. + + + + 'local-only' + When to show number of items in a folder + Speed tradeoff for when to show the number of items in a folder. If set to "always" then always show item counts, even if the folder is on a remote server. If set to "local-only" then only show counts for local file systems. If set to "never" then never bother to compute item counts. + + + 'double' + Type of click used to launch/open files + Possible values are "single" to launch files on a single click, or "double" to launch them on a double click. + + + 'ask' + What to do with executable text files when activated + What to do with executable text files when they are activated (single or double clicked). Possible values are "launch" to launch them as programs, "ask" to ask what to do via a dialog, and "display" to display them as text files. + + + true + Use extra mouse button events in Nemo' browser window + For users with mice that have "Forward" and "Back" buttons, this key will determine if any action is taken inside of Nemo when either is pressed. + + + 9 + Mouse button to activate the "Forward" command in browser window + For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Forward" command in a browser window. Possible values range between 6 and 14. + + + 8 + Mouse button to activate the "Back" command in browser window + For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Back" command in a browser window. Possible values range between 6 and 14. + + + + 'local-only' + When to show thumbnails of image files + Speed tradeoff for when to show an image file as a thumbnail. If set to "always" then always thumbnail, even if the folder is on a remote server. If set to "local-only" then only show thumbnails for local file systems. If set to "never" then never bother to thumbnail images, just use a generic icon. + + + 1048576 + Maximum image size for thumbnailing + Images over this size (in bytes) won't be thumbnailed. The purpose of this setting is to avoid thumbnailing large images that may take a long time to load or use lots of memory. + + + false + Show advanced permissions in the file property dialog + If set to true, then Nemo lets you edit and display file permissions in a more unix-like way, accessing some more esoteric options. + + + true + Show folders first in windows + If set to true, then Nemo shows folders prior to showing files in the icon and list views. + + + + + + 'name' + Default sort order + The default sort-order for items in the icon view. Possible values are "name", "size", "type" and "mtime". + + + false + Reverse sort order in new windows + If true, files in new windows will be sorted in reverse order. ie, if sorted by name, then instead of sorting the files from "a" to "z", they will be sorted from "z" to "a"; if sorted by size, instead of being incrementally they will be sorted decrementally. + + + false + Nemo uses the users home folder as the desktop + If set to true, then Nemo will use the user's home folder as the desktop. If it is false, then it will use ~/Desktop as the desktop. + + + + + + + + 'icon-view' + Default folder viewer + When a folder is visited this viewer is used unless you have selected another view for that particular folder. Possible values are "list-view", "icon-view" and "compact-view". + + + 'locale' + Date Format + The format of file dates. Possible values are "locale", "iso", and "informal". + + + false + Whether to show hidden files + If set to true, then hidden files are shown by default in the file manager. Hidden files are either dotfiles, listed in the folder's .hidden file or backup files ending with a tilde (~). + + + false + Whether to show the full path of the current view in the title bar and tab bars + If set to true, will show the normal title of a window or tab, followed by the full path to that location in parentheses. + + + [] + Bulk rename utility + If set, Nemo will append URIs of selected files and treat the result as a command line for bulk renaming. Bulk rename applications can register themselves in this key by setting the key to a space-separated string of their executable name and any command line options. If the executable name is not set to a full path, it will be searched for in the search path. + + + 'base-10' + Prefixes used for file sizes + Determines whether Nemo uses base-10, base-10 long, base-2 or base-2 long file size prefixes + + + false + Whether to close a view of a removeable device instead of navigating Home + If set to true, a view open for a removeable device will be closed instead of sent Home if the device is ejected + + + false + Whether to default to showing dual-pane view when a new window is opened + If set to true, new Nemo windows will default to showing two panes + + + false + Whether to ignore folder metadata for view zoom levels and layouts + If set to true, views will not change according to their metadata, but stay consistent for the life of that window + + + true + Whether to list bookmarks in the Move To/Copy To menus + If set to true, bookmarks will be listed in the MoveTo/CopyTo menus + + + true + Whether to list places in the Move To/Copy To menus + If set to true, places will be listed in the MoveTo/CopyTo menus + + + false + Whether to show all available actions in context menus + If set to true, all actions are visible. Otherwise nemo shows a simplified version of what is present in the menubar. + + + false + Show tooltips for desktop items + If true, tooltips will be displayed for desktop items. + + + false + Show tooltips when hovering on items in an icon or compact view + If true, tooltips will be displayed for icon and compact view items + + + false + Show tooltips when hovering on items in a list view + If true, tooltips will be displayed for list view items + + + false + Show detailed file type in tooltip + If true, tooltips will show a detailed file type. + + + false + Show file modified date in tooltip + If true, tooltips will show their modified date. + + + false + Show file accessed date in tooltip + If true, tooltips will show their accessed date. + + + false + Show full path in tooltip + If true, tooltips will show the file's full path. + + + false + Don't show the explainer message when turning off the main menu + If true, you will no longer recieve a popup explaining how to reactivate the main menu once you've hidden it + + + + + + [ 'none', 'size', 'date_modified' ] + List of possible captions on icons + A list of captions below an icon in the icon view and the desktop. The actual number of captions shown depends on the zoom level. Some possible values are: "size", "type", "date_modified", "date_changed", "date_accessed", "owner", "group", "permissions", "octal_permissions" and "mime_type". + + + false + Use tighter layout in new windows + If true, icons will be laid out tighter by default in new windows. + + + false + Put labels beside icons + If true, labels will be placed beside icons rather than underneath them. + + + 'standard' + Default icon zoom level + Default zoom level used by the icon view. + + + 64 + Default Thumbnail Icon Size + The default size of an icon for a thumbnail in the icon view. + + + [ '3' ] + Text Ellipsis Limit + A string specifying how parts of overlong file names should be replaced by ellipses, depending on the zoom level. Each of the list entries is of the form "Zoom Level:Integer". For each specified zoom level, if the given integer is larger than 0, the file name will not exceed the given number of lines. If the integer is 0 or smaller, no limit is imposed on the specified zoom level. A default entry of the form "Integer" without any specified zoom level is also allowed. It defines the maximum number of lines for all other zoom levels. Examples: 0 - always display overlong file names; 3 - shorten file names if they exceed three lines; smallest:5,smaller:4,0 - shorten file names if they exceed five lines for zoom level "smallest". Shorten file names if they exceed four lines for zoom level "smaller". Do not shorten file names for other zoom levels. Available zoom levels: smallest (33%), smaller (50%), small (66%), standard (100%), large (150%), larger (200%), largest (400%) + + + + + + 'standard' + Default compact view zoom level + Default zoom level used by the compact view. + + + false + All columns have same width + If this preference is set, all columns in the compact view have the same width. Otherwise, the width of each column is determined seperately. + + + + + + 'smaller' + Default list zoom level + Default zoom level used by the list view. + + + [ 'name', 'size', 'type', 'date_modified' ] + Default list of columns visible in the list view + Default list of columns visible in the list view. + + + [ 'name', 'size', 'type', 'date_modified' ] + Default column order in the list view + Default column order in the list view. + + + + + + + + + + true + Only show folders in the tree side pane + If set to true, Nemo will only show folders in the tree side pane. Otherwise it will show both folders and files. + + + + + '' + Desktop font + The font _description used for the icons on the desktop. + + + true + Allow Nemo to manage the desktop + If this is set to true, Nemo will autostart and manage the desktop + + + false + Home icon visible on desktop + If this is set to true, an icon linking to the home folder will be put on the desktop. + + + false + Computer icon visible on desktop + If this is set to true, an icon linking to the computer location will be put on the desktop. + + + false + Trash icon visible on desktop + If this is set to true, an icon linking to the trash will be put on the desktop. + + + false + Show mounted volumes on the desktop + If this is set to true, icons linking to mounted volumes will be put on the desktop. + + + false + Network Servers icon visible on the desktop + If this is set to true, an icon linking to the Network Servers view will be put on the desktop. + + + 3 + Text Ellipsis Limit + An integer specifying how parts of overlong file names should be replaced by ellipses on the desktop. If the number is larger than 0, the file name will not exceed the given number of lines. If the number is 0 or smaller, no limit is imposed on the number of displayed lines. + + + true + Fade the background on change + If set to true, then Nemo will use a fade effect to change the desktop background. + + + + + + '' + The geometry string for a navigation window. + A string containing the saved geometry and coordinates string for navigation windows. + + + false + Whether the navigation window should be maximized. + Whether the navigation window should be maximized by default. + + + 148 + Width of the side pane + The default width of the side pane in new windows. + + + -1 + Index of the bookmark list to jump to the dedicated sidebar bookmark section + This is an internal setting for the sidebar that tracks the index in the bookmark list that separates bookmarks in the Computer section from bookmarks in the Bookmark section. + + + true + Show toolbar in new windows + If set to true, newly opened windows will have toolbars visible. + + + true + Show location bar in new windows + If set to true, newly opened windows will have the location bar visible. + + + true + Show status bar in new windows + If set to true, newly opened windows will have the status bar visible. + + + true + Show side pane in new windows + If set to true, newly opened windows will have the side pane visible. + + + true + Show menu bar in new windows + If set to true, newly opened windows will have the menu bar visible. + + + true + Expand My Computer section in places sidebar + View state storage for My Computer in places sidebar + + + true + Expand Bookmark section in places sidebar + View state storage for Bookmarks in places sidebar + + + true + Expand Devices section in places sidebar + View state storage for My Computer in places sidebar + + + true + Expand Network section in places sidebar + View state storage for My Computer in places sidebar + + + + + + + + + + + 'places' + Side pane view + The side pane view to show in newly opened windows. + + + + + + [] + List of extensions -not- to load. + List of extension names you do -not- want to load. This maintains the behavior of an installed extension being enabled by default. + + + [] + List of NemoActions -not- to load. + List of action files you do -not- want loaded. This maintains the behavior of an installed action being enabled by default. + + + [] + List of scripts -not- to load. + List of script files you do -not- want loaded. This maintains the behavior of an installed script being enabled by default. + + + \ No newline at end of file diff --git a/libnemo-private/org.nemo.gschema.xml.in b/libnemo-private/org.nemo.gschema.xml.in index 7c327b172..0b17b16bf 100644 --- a/libnemo-private/org.nemo.gschema.xml.in +++ b/libnemo-private/org.nemo.gschema.xml.in @@ -85,18 +85,33 @@ <_summary>Enables the classic Nemo behavior, where all windows are browsers <_description>If set to true, then all Nemo windows will be browser windows. This is how Nemo used to behave before version 2.6, and some people prefer this behavior. + + false + <_summary>Enables renaming of icons by two times clicking with pause between clicks + <_description>If set to true, then icons in all Nemo windows will be able to get renamed quickly. Users should click two times on icons with a pause time more than double-click time of their system. + false <_summary>Show the location entry by default <_description>If set to true, then Nemo browser windows will show a textual input entry for the location toolbar. + + true + Show Previous button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Next button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + true Show Up button in nemo toolbar If set to true, then Nemo browser windows will show the button. - true + false Show refresh button in nemo toolbar If set to true, then Nemo browser windows will show the button. @@ -106,12 +121,12 @@ If set to true, then Nemo browser windows will show the button. - true + false Show Home button in nemo toolbar If set to true, then Nemo browser windows will show the button. - true + false Show Computer button in nemo toolbar If set to true, then Nemo browser windows will show the button. @@ -121,14 +136,29 @@ If set to true, then Nemo browser windows will show the button. - true + false Show new folder button in nemo toolbar If set to true, then Nemo browser windows will show the button. - + false - Show the Search button label in nemo toolbar - If set to true, then Nemo browser windows will show the Search label button. + Show open in terminal in the nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Icon View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show List View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. + + + true + Show Compact View button in nemo toolbar + If set to true, then Nemo browser windows will show the button. true @@ -281,6 +311,11 @@ <_summary>Whether to list places in the Move To/Copy To menus <_description>If set to true, places will be listed in the MoveTo/CopyTo menus + + false + <_summary>Whether to show all available actions in context menus + <_description>If set to true, all actions are visible. Otherwise nemo shows a simplified version of what is present in the menubar. + false <_summary>Show tooltips for desktop items @@ -484,6 +519,11 @@ <_summary>Width of the side pane <_description>The default width of the side pane in new windows. + + -1 + <_summary>Index of the bookmark list to jump to the dedicated sidebar bookmark section + <_description>This is an internal setting for the sidebar that tracks the index in the bookmark list that separates bookmarks in the Computer section from bookmarks in the Bookmark section. + true <_summary>Show toolbar in new windows @@ -514,6 +554,11 @@ <_summary>Expand My Computer section in places sidebar <_description>View state storage for My Computer in places sidebar + + true + <_summary>Expand Bookmark section in places sidebar + <_description>View state storage for Bookmarks in places sidebar + true <_summary>Expand Devices section in places sidebar @@ -538,4 +583,22 @@ <_description>The side pane view to show in newly opened windows. + + + + [] + <_summary>List of extensions -not- to load. + <_description>List of extension names you do -not- want to load. This maintains the behavior of an installed extension being enabled by default. + + + [] + <_summary>List of NemoActions -not- to load. + <_description>List of action files you do -not- want loaded. This maintains the behavior of an installed action being enabled by default. + + + [] + <_summary>List of scripts -not- to load. + <_description>List of script files you do -not- want loaded. This maintains the behavior of an installed script being enabled by default. + + diff --git a/src/nemo-file-management-properties.c b/src/nemo-file-management-properties.c index 4e0d9390d..cefa8c87c 100644 --- a/src/nemo-file-management-properties.c +++ b/src/nemo-file-management-properties.c @@ -53,6 +53,7 @@ #define NEMO_FILE_MANAGEMENT_PROPERTIES_SIZE_PREFIXES_WIDGET "size_prefixes_combobox" /* bool preferences */ +#define NEMO_FILE_MANAGEMENT_QUICK_RENAMES_WITH_PAUSE_IN_BETWEEN "quick_renames_with_pause_in_between" #define NEMO_FILE_MANAGEMENT_PROPERTIES_FOLDERS_FIRST_WIDGET "sort_folders_first_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_COMPACT_LAYOUT_WIDGET "compact_layout_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_LABELS_BESIDE_ICONS_WIDGET "labels_beside_icons_checkbutton" @@ -64,6 +65,8 @@ #define NEMO_FILE_MANAGEMENT_PROPERTIES_OPEN_NEW_WINDOW_WIDGET "new_window_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_TREE_VIEW_FOLDERS_WIDGET "treeview_folders_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_PREVIOUS_ICON_TOOLBAR_WIDGET "show_previous_icon_toolbar_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_NEXT_ICON_TOOLBAR_WIDGET "show_next_icon_toolbar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_UP_ICON_TOOLBAR_WIDGET "show_up_icon_toolbar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_RELOAD_ICON_TOOLBAR_WIDGET "show_reload_icon_toolbar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_EDIT_ICON_TOOLBAR_WIDGET "show_edit_icon_toolbar_checkbutton" @@ -71,7 +74,11 @@ #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_COMPUTER_ICON_TOOLBAR_WIDGET "show_computer_icon_toolbar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_SEARCH_ICON_TOOLBAR_WIDGET "show_search_icon_toolbar_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_NEW_FOLDER_ICON_TOOLBAR_WIDGET "show_new_folder_icon_toolbar_checkbutton" -#define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_LABEL_SEARCH_ICON_TOOLBAR_WIDGET "show_label_search_icon_toolbar_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_OPEN_IN_TERMINAL_ICON_TOOLBAR_WIDGET "show_open_in_terminal_icon_toolbar_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_ICON_VIEW_ICON_TOOLBAR_WIDGET "show_icon_view_icon_toolbar_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_LIST_VIEW_ICON_TOOLBAR_WIDGET "show_list_view_icon_toolbar_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_COMPACT_VIEW_ICON_TOOLBAR_WIDGET "show_compact_view_icon_toolbar_checkbutton" + #define NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_FULL_PATH_IN_TITLE_BARS_WIDGET "show_full_path_in_title_bars_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_CLOSE_DEVICE_VIEW_ON_EJECT_WIDGET "close_device_view_on_eject_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_AUTOMOUNT_MEDIA_WIDGET "media_automount_checkbutton" @@ -93,6 +100,8 @@ #define NEMO_FILE_MANAGEMENT_PROPERTIES_TOOLTIP_ACCESS_DATE_WIDGET "tt_show_created_date_checkbutton" #define NEMO_FILE_MANAGEMENT_PROPERTIES_TOOLTIP_FULL_PATH_WIDGET "tt_show_full_path_checkbutton" +#define NEMO_FILE_MANAGEMENT_PROPERTIES_NEMO_PREFERENCES_CONTEXT_MENUS_SHOW_ALL_ACTIONS_WIDGET "context_menus_show_all_actions_checkbutton" + /* int enums */ #define NEMO_FILE_MANAGEMENT_PROPERTIES_THUMBNAIL_LIMIT_WIDGET "preview_image_size_combobox" @@ -185,7 +194,8 @@ static const guint64 thumbnail_limit_values[] = { 104857600, 1073741824, 2147483648U, - 4294967295U + 4294967295U, + 8589934592U }; static const char * const icon_captions_components[] = { @@ -218,73 +228,14 @@ nemo_file_management_properties_size_group_create (GtkBuilder *builder, g_object_unref (G_OBJECT (size_group)); } -static void -preferences_show_help (GtkWindow *parent, - char const *helpfile, - char const *sect_id) -{ - GError *error = NULL; - GtkWidget *dialog; - char *help_string; - - g_assert (helpfile != NULL); - g_assert (sect_id != NULL); - - help_string = g_strdup_printf ("help:%s/%s", helpfile, sect_id); - - gtk_show_uri (gtk_window_get_screen (parent), - help_string, gtk_get_current_event_time (), - &error); - g_free (help_string); - - if (error) { - dialog = gtk_message_dialog_new (GTK_WINDOW (parent), - GTK_DIALOG_DESTROY_WITH_PARENT, - GTK_MESSAGE_ERROR, - GTK_BUTTONS_OK, - _("There was an error displaying help: \n%s"), - error->message); - - g_signal_connect (G_OBJECT (dialog), - "response", G_CALLBACK (gtk_widget_destroy), - NULL); - gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); - gtk_widget_show (dialog); - g_error_free (error); - } -} - - static void nemo_file_management_properties_dialog_response_cb (GtkDialog *parent, int response_id, GtkBuilder *builder) { - char *section; - - if (response_id == GTK_RESPONSE_HELP) { - switch (gtk_notebook_get_current_page (GTK_NOTEBOOK (gtk_builder_get_object (builder, "notebook1")))) { - default: - case 0: - section = "nemo-views"; - break; - case 1: - section = "nemo-behavior"; - break; - case 2: - section = "nemo-display"; - break; - case 3: - section = "nemo-list"; - break; - case 4: - section = "nemo-preview"; - break; - } - preferences_show_help (GTK_WINDOW (parent), "gnome-help", section); - } else if (response_id == GTK_RESPONSE_CLOSE) { - gtk_widget_destroy (GTK_WIDGET (parent)); - } + if (response_id == GTK_RESPONSE_CLOSE) { + gtk_widget_destroy (GTK_WIDGET (parent)); + } } static void @@ -787,6 +738,29 @@ connect_tooltip_items (GtkBuilder *builder) } +/* When single click radio button is selected, checkbox for quick renames should get unselected and disable to avoid annoying features */ +static void +setup_quick_renames (GtkBuilder *builder) +{ + gboolean enabled = FALSE; + enabled = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (W (click_behavior_components[1]))); + if(enabled==FALSE){ + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(W (NEMO_FILE_MANAGEMENT_QUICK_RENAMES_WITH_PAUSE_IN_BETWEEN)), FALSE); + } + gtk_widget_set_sensitive (GTK_WIDGET (W (NEMO_FILE_MANAGEMENT_QUICK_RENAMES_WITH_PAUSE_IN_BETWEEN)), enabled); +} + +static void +connect_quick_renames (GtkBuilder *builder) +{ + GtkRadioButton *w; + w=GTK_RADIO_BUTTON(W(click_behavior_components[0])); + g_signal_connect_swapped (w, "toggled", G_CALLBACK (setup_quick_renames), builder); + + w=GTK_RADIO_BUTTON(W(click_behavior_components[1])); + g_signal_connect_swapped (w, "toggled", G_CALLBACK (setup_quick_renames), builder); +} + static void nemo_file_management_properties_dialog_setup (GtkBuilder *builder, GtkWindow *window) { @@ -806,6 +780,12 @@ nemo_file_management_properties_dialog_setup (GtkBuilder *builder, GtkWindow *wi /* nemo patch */ + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_PREVIOUS_ICON_TOOLBAR_WIDGET, + NEMO_PREFERENCES_SHOW_PREVIOUS_ICON_TOOLBAR); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_NEXT_ICON_TOOLBAR_WIDGET, + NEMO_PREFERENCES_SHOW_NEXT_ICON_TOOLBAR); bind_builder_bool (builder, nemo_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_UP_ICON_TOOLBAR_WIDGET, NEMO_PREFERENCES_SHOW_UP_ICON_TOOLBAR); @@ -824,16 +804,25 @@ nemo_file_management_properties_dialog_setup (GtkBuilder *builder, GtkWindow *wi bind_builder_bool (builder, nemo_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_SEARCH_ICON_TOOLBAR_WIDGET, NEMO_PREFERENCES_SHOW_SEARCH_ICON_TOOLBAR); - bind_builder_bool (builder, nemo_preferences, - NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_LABEL_SEARCH_ICON_TOOLBAR_WIDGET, - NEMO_PREFERENCES_SHOW_LABEL_SEARCH_ICON_TOOLBAR); bind_builder_bool (builder, nemo_preferences, - NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_NEW_FOLDER_ICON_TOOLBAR_WIDGET, - NEMO_PREFERENCES_SHOW_NEW_FOLDER_ICON_TOOLBAR); + NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_NEW_FOLDER_ICON_TOOLBAR_WIDGET, + NEMO_PREFERENCES_SHOW_NEW_FOLDER_ICON_TOOLBAR); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_OPEN_IN_TERMINAL_ICON_TOOLBAR_WIDGET, + NEMO_PREFERENCES_SHOW_OPEN_IN_TERMINAL_TOOLBAR); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_ICON_VIEW_ICON_TOOLBAR_WIDGET, + NEMO_PREFERENCES_SHOW_ICON_VIEW_ICON_TOOLBAR); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_LIST_VIEW_ICON_TOOLBAR_WIDGET, + NEMO_PREFERENCES_SHOW_LIST_VIEW_ICON_TOOLBAR); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_SHOW_COMPACT_VIEW_ICON_TOOLBAR_WIDGET, + NEMO_PREFERENCES_SHOW_COMPACT_VIEW_ICON_TOOLBAR); /* setup preferences */ bind_builder_bool (builder, nemo_icon_view_preferences, - NEMO_FILE_MANAGEMENT_PROPERTIES_COMPACT_LAYOUT_WIDGET, - NEMO_PREFERENCES_ICON_VIEW_DEFAULT_USE_TIGHTER_LAYOUT); + NEMO_FILE_MANAGEMENT_PROPERTIES_COMPACT_LAYOUT_WIDGET, + NEMO_PREFERENCES_ICON_VIEW_DEFAULT_USE_TIGHTER_LAYOUT); bind_builder_bool (builder, nemo_icon_view_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_LABELS_BESIDE_ICONS_WIDGET, NEMO_PREFERENCES_ICON_VIEW_LABELS_BESIDE_ICONS); @@ -843,9 +832,15 @@ nemo_file_management_properties_dialog_setup (GtkBuilder *builder, GtkWindow *wi bind_builder_bool (builder, nemo_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_FOLDERS_FIRST_WIDGET, NEMO_PREFERENCES_SORT_DIRECTORIES_FIRST); + bind_builder_bool(builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_QUICK_RENAMES_WITH_PAUSE_IN_BETWEEN, + NEMO_PREFERENCES_QUICK_RENAMES_WITH_PAUSE_IN_BETWEEN); bind_builder_bool_inverted (builder, nemo_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_ALWAYS_USE_BROWSER_WIDGET, NEMO_PREFERENCES_ALWAYS_USE_BROWSER); + bind_builder_bool (builder, nemo_preferences, + NEMO_FILE_MANAGEMENT_PROPERTIES_NEMO_PREFERENCES_CONTEXT_MENUS_SHOW_ALL_ACTIONS_WIDGET, + NEMO_PREFERENCES_CONTEXT_MENUS_SHOW_ALL_ACTIONS); bind_builder_bool (builder, nemo_preferences, NEMO_FILE_MANAGEMENT_PROPERTIES_TRASH_CONFIRM_WIDGET, NEMO_PREFERENCES_CONFIRM_TRASH); @@ -990,6 +985,10 @@ nemo_file_management_properties_dialog_setup (GtkBuilder *builder, GtkWindow *wi setup_tooltip_items (builder); connect_tooltip_items (builder); + /* to make checkbox for quickrenames get disabled when single click is selected */ + setup_quick_renames(builder); + connect_quick_renames(builder); + nemo_file_management_properties_dialog_setup_icon_caption_page (builder); nemo_file_management_properties_dialog_setup_list_column_page (builder); diff --git a/src/nemo-file-management-properties.glade b/src/nemo-file-management-properties.glade index 379fdc159..7f7a52bb6 100644 --- a/src/nemo-file-management-properties.glade +++ b/src/nemo-file-management-properties.glade @@ -1,9 +1,254 @@ + - + + + + + + + + + Icon View + + + List View + + + Compact View + + + + + + + + + + + Always + + + Local Files Only + + + Never + + + + + + + + + + + Decimal + + + Decimal (long format) + + + Binary + + + Binary (long format) + + + + + + + + + + + By Name + + + By Size + + + By Type + + + By Detailed Type + + + By Modification Date + + + By Access Date + + + By Trashed Date + + + + + + + + + + + 33% + + + 50% + + + 66% + + + 100% + + + 150% + + + 200% + + + 400% + + + + + + + + + + + 33% + + + 50% + + + 66% + + + 100% + + + 150% + + + 200% + + + 400% + + + + + + + + + + + 33% + + + 50% + + + 66% + + + 100% + + + 150% + + + 200% + + + 400% + + + + + + + + + + + Always + + + Local Files Only + + + Never + + + + + + + + + + + Always + + + Local Files Only + + + Never + + + + + + + + + + + 100 KB + + + 500 KB + + + 1 MB + + + 3 MB + + + 5 MB + + + 10 MB + + + 100 MB + + + 1 GB + + + 2 GB + + + 4 GB + + + 8 GB + + + False - 5 File Management Preferences center 800 @@ -12,6 +257,7 @@ True + 0 False vertical 2 @@ -21,8 +267,8 @@ False end - - gtk-help + + gtk-close True True True @@ -35,21 +281,6 @@ 0 - - - gtk-close - True - True - True - False - True - - - False - True - 1 - - False @@ -59,86 +290,182 @@ - + True - True - 5 + False + + icons - + True False + + + + center + True + stack1 + + + + + True + True + + + + + False + True + 0 + + + + + True + False + 5 + 5 + 5 + + + + True + True + slide-left-right - + True False - + True False - 12 - vertical - 18 - + True False vertical - 6 - - - True - False - 0 - <b>Default View</b> - True - - - False - False - 0 - - - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Default View</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - + True False - 12 + vertical + 6 - + True False - 0 - View _new folders using: - True - default_view_combobox + 12 + + + True + False + 0 + View _new folders using: + True + default_view_combobox + + + False + False + 0 + + + + + True + False + model1 + + + + 0 + + + + + False + True + 1 + + False - False + True 0 - + True False - model1 + 12 - - - 0 - + + True + False + 0 + _Arrange items: + True + sort_order_combobox + + + False + False + 0 + + + + + True + False + model2 + + + + 0 + + + + + False + True + 1 + @@ -147,983 +474,1060 @@ 1 - - - False - True - 0 - - - - - True - False - 12 - + + Sort _folders before files True - False - 0 - _Arrange items: + True + False True - sort_order_combobox + 0 + True False False - 0 - - - - - True - False - model2 - - - - 0 - - - - - False - True - 1 + 2 - - False - True - 1 - - - - - Sort _folders before files - True - True - False - True - 0 - True - - - False - False - 2 - + + False + True + 1 + False True - 1 + 0 - - - False - True - 0 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Icon View Defaults</b> - True False - False - 0 + True + 1 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Icon View Defaults</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - + True False - 12 + vertical + 6 - + True False - 0 - Default _zoom level: - True - icon_view_zoom_combobox + 12 + + + True + False + 0 + Default _zoom level: + True + icon_view_zoom_combobox + + + False + False + 0 + + + + + True + False + model3 + + + + 0 + + + + + False + True + 1 + + False - False + True 0 - + + _Text beside icons True - False - model3 - - - - 0 - - + True + False + True + 0 + True False - True + False 1 + + + _Use compact layout + True + True + False + True + 0 + True + + + False + False + 2 + + - - False - True - 0 - - - - - _Text beside icons - True - True - False - True - 0 - True - - - False - False - 1 - - - - - _Use compact layout - True - True - False - True - 0 - True - - - False - False - 2 - + + False + True + 1 + False True - 1 + 2 - - - False - True - 1 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Compact View Defaults</b> - True False - False - 0 + True + 3 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Compact View Defaults</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - + True False - 12 + vertical + 6 - + True False - 0 - _Default zoom level: - True - compact_view_zoom_combobox + 12 + + + True + False + 0 + _Default zoom level: + True + compact_view_zoom_combobox + + + False + False + 0 + + + + + True + False + model4 + + + + 0 + + + + + False + True + 1 + + False - False + True 0 - + + A_ll columns have the same width True - False - model4 - - - - 0 - - + True + False + True + 0 + True False - True + False 1 - - False - True - 0 - - - - - A_ll columns have the same width - True - True - False - True - 0 - True - - - False - False - 1 - + + False + True + 1 + False True - 1 + 4 - - - False - True - 2 - - - - - True - False - vertical - 6 - + True False - 0 - <b>List View Defaults</b> - True False - False - 0 + True + 5 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>List View Defaults</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - + True False - 12 + vertical + 6 - + True False - 0 - D_efault zoom level: - True - list_view_zoom_combobox - - - False - False - 0 - - - - - True - False - model5 + 12 - - - 0 - + + True + False + 0 + D_efault zoom level: + True + list_view_zoom_combobox + + + False + False + 0 + + + + + True + False + model5 + + + + 0 + + + + + False + True + 1 + False True - 1 + 0 - - False - True - 0 - + + False + True + 1 + False True - 1 + 6 - - - False - True - 3 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Tree View Defaults</b> - True False - False - 0 + True + 7 - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 6 + 0 + <b>Tree View Defaults</b> + True + + + False + False + 0 + + + + + True + False + 40 - - Show _only folders + True - True - False - True - 0 - True + False + vertical + 6 + + + Show _only folders + True + True + False + True + 0 + True + + + False + False + 0 + + - - False - False - 0 - + + False + True + 1 + False True - 1 + 8 - - False - True - 4 - + + views + Views + - - - - - True - False - Views - - - False - - - - - True - False - + True False - + True False - 12 - vertical - 18 - + True False vertical - 6 - - - True - False - 0 - <b>Behavior</b> - True - - - False - False - 0 - - - + True False - 12 + 6 + vertical + 6 - + True False - vertical - - - _Single click to open items - True - True - False - True - 0 - True - True - - - False - False - 0 - - - - - _Double click to open items - True - True - False - True - 0 - True - single_click_radiobutton - - - False - False - 3 - 1 - - - - - Open each _folder in its own window - True - True - False - True - 0 - True - - - False - False - 3 - 2 - - - - - Always start in dual-pane view - True - True - False - True - 0 - True - - - False - False - 3 - 3 - - + 0 + <b>Behavior</b> + True + + + False + False + 0 + + + + + True + False + 40 - - Ignore per-folder view preferences + True - True - False - True - 0 - True + False + vertical + + + _Single click to open items + True + True + False + True + 0 + True + True + + + False + False + 0 + + + + + _Double click to open items + True + True + False + True + 0 + True + single_click_radiobutton + + + False + False + 3 + 1 + + + + + Quick renames by two clicks with pause in-between + True + True + False + True + 0 + True + + + False + False + 3 + 2 + + + + + Open each _folder in its own window + True + True + False + True + 0 + True + + + False + False + 3 + 3 + + + + + Always start in dual-pane view + True + True + False + True + 0 + True + + + False + False + 3 + 4 + + + + + Ignore per-folder view preferences + True + True + False + True + 0 + True + + + False + False + 3 + 5 + + - - False - False - 3 - 4 - + + False + False + 1 + False - False - 1 + True + 0 - - - False - True - 0 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Executable Text Files</b> - True False - False - 0 + True + 1 - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 6 - - - _Run executable text files when they are opened - True - True - False - True - 0 - True - True - - - False - False - 0 - - - - - _View executable text files when they are opened - True - True - False - True - 0 - True - scripts_execute_radiobutton - - - False - False - 1 - - + 0 + <b>Executable Text Files</b> + True + + + False + False + 0 + + + + + True + False + 40 - - _Ask each time + True - True - False - True - 0 - True - scripts_execute_radiobutton + False + vertical + 6 + + + _Run executable text files when they are opened + True + True + False + True + 0 + True + True + + + False + False + 0 + + + + + _View executable text files when they are opened + True + True + False + True + 0 + True + scripts_execute_radiobutton + + + False + False + 1 + + + + + _Ask each time + True + True + False + True + 0 + True + scripts_execute_radiobutton + + + False + False + 2 + + - - False - False - 2 - + + False + False + 1 + False - False - 1 + True + 2 - - - False - True - 1 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Trash</b> - True False - False - 0 + True + 3 - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 6 - - - Ask before _emptying the Trash or deleting files - True - True - False - True - 0 - True - - - False - False - 0 - - + 0 + <b>Trash</b> + True + + + False + False + 0 + + + + + True + False + 40 - - I_nclude a Delete command that bypasses Trash + True - True - False - True - 0 - True - - - False - False - 1 - - - - - Bypass the Trash when the Delete key is pressed - True - True - False - 0 - True + False + vertical + 6 + + + Ask before _emptying the Trash or deleting files + True + True + False + True + 0 + True + + + False + False + 0 + + + + + I_nclude a Delete command that bypasses Trash + True + True + False + True + 0 + True + + + False + False + 1 + + + + + Bypass the Trash when the Delete key is pressed + True + True + False + 0 + True + + + False + False + 2 + + - - False - False - 2 - + + False + False + 1 + False - False - 1 + True + 4 - - - False - True - 2 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Media Handling</b> - True False - False - 0 + True + 5 - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 6 - - - Automatically mount removeable media when inserted and on startup - True - True - False - True - 0 - True - - - False - False - 0 - - - - - Automatically open a folder for automounted media - True - True - False - True - 0 - True - - - False - False - 1 - - - - - Prompt or autorun/autostart programs when media are inserted - True - True - False - True - 0 - True - - - False - False - 2 - - + 0 + <b>Media Handling</b> + True + + + False + False + 0 + + + + + True + False + 40 - - Automatically close the device's tab, pane, or window when a device is unmounted or ejected + True - True - False - True - 0 - True + False + vertical + 6 + + + Automatically mount removeable media when inserted and on startup + True + True + False + True + 0 + True + + + False + False + 0 + + + + + Automatically open a folder for automounted media + True + True + False + True + 0 + True + + + False + False + 1 + + + + + Prompt or autorun/autostart programs when media are inserted + True + True + False + True + 0 + True + + + False + False + 2 + + + + + Automatically close the device's tab, pane, or window when a device is unmounted or ejected + True + True + False + True + 0 + True + + + False + False + 3 + + - - False - False - 3 - + + False + False + 1 + False - False - 1 + True + 6 - - - False - True - 3 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Bulk Rename</b> - True False - False - 0 + True + 7 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Bulk Rename</b> + True + + + False + False + 0 + + - + True False - vertical + 40 + 40 - + True False + vertical - + True False - 0 - Command to invoke when renaming multiple items: + 4 + + + True + False + 0 + Command to invoke when renaming multiple items: + + + False + True + 0 + + + + + True + True + True + + out + + + False + True + 1 + + False @@ -1131,132 +1535,84 @@ 0 - - - True - True - True - - out - True - - - False - True - 1 - - - - False - True - 0 - + + False + False + 1 + False - False - 1 + True + 8 - - False - True - 4 - + + behavior + Behavior + - - - 1 - - - - - True - False - Behavior - - - 1 - False - - - - - True - False - + True False - + True False - 12 - vertical - 18 - + True False vertical - 6 - - - True - False - 0 - <b>Icon Captions</b> - True - - - False - False - 0 - - - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 6 - - - True - False - 0 - Choose the order of information to appear beneath icon names. More information will appear when zooming in closer. - True - - - False - False - 0 - - + 0 + <b>Icon Captions</b> + True + + + False + False + 0 + + + + + True + False + 40 - + True False + vertical + 6 - + True False + 0 + Choose the order of information to appear beneath icon names. More information will appear when zooming in closer. + True False @@ -1265,11 +1621,32 @@ - + True False - 0 - 1 + 40 + + + True + False + + + False + False + 0 + + + + + True + False + + + False + False + 1 + + False @@ -1277,57 +1654,140 @@ 1 - - - False - False - 1 - - - - - True - False - + True False - True + 40 + + + True + False + True + + + False + False + 0 + + + + + True + False + + + False + False + 1 + + False False - 0 + 2 - + True False - 0 - 1 + 40 + + + True + False + + + False + False + 0 + + + + + True + False + + + False + False + 1 + + False False - 1 + 3 - - False - False - 2 - + + + False + False + 1 + + + + + False + True + 0 + + + + + True + False + + + False + True + 1 + + + + + True + False + 6 + vertical + 6 + + + True + False + 0 + <b>Date</b> + True + + + False + False + 0 + + + + + True + False + 40 - + True False + 12 - + True False + _Format: + True + date_format_combobox False @@ -1336,11 +1796,9 @@ - + True False - 0 - 1 False @@ -1349,699 +1807,713 @@ - - False - False - 3 - + + False + False + 1 + False False - 1 + 2 - - - False - True - 0 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Date</b> - True False - False - 0 + True + 3 - + True False - 12 + 6 + vertical + 6 - + True False - 12 - - - True - False - _Format: - True - date_format_combobox - - - False - False - 0 - - + 0 + <b>Window and Tab Titles</b> + True + + + False + False + 0 + + + + + True + False + 40 - + True False - 0 - 1 + vertical + 6 + + + Show the full p_ath in the title bar and tab bars + True + True + False + True + 0 + True + + + False + False + 0 + + - - False - False - 1 - + + False + False + 1 + False - False - 1 - - - - - False - False - 1 - - - - - True - False - vertical - 6 - - - True - False - 0 - <b>Window and Tab Titles</b> - True - - - False - False - 0 + True + 4 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>File Size</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - - Show the full p_ath in the title bar and tab bars + True - True - False - True - 0 - True + False + 12 + + + True + False + _Prefixes: + True + size_prefixes_combobox + + + False + False + 0 + + + + + True + False + model11 + + + + 0 + + + + + False + False + 1 + + - - False - False - 0 - + + False + False + 1 + False False - 1 + 4 - - - False - True - 2 - - - - - True - False - vertical - 6 - + True False - 0 - <b>File Size</b> - True False - False - 0 + True + 5 + + + + + True + False + + + False + True + 7 - + True False - 12 + 6 + vertical + 6 - + True False - 12 - - - True - False - _Prefixes: - True - size_prefixes_combobox - - - False - False - 0 - - + 0 + <b>File Properties</b> + True + + + False + False + 0 + + + + + True + False + 40 - + True False - model11 + vertical + 6 - - - 0 - + + Show advanced permissions in the file property dialog + True + True + False + True + 0 + True + + + False + False + 0 + - - False - False - 1 - + + False + False + 2 + False False - 1 + 8 - - - False - False - 2 - - - - - True - False - vertical - 6 - + True False - 0 - <b>File Properties</b> - True False - False - 0 + True + 9 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Move/Copy To Menu</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - - Show advanced permissions in the file property dialog + True - True - False - True - 0 - True + False + vertical + 6 + + + List bookmarks in the menu + True + True + False + True + 0 + True + + + False + False + 0 + + + + + List devices and network locations in the menu + True + True + False + True + 0 + True + + + False + False + 1 + + - - False - False - 0 - + + False + False + 1 + False - False - 2 + True + 10 - - - False - False - 4 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Move/Copy To Menu</b> - True False - False - 0 + True + 11 - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 6 - - - List bookmarks in the menu - True - True - False - True - 0 - True - - - False - False - 0 - - + 0 + <b>Context Menus</b> + True + + + False + False + 0 + + + + + True + False + 40 - - List devices and network locations in the menu + True - True - False - True - 0 - True + False + vertical + 6 + + + Show all available actions in context menus (restart Nemo if you change this option) + True + True + False + True + 0 + True + + + False + False + 0 + + - - False - False - 1 - + + False + False + 1 + False - False - 1 + True + 12 - - False - True - 5 - + + display + Display + - - - 2 - - - - - True - False - Display - - - 2 - False - - - - - True - False - + True False - + True False - 12 - vertical - 18 - + True False + 12 vertical - 6 - - - True - False - 0 - <b>List Columns</b> - True - - - False - False - 0 - - + 18 - + True False - 12 + vertical + 6 - + True False - vertical - 6 + 0 + <b>List Columns</b> + True + + + False + False + 0 + + + + + True + False + 12 - + True False - 0 - Choose the order of information to appear in the list view. - True + vertical + 6 + + + True + False + 0 + Choose the order of information to appear in the list view. + True + + + False + False + 0 + + + + + - - False - False - 0 - - - - + + True + True + 1 + True True - 1 + 0 - - True - True - 0 - + + list-columns + List Columns + - - - 3 - - - - - True - False - List Columns - - - 3 - False - - - - - True - False - + True False - + True False - 12 - vertical - 18 - + True False vertical - 6 - - - True - False - 0 - <b>Text Files</b> - True - - - False - False - 0 - - - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Text Files</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - + True False - 12 - - - True - False - 0 - Show te_xt in icons: - True - preview_text_combobox - - - False - False - 0 - - + vertical + 6 - + True False - model6 + 12 - - - 0 - + + True + False + 0 + Show te_xt in icons: + True + preview_text_combobox + + + False + False + 0 + + + + + True + False + model6 + + + + 0 + + + + + False + False + 1 + False False - 1 + 0 - - False - False - 0 - + + False + False + 1 + False - False - 1 + True + 0 - - - False - True - 0 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Other Previewable Files</b> - True False - False - 0 + True + 1 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Other Previewable Files</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - + True False - 12 - - - True - False - 0 - Show _thumbnails: - True - preview_image_combobox - - - False - False - 0 - - + vertical + 6 - + True False - model7 + 12 - - - 0 - + + True + False + 0 + Show _thumbnails: + True + preview_image_combobox + + + False + False + 0 + + + + + True + False + model7 + + + + 0 + + + + + False + False + 1 + - - - False - False - 1 - - - - - False - False - 0 - - - - - True - False - 12 - - - True - False - 0 - _Only for files smaller than: - True - preview_image_size_combobox False @@ -2050,15 +2522,42 @@ - + True False - model8 + 12 - - - 0 - + + True + False + 0 + _Only for files smaller than: + True + preview_image_size_combobox + + + False + False + 0 + + + + + True + False + model8 + + + + 0 + + + + + False + True + 1 + @@ -2068,801 +2567,637 @@ - - False - True - 1 - + + False + True + 1 + False True - 1 + 2 - - - False - True - 1 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Folders</b> - True False - False - 0 + True + 3 - + True False - 12 + 6 + vertical + 6 + + + True + False + 0 + <b>Folders</b> + True + + + False + False + 0 + + - + True False - vertical - 6 + 40 - + True False - 12 - - - True - False - 0 - Count _number of items: - True - preview_folder_combobox - - - False - False - 0 - - + vertical + 6 - + True False - model10 + 12 - - - 0 - + + True + False + 0 + Count _number of items: + True + preview_folder_combobox + + + False + False + 0 + + + + + True + False + model10 + + + + 0 + + + + + False + True + 1 + False True - 1 + 0 - - False - True - 0 - + + False + True + 1 + False True - 1 + 4 - - - False - True - 2 - - - - - True - False - vertical - 6 - + True False - 0 - <b>Tooltips</b> - True False - False - 0 + True + 5 - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 3 - - - Show tooltips in icon and compact views - True - True - False - True - 0 - True - - - False - False - 3 - 0 - - - - - Show tooltips in list views - True - True - False - True - 0 - True - - - False - False - 3 - 1 - - - - - Show tooltips on the desktop - True - True - False - True - 0 - True - - - False - False - 3 - 2 - - - - - True - False - 0 - <i>By default, a folder tooltip shows the item count, and files display their size. -Select additional information to display in the tooltip:</i> - True - - - False - True - 3 - 3 - - + 0 + <b>Tooltips</b> + True + + + False + False + 0 + + + + + True + False + 40 - + True False - 12 + vertical + 3 - + + Show tooltips in icon and compact views + True + True + False + True + 0 + True + + + False + False + 3 + 0 + + + + + Show tooltips in list views + True + True + False + True + 0 + True + + + False + False + 3 + 1 + + + + + Show tooltips on the desktop + True + True + False + True + 0 + True + + + False + False + 3 + 2 + + + + True False - vertical - 6 - - - Detailed file type - True - True - False - 0 - True - - - False - False - 0 - - - - - Accessed date - True - True - False - True - 0 - True - - - False - False - 3 - - - - - Modified date - True - True - False - 0 - True - - - False - False - 3 - - + 0 + <i>By default, a folder tooltip shows the item count, and files display their size. + Select additional information to display in the tooltip:</i> + True + + + False + True + 3 + 3 + + + + + True + False + 40 - - File or folder location + True - True - False - True - 0 - True + False + vertical + 6 + + + Detailed file type + True + True + False + 0 + True + + + False + False + 0 + + + + + Accessed date + True + True + False + True + 0 + True + + + False + False + 3 + + + + + Modified date + True + True + False + 0 + True + + + False + False + 3 + + + + + File or folder location + True + True + False + True + 0 + True + + + False + False + 4 + + - - False - False - 4 - + + False + True + 4 + - - False - True - 4 - + + False + False + 1 + False - False - 1 + True + 6 - - False - True - 3 - + + preview + Preview + - - - 4 - - - - - True - False - Preview - - - 4 - False - - - - - True - False - + True False - + True False - 12 - vertical - 18 - + True False vertical - 6 - - - True - False - 0 - <b>Options</b> - True - - - False - False - 0 - - - + True False - 12 + 6 + vertical + 6 - + True False - vertical - 6 - - - Show up icon - True - True - False - True - 0 - True - - - False - False - 0 - - - - - Show refresh icon - True - True - False - True - 0 - True - - - False - False - 1 - - - - - Show location entry/breadcrumbs toggle button. - True - True - False - True - 0 - True - - - False - False - 2 - - - - - Show home icon - True - True - False - True - 0 - True - - - False - False - 3 - - - - - Show computer icon - True - True - False - True - 0 - True - - - False - False - 4 - - - - - Show new folder icon - True - True - False - True - 0 - True - - - False - False - 5 - - - - - Show search icon - True - True - False - True - 0 - True - - - False - False - 6 - - - - - Show label on search icon (need to restart nemo) - True - True - False - True - 0 - True - - - False - False - 7 - - + 0 + <b>Options</b> + True + + False + False + 0 + - - - False - True - 1 - - - - - False - True - 5 - - - - - - - - - 5 - - - - - True - False - Toolbar - - - 2 - False - - - - - True - True - 1 - - - - - - helpbutton1 - closebutton1 - - - - - - - - - - Icon View - - - List View - - - Compact View - - - - - - - - - - - Always - - - Local Files Only - - - Never - - - - - - - - - - - Decimal - - - Decimal (long format) - - - Binary - - - Binary (long format) - - - - - - - - - - - By Name - - - By Size - - - By Type - - - By Detailed Type - - - By Modification Date - - - By Access Date - - - By Trashed Date - - - - - - - - - - - 33% - - - 50% - - - 66% - - - 100% - - - 150% - - - 200% - - - 400% - - - - - - - - - - - 33% - - - 50% - - - 66% - - - 100% - - - 150% - - - 200% - - - 400% - - - - - - - - - - - 33% - - - 50% - - - 66% - - - 100% - - - 150% - - - 200% - - - 400% - - - - - - - - - - - Always - - - Local Files Only - - - Never - - - - - - - - - - - Always - - - Local Files Only - - - Never - - - - - - - - - - - 100 KB - - - 500 KB - - - 1 MB - - - 3 MB - - - 5 MB - - - 10 MB - - - 100 MB - - - 1 GB - - - 2 GB - - - 4 GB - - + + + True + False + 40 + + + True + False + vertical + 6 + + + Show previous button + True + True + False + True + 0 + 0.43999999761581421 + True + + + False + False + 0 + + + + + Show next button + True + True + False + True + 0 + True + + + False + False + 1 + + + + + Show up button + True + True + False + True + 0 + True + + + False + False + 2 + + + + + Show refresh button + True + True + False + True + 0 + True + + + False + False + 3 + + + + + Show computer button + True + True + False + True + 0 + True + + + False + False + 4 + + + + + Show home button + True + True + False + True + 0 + True + + + False + False + 5 + + + + + Show location entry/breadcrumbs toggle button + True + True + False + True + 0 + True + + + False + False + 6 + + + + + Show open in terminal button + True + True + False + True + 0 + True + + + False + False + 7 + + + + + Show new folder button + True + True + False + True + 0 + True + + + False + False + 8 + + + + + Show search button + True + True + False + True + 0 + True + + + False + False + 9 + + + + + Show icon view button + True + True + False + True + 0 + True + + + False + False + 10 + + + + + Show list view button + True + True + False + True + 0 + True + + + False + False + 11 + + + + + Show compact view button + True + True + False + True + 0 + True + + + False + False + 12 + + + + + + + False + True + 1 + + + + + False + True + 5 + + + + + + + + + toolbar + Toolbar + + + + + + + True + True + 1 + + + + + + closebutton1 +