1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* caja-pathbar.h
*
* 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., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*
*/
#ifndef CAJA_PATHBAR_H
#define CAJA_PATHBAR_H
#include <gtk/gtk.h>
#include <gio/gio.h>
typedef struct _CajaPathBar CajaPathBar;
typedef struct _CajaPathBarClass CajaPathBarClass;
#define CAJA_TYPE_PATH_BAR (caja_path_bar_get_type ())
#define CAJA_PATH_BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CAJA_TYPE_PATH_BAR, CajaPathBar))
#define CAJA_PATH_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CAJA_TYPE_PATH_BAR, CajaPathBarClass))
#define CAJA_IS_PATH_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CAJA_TYPE_PATH_BAR))
#define CAJA_IS_PATH_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CAJA_TYPE_PATH_BAR))
#define CAJA_PATH_BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CAJA_TYPE_PATH_BAR, CajaPathBarClass))
struct _CajaPathBar
{
GtkContainer parent;
GFile *root_path;
GFile *home_path;
GFile *desktop_path;
GFile *current_path;
gpointer current_button_data;
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;
guint need_timer : 1;
guint ignore_click : 1;
unsigned int drag_slider_timeout;
gboolean drag_slider_timeout_for_up_button;
};
struct _CajaPathBarClass
{
GtkContainerClass parent_class;
void (* path_clicked) (CajaPathBar *path_bar,
GFile *location);
void (* path_event) (CajaPathBar *path_bar,
GdkEventButton *event,
GFile *location);
};
GType caja_path_bar_get_type (void) G_GNUC_CONST;
gboolean caja_path_bar_set_path (CajaPathBar *path_bar, GFile *file);
GFile * caja_path_bar_get_path_for_button (CajaPathBar *path_bar,
GtkWidget *button);
void caja_path_bar_clear_buttons (CajaPathBar *path_bar);
GtkWidget * caja_path_bar_get_button_from_button_list_entry (gpointer entry);
#endif /* CAJA_PATHBAR_H */
|