From 6876ede98282c7db318089bfefb292aa59e55d48 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 30 Dec 2002 19:29:24 +0000 Subject: Initial revision --- lib/ephy-filesystem-autocompletion.h | 70 ++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create 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 new file mode 100644 index 000000000..ec047282f --- /dev/null +++ b/lib/ephy-filesystem-autocompletion.h @@ -0,0 +1,70 @@ +/* + * 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 v1.2.3