summaryrefslogtreecommitdiff
path: root/libnautilus-private/nautilus-bookmark.h
diff options
context:
space:
mode:
authorJohn Sullivan <sullivan@src.gnome.org>2000-02-15 19:46:52 +0000
committerJohn Sullivan <sullivan@src.gnome.org>2000-02-15 19:46:52 +0000
commitb9e12ae6ac26e92fd4330791fbc9154f34bdc343 (patch)
treeb4861abc48977d2c157855460df2a24ac2b77ceb /libnautilus-private/nautilus-bookmark.h
parentee43878056ae1da0732b442c20d043177f55911f (diff)
downloadnautilus-b9e12ae6ac26e92fd4330791fbc9154f34bdc343.tar.gz
Moved NautilusBookmark from src/ to libnautilus/, in anticipation of using it in
History metaview.
Diffstat (limited to 'libnautilus-private/nautilus-bookmark.h')
-rw-r--r--libnautilus-private/nautilus-bookmark.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/libnautilus-private/nautilus-bookmark.h b/libnautilus-private/nautilus-bookmark.h
new file mode 100644
index 000000000..e4120090a
--- /dev/null
+++ b/libnautilus-private/nautilus-bookmark.h
@@ -0,0 +1,77 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+
+/* nautilus-bookmark.h - interface for individual bookmarks.
+
+ Copyright (C) 1999, 2000 Eazel, Inc.
+
+ The Gnome 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.
+
+ The Gnome 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 the Gnome Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+ Authors: John Sullivan <sullivan@eazel.com>
+*/
+
+#ifndef NAUTILUS_BOOKMARK_H
+#define NAUTILUS_BOOKMARK_H 1
+
+#include <gnome.h>
+
+typedef struct _NautilusBookmark NautilusBookmark;
+
+#define NAUTILUS_TYPE_BOOKMARK \
+ (nautilus_bookmark_get_type ())
+#define NAUTILUS_BOOKMARK(obj) \
+ (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_BOOKMARK, NautilusBookmark))
+#define NAUTILUS_BOOKMARK_CLASS(klass) \
+ (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_BOOKMARK, NautilusBookmarkClass))
+#define NAUTILUS_IS_BOOKMARK(obj) \
+ (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_BOOKMARK))
+#define NAUTILUS_IS_BOOKMARK_CLASS(klass) \
+ (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_BOOKMARK))
+
+typedef struct _NautilusBookmarkDetails NautilusBookmarkDetails;
+
+struct _NautilusBookmark {
+ GtkObject object;
+ NautilusBookmarkDetails *details;
+};
+
+struct _NautilusBookmarkClass {
+ GtkObjectClass parent_class;
+};
+
+typedef struct _NautilusBookmarkClass NautilusBookmarkClass;
+
+
+GtkType nautilus_bookmark_get_type (void);
+NautilusBookmark *nautilus_bookmark_new (const gchar *name,
+ const gchar *uri);
+NautilusBookmark *nautilus_bookmark_copy (const NautilusBookmark *bookmark);
+const gchar *nautilus_bookmark_get_name (const NautilusBookmark *bookmark);
+const gchar *nautilus_bookmark_get_uri (const NautilusBookmark *bookmark);
+
+gint nautilus_bookmark_compare_with (gconstpointer a, gconstpointer b);
+
+/* Helper functions for displaying bookmarks */
+
+gboolean nautilus_bookmark_get_pixmap_and_mask
+ (const NautilusBookmark *bookmark,
+ guint icon_size,
+ GdkPixmap **pixmap_return,
+ GdkBitmap **mask_return);
+GtkWidget * nautilus_bookmark_menu_item_new
+ (const NautilusBookmark *bookmark);
+
+
+#endif /* NAUTILUS_BOOKMARK_H */