diff options
Diffstat (limited to 'src/caja-navigation-window.h')
-rw-r--r-- | src/caja-navigation-window.h | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/src/caja-navigation-window.h b/src/caja-navigation-window.h new file mode 100644 index 00000000..bff5d561 --- /dev/null +++ b/src/caja-navigation-window.h @@ -0,0 +1,119 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */ + +/* + * Caja + * + * Copyright (C) 1999, 2000 Red Hat, Inc. + * Copyright (C) 1999, 2000, 2001 Eazel, Inc. + * Copyright (C) 2003 Ximian, Inc. + * + * Caja is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * Caja 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 + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * Authors: Elliot Lee <[email protected]> + * Darin Adler <[email protected]> + * + */ +/* caja-navigation-window.h: Interface of the navigation window object */ + +#ifndef CAJA_NAVIGATION_WINDOW_H +#define CAJA_NAVIGATION_WINDOW_H + +#include <gtk/gtk.h> +#include <eel/eel-glib-extensions.h> +#include <libcaja-private/caja-bookmark.h> +#include <libcaja-private/caja-sidebar.h> +#include "caja-application.h" +#include "caja-information-panel.h" +#include "caja-side-pane.h" +#include "caja-window.h" + +#define CAJA_TYPE_NAVIGATION_WINDOW caja_navigation_window_get_type() +#define CAJA_NAVIGATION_WINDOW(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), CAJA_TYPE_NAVIGATION_WINDOW, CajaNavigationWindow)) +#define CAJA_NAVIGATION_WINDOW_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST ((klass), CAJA_TYPE_NAVIGATION_WINDOW, CajaNavigationWindowClass)) +#define CAJA_IS_NAVIGATION_WINDOW(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CAJA_TYPE_NAVIGATION_WINDOW)) +#define CAJA_IS_NAVIGATION_WINDOW_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE ((klass), CAJA_TYPE_NAVIGATION_WINDOW)) +#define CAJA_NAVIGATION_WINDOW_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), CAJA_TYPE_NAVIGATION_WINDOW, CajaNavigationWindowClass)) + +typedef struct _CajaNavigationWindow CajaNavigationWindow; +typedef struct _CajaNavigationWindowClass CajaNavigationWindowClass; +typedef struct _CajaNavigationWindowDetails CajaNavigationWindowDetails; + + +struct _CajaNavigationWindow +{ + CajaWindow parent_object; + + CajaNavigationWindowDetails *details; + + /** UI stuff **/ + CajaSidePane *sidebar; + + /* Current views stuff */ + GList *sidebar_panels; +}; + + +struct _CajaNavigationWindowClass +{ + CajaWindowClass parent_spot; +}; + +GType caja_navigation_window_get_type (void); +void caja_navigation_window_allow_back (CajaNavigationWindow *window, + gboolean allow); +void caja_navigation_window_allow_forward (CajaNavigationWindow *window, + gboolean allow); +void caja_navigation_window_clear_back_list (CajaNavigationWindow *window); +void caja_navigation_window_clear_forward_list (CajaNavigationWindow *window); +void caja_forget_history (void); +gint caja_navigation_window_get_base_page_index (CajaNavigationWindow *window); +void caja_navigation_window_hide_toolbar (CajaNavigationWindow *window); +void caja_navigation_window_show_toolbar (CajaNavigationWindow *window); +gboolean caja_navigation_window_toolbar_showing (CajaNavigationWindow *window); +void caja_navigation_window_hide_sidebar (CajaNavigationWindow *window); +void caja_navigation_window_show_sidebar (CajaNavigationWindow *window); +gboolean caja_navigation_window_sidebar_showing (CajaNavigationWindow *window); +void caja_navigation_window_add_sidebar_panel (CajaNavigationWindow *window, + CajaSidebar *sidebar_panel); +void caja_navigation_window_remove_sidebar_panel (CajaNavigationWindow *window, + CajaSidebar *sidebar_panel); +void caja_navigation_window_hide_status_bar (CajaNavigationWindow *window); +void caja_navigation_window_show_status_bar (CajaNavigationWindow *window); +gboolean caja_navigation_window_status_bar_showing (CajaNavigationWindow *window); +void caja_navigation_window_back_or_forward (CajaNavigationWindow *window, + gboolean back, + guint distance, + gboolean new_tab); +void caja_navigation_window_show_search (CajaNavigationWindow *window); +void caja_navigation_window_unset_focus_widget (CajaNavigationWindow *window); +void caja_navigation_window_hide_search (CajaNavigationWindow *window); +void caja_navigation_window_set_search_button (CajaNavigationWindow *window, + gboolean state); +void caja_navigation_window_restore_focus_widget (CajaNavigationWindow *window); +void caja_navigation_window_split_view_on (CajaNavigationWindow *window); +void caja_navigation_window_split_view_off (CajaNavigationWindow *window); +gboolean caja_navigation_window_split_view_showing (CajaNavigationWindow *window); + +gboolean caja_navigation_window_is_in_temporary_navigation_bar (GtkWidget *widget, + CajaNavigationWindow *window); +gboolean caja_navigation_window_is_in_temporary_search_bar (GtkWidget *widget, + CajaNavigationWindow *window); + +#endif |