summaryrefslogtreecommitdiff
path: root/src/caja-pathbar.h
diff options
context:
space:
mode:
authorPerberos <[email protected]>2011-12-01 22:24:23 -0300
committerPerberos <[email protected]>2011-12-01 22:24:23 -0300
commit0e004c696b0e68b2cff37a4c3315b022a35eaf43 (patch)
tree43261e815529cb9518ed7be37af13b846af8b26b /src/caja-pathbar.h
downloadcaja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.bz2
caja-0e004c696b0e68b2cff37a4c3315b022a35eaf43.tar.xz
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'src/caja-pathbar.h')
-rw-r--r--src/caja-pathbar.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/caja-pathbar.h b/src/caja-pathbar.h
new file mode 100644
index 00000000..2a2ad90e
--- /dev/null
+++ b/src/caja-pathbar.h
@@ -0,0 +1,90 @@
+/* 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., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, 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_set) (CajaPathBar *path_bar,
+ 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);
+
+void caja_path_bar_up (CajaPathBar *path_bar);
+void caja_path_bar_down (CajaPathBar *path_bar);
+
+GtkWidget * caja_path_bar_get_button_from_button_list_entry (gpointer entry);
+
+#endif /* CAJA_PATHBAR_H */