X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkpathbar.h;h=12e3d347bdd5b495b5058a8bdb139c4d4646c57b;hb=aaedf5a35219b034a244730564b8fdf2b7d32540;hp=c2129f56bc5369a35fb5976d50de8a1b4a0665ff;hpb=9c3ac4d1bba0df3d1e5f6d01bb471a7235c20861;p=~andy%2Fgtk diff --git a/gtk/gtkpathbar.h b/gtk/gtkpathbar.h index c2129f56b..12e3d347b 100644 --- a/gtk/gtkpathbar.h +++ b/gtk/gtkpathbar.h @@ -12,15 +12,14 @@ * 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__ -#define __GTK_PATH_BAR__ +#ifndef __GTK_PATH_BAR_H__ +#define __GTK_PATH_BAR_H__ #include "gtkcontainer.h" +#include "gtkfilesystem.h" G_BEGIN_DECLS @@ -39,27 +38,56 @@ struct _GtkPathBar { GtkContainer parent; - const char *path; + GtkFileSystem *file_system; + GFile *root_file; + GFile *home_file; + GFile *desktop_file; + + GCancellable *get_info_cancellable; + + GdkPixbuf *root_icon; + GdkPixbuf *home_icon; + GdkPixbuf *desktop_icon; + + GdkWindow *event_window; + GList *button_list; + GList *first_scrolled_button; + GList *fake_root; + GtkWidget *up_slider_button; + GtkWidget *down_slider_button; + guint settings_signal_id; + gint icon_size; gint16 slider_width; gint16 spacing; gint16 button_offset; + guint timer; guint slider_visible : 1; - GtkWidget *up_slider_button; - GtkWidget *down_slider_button; + guint need_timer : 1; + guint ignore_click : 1; + guint scrolling_up : 1; + guint scrolling_down : 1; }; struct _GtkPathBarClass { GtkContainerClass parent_class; - void (* path_clicked) (GtkPathBar *path_bar); + void (* path_clicked) (GtkPathBar *path_bar, + GFile *file, + GFile *child_file, + gboolean child_is_hidden); }; -GType gtk_path_bar_get_type (void) G_GNUC_CONST; -void gtk_path_bar_set_path (GtkPathBar *path_bar, - const gchar *path); +GType gtk_path_bar_get_type (void) G_GNUC_CONST; +void _gtk_path_bar_set_file_system (GtkPathBar *path_bar, + GtkFileSystem *file_system); +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); G_END_DECLS -#endif /* __GTK_PATH_BAR__ */ +#endif /* __GTK_PATH_BAR_H__ */