2004-02-20 01:10:28 +00:00
|
|
|
/* gtkpathbar.h
|
|
|
|
* Copyright (C) 2004 Red Hat, Inc., Jonathan Blandford <jrb@gnome.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2006-09-10 06:39:16 +00:00
|
|
|
#ifndef __GTK_PATH_BAR_H__
|
|
|
|
#define __GTK_PATH_BAR_H__
|
2004-02-20 01:10:28 +00:00
|
|
|
|
|
|
|
#include "gtkcontainer.h"
|
2004-02-23 07:11:31 +00:00
|
|
|
#include "gtkfilesystem.h"
|
2004-02-20 01:10:28 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GtkPathBar GtkPathBar;
|
|
|
|
typedef struct _GtkPathBarClass GtkPathBarClass;
|
|
|
|
|
|
|
|
|
|
|
|
#define GTK_TYPE_PATH_BAR (gtk_path_bar_get_type ())
|
|
|
|
#define GTK_PATH_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PATH_BAR, GtkPathBar))
|
|
|
|
#define GTK_PATH_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PATH_BAR, GtkPathBarClass))
|
|
|
|
#define GTK_IS_PATH_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PATH_BAR))
|
|
|
|
#define GTK_IS_PATH_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PATH_BAR))
|
|
|
|
#define GTK_PATH_BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PATH_BAR, GtkPathBarClass))
|
|
|
|
|
|
|
|
struct _GtkPathBar
|
|
|
|
{
|
|
|
|
GtkContainer parent;
|
|
|
|
|
2004-03-08 09:56:34 +00:00
|
|
|
GtkFileSystem *file_system;
|
2008-06-10 00:39:35 +00:00
|
|
|
GFile *root_file;
|
|
|
|
GFile *home_file;
|
|
|
|
GFile *desktop_file;
|
2004-03-10 06:20:48 +00:00
|
|
|
|
2008-06-10 00:39:35 +00:00
|
|
|
GCancellable *get_info_cancellable;
|
2006-05-01 21:41:12 +00:00
|
|
|
|
2004-03-04 06:47:54 +00:00
|
|
|
GdkPixbuf *root_icon;
|
2004-03-10 06:20:48 +00:00
|
|
|
GdkPixbuf *home_icon;
|
|
|
|
GdkPixbuf *desktop_icon;
|
2004-03-04 06:47:54 +00:00
|
|
|
|
2008-03-03 21:15:21 +00:00
|
|
|
GdkWindow *event_window;
|
|
|
|
|
2004-02-20 01:10:28 +00:00
|
|
|
GList *button_list;
|
2004-02-20 23:21:01 +00:00
|
|
|
GList *first_scrolled_button;
|
2005-06-13 19:18:54 +00:00
|
|
|
GList *fake_root;
|
2004-02-23 07:11:31 +00:00
|
|
|
GtkWidget *up_slider_button;
|
|
|
|
GtkWidget *down_slider_button;
|
Support changes in icon themes.
Wed Mar 10 02:41:05 2004 Jonathan Blandford <jrb@gnome.org>
* gtk/gtkpathbar.c: (gtk_path_bar_init), (gtk_path_bar_class_init),
(remove_settings_signal), (gtk_path_bar_dispose),
(gtk_path_bar_style_set), (gtk_path_bar_screen_changed),
(gtk_path_bar_scroll_up), (reload_icons), (change_icon_theme),
(settings_notify_cb), (gtk_path_bar_check_icon_theme),
(get_button_image), (gtk_path_bar_update_button_appearance),
(make_directory_button), (gtk_path_bar_check_parent_path): Support
changes in icon themes.
* gtk/gtkpathbar.h: add two elements
* tests/testfilechooser.c: (main): use gnome-vfs method again to
get more testing.
2004-03-10 07:42:20 +00:00
|
|
|
guint settings_signal_id;
|
|
|
|
gint icon_size;
|
2004-02-20 01:10:28 +00:00
|
|
|
gint16 slider_width;
|
|
|
|
gint16 spacing;
|
|
|
|
gint16 button_offset;
|
2004-09-27 04:09:50 +00:00
|
|
|
guint timer;
|
2004-02-20 01:10:28 +00:00
|
|
|
guint slider_visible : 1;
|
2005-11-19 03:46:04 +00:00
|
|
|
guint need_timer : 1;
|
|
|
|
guint ignore_click : 1;
|
|
|
|
guint scrolling_up : 1;
|
|
|
|
guint scrolling_down : 1;
|
2004-02-20 01:10:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkPathBarClass
|
|
|
|
{
|
|
|
|
GtkContainerClass parent_class;
|
|
|
|
|
2004-02-23 07:11:31 +00:00
|
|
|
void (* path_clicked) (GtkPathBar *path_bar,
|
2008-06-10 00:39:35 +00:00
|
|
|
GFile *file,
|
|
|
|
GFile *child_file,
|
2004-04-02 00:35:07 +00:00
|
|
|
gboolean child_is_hidden);
|
2004-02-20 01:10:28 +00:00
|
|
|
};
|
|
|
|
|
2004-03-04 06:47:54 +00:00
|
|
|
GType gtk_path_bar_get_type (void) G_GNUC_CONST;
|
2004-03-08 09:56:34 +00:00
|
|
|
void _gtk_path_bar_set_file_system (GtkPathBar *path_bar,
|
|
|
|
GtkFileSystem *file_system);
|
2008-06-10 00:39:35 +00:00
|
|
|
gboolean _gtk_path_bar_set_file (GtkPathBar *path_bar,
|
|
|
|
GFile *file,
|
2005-07-07 12:40:50 +00:00
|
|
|
gboolean keep_trail,
|
2004-03-08 09:56:34 +00:00
|
|
|
GError **error);
|
2004-03-15 06:51:58 +00:00
|
|
|
void _gtk_path_bar_up (GtkPathBar *path_bar);
|
|
|
|
void _gtk_path_bar_down (GtkPathBar *path_bar);
|
2004-03-04 06:47:54 +00:00
|
|
|
|
2004-02-20 01:10:28 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2006-09-10 06:39:16 +00:00
|
|
|
#endif /* __GTK_PATH_BAR_H__ */
|