X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkpathbar.h;h=12e3d347bdd5b495b5058a8bdb139c4d4646c57b;hb=af0007d0d89309838fb55cc62c76793b574fa40a;hp=aa56ff81caaf5b897ebab22247af46d4ac67cd98;hpb=761749c26b9c300da5a5db08837af0e73b857624;p=~andy%2Fgtk diff --git a/gtk/gtkpathbar.h b/gtk/gtkpathbar.h index aa56ff81c..12e3d347b 100644 --- a/gtk/gtkpathbar.h +++ b/gtk/gtkpathbar.h @@ -12,9 +12,7 @@ * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ #ifndef __GTK_PATH_BAR_H__ @@ -41,11 +39,11 @@ struct _GtkPathBar GtkContainer parent; GtkFileSystem *file_system; - GtkFilePath *root_path; - GtkFilePath *home_path; - GtkFilePath *desktop_path; + GFile *root_file; + GFile *home_file; + GFile *desktop_file; - GtkFileSystemHandle *set_path_handle; + GCancellable *get_info_cancellable; GdkPixbuf *root_icon; GdkPixbuf *home_icon; @@ -76,18 +74,17 @@ struct _GtkPathBarClass GtkContainerClass parent_class; void (* path_clicked) (GtkPathBar *path_bar, - GtkFilePath *file_path, - GtkFilePath *child_path, + GFile *file, + GFile *child_file, gboolean child_is_hidden); }; GType gtk_path_bar_get_type (void) G_GNUC_CONST; void _gtk_path_bar_set_file_system (GtkPathBar *path_bar, GtkFileSystem *file_system); -gboolean _gtk_path_bar_set_path (GtkPathBar *path_bar, - const GtkFilePath *file_path, - gboolean keep_trail, - GError **error); +void _gtk_path_bar_set_file (GtkPathBar *path_bar, + GFile *file, + gboolean keep_trail); void _gtk_path_bar_up (GtkPathBar *path_bar); void _gtk_path_bar_down (GtkPathBar *path_bar);