138 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
 | ||
| 
 | ||
| /*
 | ||
|  *  GtkPlacesSidebar - sidebar widget for places in the filesystem
 | ||
|  *
 | ||
|  *  This code comes from Nautilus, GNOME’s file manager.
 | ||
|  *
 | ||
|  *  This library 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.
 | ||
|  *
 | ||
|  *  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
 | ||
|  *  General Public License for more details.
 | ||
|  *
 | ||
|  *  You should have received a copy of the GNU General Public License
 | ||
|  *  along with this library; if not, write to the Free Software
 | ||
|  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | ||
|  *
 | ||
|  *  Authors : Mr Jamie McCracken (jamiemcc at blueyonder dot co dot uk)
 | ||
|  *            Federico Mena Quintero <federico@gnome.org>
 | ||
|  *
 | ||
|  */
 | ||
| 
 | ||
| #ifndef __GTK_PLACES_SIDEBAR_H__
 | ||
| #define __GTK_PLACES_SIDEBAR_H__
 | ||
| 
 | ||
| #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
 | ||
| #error "Only <gtk/gtk.h> can be included directly."
 | ||
| #endif
 | ||
| 
 | ||
| #include <gtk/gtkwidget.h>
 | ||
| 
 | ||
| G_BEGIN_DECLS
 | ||
| 
 | ||
| #define GTK_TYPE_PLACES_SIDEBAR			(gtk_places_sidebar_get_type ())
 | ||
| #define GTK_PLACES_SIDEBAR(obj)			(G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PLACES_SIDEBAR, GtkPlacesSidebar))
 | ||
| #define GTK_PLACES_SIDEBAR_CLASS(klass)		(G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PLACES_SIDEBAR, GtkPlacesSidebarClass))
 | ||
| #define GTK_IS_PLACES_SIDEBAR(obj)		(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PLACES_SIDEBAR))
 | ||
| #define GTK_IS_PLACES_SIDEBAR_CLASS(klass)	(G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PLACES_SIDEBAR))
 | ||
| #define GTK_PLACES_SIDEBAR_GET_CLASS(obj)	(G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PLACES_SIDEBAR, GtkPlacesSidebarClass))
 | ||
| 
 | ||
| typedef struct _GtkPlacesSidebar GtkPlacesSidebar;
 | ||
| typedef struct _GtkPlacesSidebarClass GtkPlacesSidebarClass;
 | ||
| 
 | ||
| /**
 | ||
|  * GtkPlacesOpenFlags:
 | ||
|  * @GTK_PLACES_OPEN_NORMAL: This is the default mode that #GtkPlacesSidebar uses if no other flags
 | ||
|  *  are specified.  It indicates that the calling application should open the selected location
 | ||
|  *  in the normal way, for example, in the folder view beside the sidebar.
 | ||
|  * @GTK_PLACES_OPEN_NEW_TAB: When passed to gtk_places_sidebar_set_open_flags(), this indicates
 | ||
|  *  that the application can open folders selected from the sidebar in new tabs.  This value
 | ||
|  *  will be passed to the #GtkPlacesSidebar::open-location signal when the user selects
 | ||
|  *  that a location be opened in a new tab instead of in the standard fashion.
 | ||
|  * @GTK_PLACES_OPEN_NEW_WINDOW: Similar to @GTK_PLACES_OPEN_NEW_TAB, but indicates that the application
 | ||
|  *  can open folders in new windows.
 | ||
|  *
 | ||
|  * These flags serve two purposes.  First, the application can call gtk_places_sidebar_set_open_flags()
 | ||
|  * using these flags as a bitmask.  This tells the sidebar that the application is able to open
 | ||
|  * folders selected from the sidebar in various ways, for example, in new tabs or in new windows in
 | ||
|  * addition to the normal mode.
 | ||
|  *
 | ||
|  * Second, when one of these values gets passed back to the application in the
 | ||
|  * #GtkPlacesSidebar::open-location signal, it means that the application should
 | ||
|  * open the selected location in the normal way, in a new tab, or in a new
 | ||
|  * window.  The sidebar takes care of determining the desired way to open the location,
 | ||
|  * based on the modifier keys that the user is pressing at the time the selection is made.
 | ||
|  *
 | ||
|  * If the application never calls gtk_places_sidebar_set_open_flags(), then the sidebar will only
 | ||
|  * use #GTK_PLACES_OPEN_NORMAL in the #GtkPlacesSidebar::open-location signal.  This is the
 | ||
|  * default mode of operation.
 | ||
|  */
 | ||
| typedef enum {
 | ||
|   GTK_PLACES_OPEN_NORMAL     = 1 << 0,
 | ||
|   GTK_PLACES_OPEN_NEW_TAB    = 1 << 1,
 | ||
|   GTK_PLACES_OPEN_NEW_WINDOW = 1 << 2
 | ||
| } GtkPlacesOpenFlags;
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| GType              gtk_places_sidebar_get_type                   (void) G_GNUC_CONST;
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| GtkWidget *        gtk_places_sidebar_new                        (void);
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| GtkPlacesOpenFlags gtk_places_sidebar_get_open_flags             (GtkPlacesSidebar   *sidebar);
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| void               gtk_places_sidebar_set_open_flags             (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   GtkPlacesOpenFlags  flags);
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| GFile *            gtk_places_sidebar_get_location               (GtkPlacesSidebar   *sidebar);
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| void               gtk_places_sidebar_set_location               (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   GFile              *location);
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| gboolean           gtk_places_sidebar_get_show_desktop           (GtkPlacesSidebar   *sidebar);
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| void               gtk_places_sidebar_set_show_desktop           (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   gboolean            show_desktop);
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| gboolean           gtk_places_sidebar_get_show_connect_to_server (GtkPlacesSidebar   *sidebar);
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| void               gtk_places_sidebar_set_show_connect_to_server (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   gboolean            show_connect_to_server);
 | ||
| GDK_AVAILABLE_IN_3_14
 | ||
| gboolean           gtk_places_sidebar_get_show_enter_location    (GtkPlacesSidebar   *sidebar);
 | ||
| GDK_AVAILABLE_IN_3_14
 | ||
| void               gtk_places_sidebar_set_show_enter_location    (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   gboolean            show_enter_location);
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_12
 | ||
| void                 gtk_places_sidebar_set_local_only           (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   gboolean            local_only);
 | ||
| GDK_AVAILABLE_IN_3_12
 | ||
| gboolean             gtk_places_sidebar_get_local_only           (GtkPlacesSidebar   *sidebar);
 | ||
| 
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| void               gtk_places_sidebar_add_shortcut               (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   GFile              *location);
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| void               gtk_places_sidebar_remove_shortcut            (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   GFile              *location);
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| GSList *           gtk_places_sidebar_list_shortcuts             (GtkPlacesSidebar   *sidebar);
 | ||
| 
 | ||
| GDK_AVAILABLE_IN_3_10
 | ||
| GFile *            gtk_places_sidebar_get_nth_bookmark           (GtkPlacesSidebar   *sidebar,
 | ||
|                                                                   gint                n);
 | ||
| 
 | ||
| G_END_DECLS
 | ||
| 
 | ||
| #endif /* __GTK_PLACES_SIDEBAR_H__ */
 | 
