summaryrefslogtreecommitdiff
path: root/components/loser/sidebar/nautilus-sidebar-loser.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2004-11-22 15:24:38 +0000
committerAlexander Larsson <alexl@src.gnome.org>2004-11-22 15:24:38 +0000
commit67e2a42fea65f2685580b119b98a058c8e81ac4e (patch)
tree19bc7c578c9f1a47f299d012ac4775010e06661e /components/loser/sidebar/nautilus-sidebar-loser.h
parent8dc115c33951754d75b57c67e4d918900a795468 (diff)
downloadnautilus-67e2a42fea65f2685580b119b98a058c8e81ac4e.tar.gz
Merge bonobo-slay-branch
2004-11-22 Alexander Larsson <alexl@redhat.com> * Merge bonobo-slay-branch
Diffstat (limited to 'components/loser/sidebar/nautilus-sidebar-loser.h')
-rw-r--r--components/loser/sidebar/nautilus-sidebar-loser.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/components/loser/sidebar/nautilus-sidebar-loser.h b/components/loser/sidebar/nautilus-sidebar-loser.h
deleted file mode 100644
index 8a8f2c9b1..000000000
--- a/components/loser/sidebar/nautilus-sidebar-loser.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
-
-/*
- * Copyright (C) 2000 Eazel, Inc
- *
- * This program 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 program 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., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- *
- * Author: Maciej Stachowiak <mjs@eazel.com>
- */
-
-/* nautilus-sidebar-loser.h - Nautilus sidebar view component that
- fails on command. See the README in the `loser' directory to see
- how to control the type of failure. */
-
-#ifndef NAUTILUS_SIDEBAR_LOSER_H
-#define NAUTILUS_SIDEBAR_LOSER_H
-
-#include <libnautilus/nautilus-view.h>
-#include <gtk/gtklabel.h>
-
-typedef struct NautilusSidebarLoser NautilusSidebarLoser;
-typedef struct NautilusSidebarLoserClass NautilusSidebarLoserClass;
-
-#define NAUTILUS_TYPE_SIDEBAR_LOSER (nautilus_sidebar_loser_get_type ())
-#define NAUTILUS_SIDEBAR_LOSER(obj) (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_SIDEBAR_LOSER, NautilusSidebarLoser))
-#define NAUTILUS_SIDEBAR_LOSER_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_SIDEBAR_LOSER, NautilusSidebarLoserClass))
-#define NAUTILUS_IS_SIDEBAR_LOSER(obj) (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_SIDEBAR_LOSER))
-#define NAUTILUS_IS_SIDEBAR_LOSER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_SIDEBAR_LOSER))
-
-typedef struct NautilusSidebarLoserDetails NautilusSidebarLoserDetails;
-
-struct NautilusSidebarLoser {
- GtkLabel parent;
- NautilusSidebarLoserDetails *details;
-};
-
-struct NautilusSidebarLoserClass {
- GtkLabelClass parent_class;
-};
-
-/* GObject support */
-GType nautilus_sidebar_loser_get_type (void);
-
-/* Component embedding support */
-NautilusView *nautilus_sidebar_loser_get_nautilus_view (NautilusSidebarLoser *view);
-
-/* URI handling */
-void nautilus_sidebar_loser_load_uri (NautilusSidebarLoser *view,
- const char *uri);
-
-/* Failing on command. */
-void nautilus_sidebar_loser_maybe_fail (const char *location);
-
-#endif /* NAUTILUS_SIDEBAR_LOSER_H */
-