summaryrefslogtreecommitdiff
path: root/thunar/thunar-standard-view.h
diff options
context:
space:
mode:
authorBenedikt Meurer <benny@xfce.org>2005-11-14 20:47:58 +0000
committerBenedikt Meurer <benny@xfce.org>2005-11-14 20:47:58 +0000
commitf277257a6c7e8fe9e485876a7b181ce425b2f49e (patch)
tree5d9b27ca494ac6e3ff00c5b95d55a7d49de18d23 /thunar/thunar-standard-view.h
parent00ed65265ca784c8599b251ebf94d8ddf005b0bb (diff)
downloadthunar-f277257a6c7e8fe9e485876a7b181ce425b2f49e.tar.gz
2005-11-14 Benedikt Meurer <benny@xfce.org>
* thunar/thunar-standard-view.{c,h}: Register "Delete" as key binding for the ThunarStandardView class, rather than registering it as accelerator for the "delete" action. This fixes bug #1226. * thunar/thunar-marshal.list: Add BOOLEAN:VOID marshaller. (Old svn revision: 18848)
Diffstat (limited to 'thunar/thunar-standard-view.h')
-rw-r--r--thunar/thunar-standard-view.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/thunar/thunar-standard-view.h b/thunar/thunar-standard-view.h
index 95c6316a..93984563 100644
--- a/thunar/thunar-standard-view.h
+++ b/thunar/thunar-standard-view.h
@@ -45,10 +45,10 @@ struct _ThunarStandardViewClass
/* Called by the ThunarStandardView class to let derived classes
* connect to and disconnect from the UI manager.
*/
- void (*connect_ui_manager) (ThunarStandardView *standard_view,
- GtkUIManager *ui_manager);
- void (*disconnect_ui_manager) (ThunarStandardView *standard_view,
- GtkUIManager *ui_manager);
+ void (*connect_ui_manager) (ThunarStandardView *standard_view,
+ GtkUIManager *ui_manager);
+ void (*disconnect_ui_manager) (ThunarStandardView *standard_view,
+ GtkUIManager *ui_manager);
/* Returns the list of currently selected GtkTreePath's, where
* both the list and the items are owned by the caller. */
@@ -89,8 +89,11 @@ struct _ThunarStandardViewClass
/* Sets the item/row that is highlighted for feedback. NULL is
* passed for path to disable the highlighting.
*/
- void (*highlight_path) (ThunarStandardView *standard_view,
- GtkTreePath *path);
+ void (*highlight_path) (ThunarStandardView *standard_view,
+ GtkTreePath *path);
+
+ /* Internal action signals */
+ gboolean (*delete_selected_files) (ThunarStandardView *standard_view);
};
struct _ThunarStandardView