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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2004-02-20 01:10:28 +00:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2020-05-09 00:02:55 +00:00
|
|
|
#include "gtkwidget.h"
|
2004-02-20 01:10:28 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2020-07-11 21:23:55 +00:00
|
|
|
#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_IS_PATH_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PATH_BAR))
|
2004-02-20 01:10:28 +00:00
|
|
|
|
2020-07-11 21:23:55 +00:00
|
|
|
typedef struct _GtkPathBar GtkPathBar;
|
2004-02-20 01:10:28 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-03-04 06:47:54 +00:00
|
|
|
GType gtk_path_bar_get_type (void) G_GNUC_CONST;
|
2011-11-29 21:07:01 +00:00
|
|
|
void _gtk_path_bar_set_file (GtkPathBar *path_bar,
|
2020-07-11 21:59:36 +00:00
|
|
|
GFile *file,
|
|
|
|
gboolean keep_trail);
|
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__ */
|