From 6d0925a6632ab79046b1d59b74d88f3b5bc39eae Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Tue, 21 Jan 2003 12:35:45 +0000 Subject: Remove fs autocompletion, we are a browser after all 2003-01-21 Marco Pesenti Gritti * lib/Makefile.am: * lib/ephy-filesystem-autocompletion.c: * lib/ephy-filesystem-autocompletion.h: Remove fs autocompletion, we are a browser after all --- lib/ephy-filesystem-autocompletion.h | 70 ------------------------------------ 1 file changed, 70 deletions(-) delete mode 100644 lib/ephy-filesystem-autocompletion.h (limited to 'lib/ephy-filesystem-autocompletion.h') diff --git a/lib/ephy-filesystem-autocompletion.h b/lib/ephy-filesystem-autocompletion.h deleted file mode 100644 index ec047282f..000000000 --- a/lib/ephy-filesystem-autocompletion.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Copyright (C) 2002 Ricardo Fernández Pascual - * - * 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, 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. - */ - -#ifndef EPHY_FILESYSTEM_AUTOCOMPLETION_H -#define EPHY_FILESYSTEM_AUTOCOMPLETION_H - -#include - -G_BEGIN_DECLS - -/* object forward declarations */ - -typedef struct _EphyFilesystemAutocompletion EphyFilesystemAutocompletion; -typedef struct _EphyFilesystemAutocompletionClass EphyFilesystemAutocompletionClass; -typedef struct _EphyFilesystemAutocompletionPrivate EphyFilesystemAutocompletionPrivate; - -/** - * FilesystemAutocompletion object - */ - -#define GUL_TYPE_FILESYSTEM_AUTOCOMPLETION (ephy_filesystem_autocompletion_get_type()) -#define GUL_FILESYSTEM_AUTOCOMPLETION(object) (G_TYPE_CHECK_INSTANCE_CAST((object), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION,\ - EphyFilesystemAutocompletion)) -#define GUL_FILESYSTEM_AUTOCOMPLETION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION,\ - EphyFilesystemAutocompletionClass)) -#define GUL_IS_FILESYSTEM_AUTOCOMPLETION(object) (G_TYPE_CHECK_INSTANCE_TYPE((object), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION)) -#define GUL_IS_FILESYSTEM_AUTOCOMPLETION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION)) -#define GUL_FILESYSTEM_AUTOCOMPLETION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \ - GUL_TYPE_FILESYSTEM_AUTOCOMPLETION,\ - EphyFilesystemAutocompletionClass)) - -struct _EphyFilesystemAutocompletionClass -{ - GObjectClass parent_class; - -}; - -struct _EphyFilesystemAutocompletion -{ - GObject parent_object; - EphyFilesystemAutocompletionPrivate *priv; -}; - -GType ephy_filesystem_autocompletion_get_type (void); -EphyFilesystemAutocompletion * ephy_filesystem_autocompletion_new (void); -void ephy_filesystem_autocompletion_set_base_dir (EphyFilesystemAutocompletion *fa, - const gchar *d); - -G_END_DECLS - -#endif -- cgit