new class for the tabs in the index panel. It's still incomplete and not

new class for the tabs in the index panel.  It's still incomplete and
       not hooked up yet, but it will be soon.
This commit is contained in:
Andy Hertzfeld 2000-02-08 00:05:02 +00:00
parent ed8a956763
commit f8db5f0606
9 changed files with 746 additions and 2 deletions

View file

@ -1,3 +1,18 @@
2000-02-07 Andy Hertzfeld <andy@eazel.com>
first cut at real tabs for index panel, still incomplete and not
hooked up yet, but will be soon.
* icons/tableft.png, tabright.png:
small pixmaps for nice rounded edges for the tabs
* icons/Makefile.am
added tableft.png and tabright.png
* src/nautilus-index-tabs.c,h
new class for drawing the index tabs
* src/Makefile.am
added index-tabs class to build
2000-02-07 Elliot Lee <sopwith@redhat.com>
* idl/*.idl: Include the .idl files of other modules that we use.
* libnautilus/Makefile.am, src/Makefile.am, src/file-manager/Makefile.am:

View file

@ -22,6 +22,8 @@ icon_DATA = \
multi-ok.png \
not.png \
nautilus3.jpg \
tableft.png \
tabright.png \
zoom.png
EXTRA_DIST = $(icon_DATA)

BIN
icons/tableft.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

BIN
icons/tabright.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

View file

@ -8,8 +8,7 @@ INCLUDES=-I$(top_srcdir) -I$(top_builddir) \
$(VFS_CFLAGS) \
$(XML_CFLAGS) \
-DVERSION="\"$(VERSION)\"" \
$(WERROR) \
-D_REENTRANT
$(WERROR)
LDADD= file-manager/libntl-file-manager.la \
../libnautilus/libnautilus.la \
@ -31,6 +30,8 @@ nautilus_SOURCES= \
nautilus-bookmarks-menu.h \
nautilus-bookmarks-window.c \
nautilus-bookmarks-window.h \
nautilus-index-tabs.c \
nautilus-index-tabs.h \
nautilus-self-check-functions.c \
nautilus-self-check-functions.h \
nautilus-zoom-control.c \

289
src/nautilus-index-tabs.c Normal file
View file

@ -0,0 +1,289 @@
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* Nautilus
* 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: Andy Hertzfeld <andy@eazel.com>
*
* This is the tabs widget for the index panel, which represents metaviews as nice tabs as specified
*
*/
#include <gdk/gdk.h>
#include <gtk/gtkwidget.h>
#include <gnome.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include "nautilus-index-tabs.h"
/* data structures */
struct _tabItem
{
gboolean visible;
gchar *tab_text;
GtkWidget *tab_view;
};
struct _NautilusIndexTabsDetails
{
int tab_count;
int selected_tab;
int panel_width;
GList *tab_items;
};
/* headers */
static void nautilus_index_tabs_class_init (NautilusIndexTabsClass *klass);
static void nautilus_index_tabs_init (NautilusIndexTabs *pixmap);
static gint nautilus_index_tabs_expose (GtkWidget *widget, GdkEventExpose *event);
static void nautilus_index_tabs_finalize (GtkObject *object);
/* static variables */
static GtkWidgetClass *parent_class;
static GdkPixbuf *tab_left_edge;
static GdkPixbuf *tab_right_edge;
static GdkFont *tab_font;
GtkType
nautilus_index_tabs_get_type (void)
{
static GtkType index_tab_type = 0;
if (!index_tab_type)
{
static const GtkTypeInfo index_tab_info =
{
"NautilusIndexTabs",
sizeof (NautilusIndexTabs),
sizeof (NautilusIndexTabsClass),
(GtkClassInitFunc) nautilus_index_tabs_class_init,
(GtkObjectInitFunc) nautilus_index_tabs_init,
/* reserved_1 */ NULL,
/* reserved_2 */ NULL,
(GtkClassInitFunc) NULL,
};
index_tab_type = gtk_type_unique (GTK_TYPE_WIDGET, &index_tab_info);
}
return index_tab_type;
}
static void
nautilus_index_tabs_class_init (NautilusIndexTabsClass *class)
{
GtkObjectClass *object_class;
GtkWidgetClass *widget_class;
gchar *file_name;
object_class = (GtkObjectClass*) class;
widget_class = (GtkWidgetClass*) class;
parent_class = gtk_type_class (gtk_widget_get_type ());
object_class->finalize = nautilus_index_tabs_finalize;
widget_class->expose_event = nautilus_index_tabs_expose;
/* load the images for the left and right edge */
file_name = gnome_pixmap_file("nautilus/tableft.png");
tab_left_edge = gdk_pixbuf_new_from_file(file_name);
g_free (file_name);
file_name = gnome_pixmap_file("nautilus/tabright.png");
tab_right_edge = gdk_pixbuf_new_from_file(file_name);
g_free (file_name);
/* load the font */
tab_font = gdk_font_load("-bitstream-courier-medium-r-normal-*-14-*-*-*-*-*-*-*");
}
static void
nautilus_index_tabs_init (NautilusIndexTabs *index_tabs)
{
GTK_WIDGET_SET_FLAGS (GTK_WIDGET(index_tabs), GTK_NO_WINDOW);
index_tabs->details = g_new0 (NautilusIndexTabsDetails, 1);
index_tabs->details->tab_count = 0;
index_tabs->details->selected_tab = -1;
index_tabs->details->tab_items = NULL;
}
GtkWidget*
nautilus_index_tabs_new ()
{
NautilusIndexTabs *index_tabs;
index_tabs = gtk_type_new (nautilus_index_tabs_get_type ());
return GTK_WIDGET (index_tabs);
}
/* utility to destroy all the storage used by a tab item */
static void
tab_item_destroy(tabItem *item)
{
if (item->tab_text)
g_free(item->tab_text);
g_free(item);
}
static void
nautilus_index_tabs_finalize (GtkObject *object)
{
NautilusIndexTabs *index_tabs = NAUTILUS_INDEX_TABS(object);
/* release the tab list, if any */
if (index_tabs->details->tab_items != NULL)
{
GList *next_tab;
for (next_tab = index_tabs->details->tab_items; next_tab != NULL; next_tab = next_tab->next)
tab_item_destroy ((tabItem*)next_tab->data);
g_list_free (index_tabs->details->tab_items);
}
(* GTK_OBJECT_CLASS (parent_class)->finalize) (object);
}
/* resize the widget based on the number of tabs */
static void
recalculate_size(NautilusIndexTabs *index_tabs)
{
}
/* draw a single tab at the passed-in position */
static void
draw_one_tab(NautilusIndexTabs *index_tabs, gchar tab_name, gint x, gint y)
{
/* measure the name and compute the bounding box */
/* clear the tab rectangle */
/* draw the two edges with the pixbufs */
/* draw the top connecting line */
/* draw the left bottom line */
/* draw the right bottom line */
}
/* draw all of the currently visible tabs */
static void
draw_all_tabs(NautilusIndexTabs *index_tabs)
{
GList *next_tab = index_tabs->details->tab_items;
/* we must draw two items at a time, drawing the second one first, because the first one
overlaps the second */
while (next_tab != NULL)
{
next_tab = next_tab->next;
}
}
/* find a tab with a given name, or return NULL if we can't find one */
static GList*
find_tab(NautilusIndexTabs *index_tabs, const gchar *search_name)
{
GList *next_tab;
for (next_tab = index_tabs->details->tab_items; next_tab != NULL; next_tab = next_tab->next)
{
tabItem *item = (tabItem*) next_tab->data;
if (!strcmp(item->tab_text, search_name))
return next_tab;
}
return NULL;
}
/* handle an expose event by drawing the tabs */
static gint
nautilus_index_tabs_expose (GtkWidget *widget, GdkEventExpose *event)
{
NautilusIndexTabs *index_tabs;
g_return_val_if_fail (widget != NULL, FALSE);
g_return_val_if_fail (NAUTILUS_IS_INDEX_TABS (widget), FALSE);
g_return_val_if_fail (event != NULL, FALSE);
index_tabs = NAUTILUS_INDEX_TABS (widget);
/* draw the tabs */
if (index_tabs->details->tab_count > 0)
draw_all_tabs(index_tabs);
return FALSE;
}
/* add a new tab entry, return TRUE if we succeed */
gboolean
nautilus_index_tabs_add_view(NautilusIndexTabs *index_tabs, const gchar *name, GtkWidget *new_view)
{
/* check to see if we already have one with this name, if so, refuse to add it */
tabItem *new_tab_item;
GList *item = find_tab(index_tabs, name);
if (item)
return FALSE;
/* allocate a new entry, and initialize it */
new_tab_item = g_new0 (tabItem, 1);
new_tab_item->tab_text = strdup(name);
new_tab_item->visible = TRUE;
new_tab_item->tab_view = new_view;
/* add it to the list */
if (index_tabs->details->tab_items)
index_tabs->details->tab_items = g_list_append(index_tabs->details->tab_items, new_tab_item);
else
{
index_tabs->details->tab_items = g_list_alloc();
index_tabs->details->tab_items->data = new_tab_item;
}
index_tabs->details->tab_count += 1;
recalculate_size(index_tabs);
return TRUE;
}
/* remove the specified tab entry */
void
nautilus_index_tabs_remove_view(NautilusIndexTabs *index_tabs, const gchar *name)
{
/* first, look up the item */
GList *item = find_tab(index_tabs, name);
if (item == NULL)
return;
/* unlink the item from the list and dispose of it */
index_tabs->details->tab_items = g_list_remove(index_tabs->details->tab_items, item);
tab_item_destroy ((tabItem *)index_tabs->details->tab_items->data);
g_list_free(item);
index_tabs->details->tab_count -= 1;
recalculate_size(index_tabs);
}

74
src/nautilus-index-tabs.h Normal file
View file

@ -0,0 +1,74 @@
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* Nautilus
* 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: Andy Hertzfeld <andy@eazel.com>
*
* This is the header file for the tabs widget for the index panel.
*
*/
#ifndef __NAUTILUS_INDEX_TABS_H__
#define __NAUTILUS_INDEX_TABS_H__
#include <gdk/gdk.h>
#include <gtk/gtkmisc.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define NAUTILUS_TYPE_INDEX_TABS (nautilus_index_tabs_get_type ())
#define NAUTILUS_INDEX_TABS(obj) (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_INDEX_TABS, NautilusIndexTabs))
#define NAUTILUS_INDEX_TABS_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_INDEX_TABS, NautilusIndexTabsClass))
#define NAUTILUS_IS_INDEX_TABS(obj) (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_INDEX_TABS))
#define NAUTILUS_IS_INDEX_TABS_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_INDEX_TABS))
typedef struct _NautilusIndexTabs NautilusIndexTabs;
typedef struct _NautilusIndexTabsClass NautilusIndexTabsClass;
typedef struct _NautilusIndexTabsDetails NautilusIndexTabsDetails;
typedef struct _tabItem tabItem;
struct _NautilusIndexTabs
{
GtkWidget widget;
NautilusIndexTabsDetails *details;
};
struct _NautilusIndexTabsClass
{
GtkMiscClass parent_class;
};
GtkType nautilus_index_tabs_get_type(void);
GtkWidget* nautilus_index_tabs_new(void);
gboolean nautilus_index_tabs_add_view(NautilusIndexTabs *index_tabs, const gchar *name, GtkWidget *new_view);
void nautilus_index_tabs_remove_view(NautilusIndexTabs *index_tabs, const gchar *name);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __NAUTILUS_INDEX_TABS_H__ */

289
src/nautilus-sidebar-tabs.c Normal file
View file

@ -0,0 +1,289 @@
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* Nautilus
* 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: Andy Hertzfeld <andy@eazel.com>
*
* This is the tabs widget for the index panel, which represents metaviews as nice tabs as specified
*
*/
#include <gdk/gdk.h>
#include <gtk/gtkwidget.h>
#include <gnome.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include "nautilus-index-tabs.h"
/* data structures */
struct _tabItem
{
gboolean visible;
gchar *tab_text;
GtkWidget *tab_view;
};
struct _NautilusIndexTabsDetails
{
int tab_count;
int selected_tab;
int panel_width;
GList *tab_items;
};
/* headers */
static void nautilus_index_tabs_class_init (NautilusIndexTabsClass *klass);
static void nautilus_index_tabs_init (NautilusIndexTabs *pixmap);
static gint nautilus_index_tabs_expose (GtkWidget *widget, GdkEventExpose *event);
static void nautilus_index_tabs_finalize (GtkObject *object);
/* static variables */
static GtkWidgetClass *parent_class;
static GdkPixbuf *tab_left_edge;
static GdkPixbuf *tab_right_edge;
static GdkFont *tab_font;
GtkType
nautilus_index_tabs_get_type (void)
{
static GtkType index_tab_type = 0;
if (!index_tab_type)
{
static const GtkTypeInfo index_tab_info =
{
"NautilusIndexTabs",
sizeof (NautilusIndexTabs),
sizeof (NautilusIndexTabsClass),
(GtkClassInitFunc) nautilus_index_tabs_class_init,
(GtkObjectInitFunc) nautilus_index_tabs_init,
/* reserved_1 */ NULL,
/* reserved_2 */ NULL,
(GtkClassInitFunc) NULL,
};
index_tab_type = gtk_type_unique (GTK_TYPE_WIDGET, &index_tab_info);
}
return index_tab_type;
}
static void
nautilus_index_tabs_class_init (NautilusIndexTabsClass *class)
{
GtkObjectClass *object_class;
GtkWidgetClass *widget_class;
gchar *file_name;
object_class = (GtkObjectClass*) class;
widget_class = (GtkWidgetClass*) class;
parent_class = gtk_type_class (gtk_widget_get_type ());
object_class->finalize = nautilus_index_tabs_finalize;
widget_class->expose_event = nautilus_index_tabs_expose;
/* load the images for the left and right edge */
file_name = gnome_pixmap_file("nautilus/tableft.png");
tab_left_edge = gdk_pixbuf_new_from_file(file_name);
g_free (file_name);
file_name = gnome_pixmap_file("nautilus/tabright.png");
tab_right_edge = gdk_pixbuf_new_from_file(file_name);
g_free (file_name);
/* load the font */
tab_font = gdk_font_load("-bitstream-courier-medium-r-normal-*-14-*-*-*-*-*-*-*");
}
static void
nautilus_index_tabs_init (NautilusIndexTabs *index_tabs)
{
GTK_WIDGET_SET_FLAGS (GTK_WIDGET(index_tabs), GTK_NO_WINDOW);
index_tabs->details = g_new0 (NautilusIndexTabsDetails, 1);
index_tabs->details->tab_count = 0;
index_tabs->details->selected_tab = -1;
index_tabs->details->tab_items = NULL;
}
GtkWidget*
nautilus_index_tabs_new ()
{
NautilusIndexTabs *index_tabs;
index_tabs = gtk_type_new (nautilus_index_tabs_get_type ());
return GTK_WIDGET (index_tabs);
}
/* utility to destroy all the storage used by a tab item */
static void
tab_item_destroy(tabItem *item)
{
if (item->tab_text)
g_free(item->tab_text);
g_free(item);
}
static void
nautilus_index_tabs_finalize (GtkObject *object)
{
NautilusIndexTabs *index_tabs = NAUTILUS_INDEX_TABS(object);
/* release the tab list, if any */
if (index_tabs->details->tab_items != NULL)
{
GList *next_tab;
for (next_tab = index_tabs->details->tab_items; next_tab != NULL; next_tab = next_tab->next)
tab_item_destroy ((tabItem*)next_tab->data);
g_list_free (index_tabs->details->tab_items);
}
(* GTK_OBJECT_CLASS (parent_class)->finalize) (object);
}
/* resize the widget based on the number of tabs */
static void
recalculate_size(NautilusIndexTabs *index_tabs)
{
}
/* draw a single tab at the passed-in position */
static void
draw_one_tab(NautilusIndexTabs *index_tabs, gchar tab_name, gint x, gint y)
{
/* measure the name and compute the bounding box */
/* clear the tab rectangle */
/* draw the two edges with the pixbufs */
/* draw the top connecting line */
/* draw the left bottom line */
/* draw the right bottom line */
}
/* draw all of the currently visible tabs */
static void
draw_all_tabs(NautilusIndexTabs *index_tabs)
{
GList *next_tab = index_tabs->details->tab_items;
/* we must draw two items at a time, drawing the second one first, because the first one
overlaps the second */
while (next_tab != NULL)
{
next_tab = next_tab->next;
}
}
/* find a tab with a given name, or return NULL if we can't find one */
static GList*
find_tab(NautilusIndexTabs *index_tabs, const gchar *search_name)
{
GList *next_tab;
for (next_tab = index_tabs->details->tab_items; next_tab != NULL; next_tab = next_tab->next)
{
tabItem *item = (tabItem*) next_tab->data;
if (!strcmp(item->tab_text, search_name))
return next_tab;
}
return NULL;
}
/* handle an expose event by drawing the tabs */
static gint
nautilus_index_tabs_expose (GtkWidget *widget, GdkEventExpose *event)
{
NautilusIndexTabs *index_tabs;
g_return_val_if_fail (widget != NULL, FALSE);
g_return_val_if_fail (NAUTILUS_IS_INDEX_TABS (widget), FALSE);
g_return_val_if_fail (event != NULL, FALSE);
index_tabs = NAUTILUS_INDEX_TABS (widget);
/* draw the tabs */
if (index_tabs->details->tab_count > 0)
draw_all_tabs(index_tabs);
return FALSE;
}
/* add a new tab entry, return TRUE if we succeed */
gboolean
nautilus_index_tabs_add_view(NautilusIndexTabs *index_tabs, const gchar *name, GtkWidget *new_view)
{
/* check to see if we already have one with this name, if so, refuse to add it */
tabItem *new_tab_item;
GList *item = find_tab(index_tabs, name);
if (item)
return FALSE;
/* allocate a new entry, and initialize it */
new_tab_item = g_new0 (tabItem, 1);
new_tab_item->tab_text = strdup(name);
new_tab_item->visible = TRUE;
new_tab_item->tab_view = new_view;
/* add it to the list */
if (index_tabs->details->tab_items)
index_tabs->details->tab_items = g_list_append(index_tabs->details->tab_items, new_tab_item);
else
{
index_tabs->details->tab_items = g_list_alloc();
index_tabs->details->tab_items->data = new_tab_item;
}
index_tabs->details->tab_count += 1;
recalculate_size(index_tabs);
return TRUE;
}
/* remove the specified tab entry */
void
nautilus_index_tabs_remove_view(NautilusIndexTabs *index_tabs, const gchar *name)
{
/* first, look up the item */
GList *item = find_tab(index_tabs, name);
if (item == NULL)
return;
/* unlink the item from the list and dispose of it */
index_tabs->details->tab_items = g_list_remove(index_tabs->details->tab_items, item);
tab_item_destroy ((tabItem *)index_tabs->details->tab_items->data);
g_list_free(item);
index_tabs->details->tab_count -= 1;
recalculate_size(index_tabs);
}

View file

@ -0,0 +1,74 @@
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* Nautilus
* 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: Andy Hertzfeld <andy@eazel.com>
*
* This is the header file for the tabs widget for the index panel.
*
*/
#ifndef __NAUTILUS_INDEX_TABS_H__
#define __NAUTILUS_INDEX_TABS_H__
#include <gdk/gdk.h>
#include <gtk/gtkmisc.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define NAUTILUS_TYPE_INDEX_TABS (nautilus_index_tabs_get_type ())
#define NAUTILUS_INDEX_TABS(obj) (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_INDEX_TABS, NautilusIndexTabs))
#define NAUTILUS_INDEX_TABS_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_INDEX_TABS, NautilusIndexTabsClass))
#define NAUTILUS_IS_INDEX_TABS(obj) (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_INDEX_TABS))
#define NAUTILUS_IS_INDEX_TABS_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_INDEX_TABS))
typedef struct _NautilusIndexTabs NautilusIndexTabs;
typedef struct _NautilusIndexTabsClass NautilusIndexTabsClass;
typedef struct _NautilusIndexTabsDetails NautilusIndexTabsDetails;
typedef struct _tabItem tabItem;
struct _NautilusIndexTabs
{
GtkWidget widget;
NautilusIndexTabsDetails *details;
};
struct _NautilusIndexTabsClass
{
GtkMiscClass parent_class;
};
GtkType nautilus_index_tabs_get_type(void);
GtkWidget* nautilus_index_tabs_new(void);
gboolean nautilus_index_tabs_add_view(NautilusIndexTabs *index_tabs, const gchar *name, GtkWidget *new_view);
void nautilus_index_tabs_remove_view(NautilusIndexTabs *index_tabs, const gchar *name);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __NAUTILUS_INDEX_TABS_H__ */