diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-03-30 02:48:45 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-30 02:48:45 +0800 |
commit | f915ef04766ad74fb64fdb1589e73eae5324d465 (patch) | |
tree | c992c75fc36202dbf8e3e0a2e2a03108bb33693c /embed/ephy-embed-popup-control.h | |
parent | f2da560b232d7a0166fdf0aec3a9b48d574b0c65 (diff) | |
download | gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.gz gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.bz2 gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.lz gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.xz gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.tar.zst gsoc2013-epiphany-f915ef04766ad74fb64fdb1589e73eae5324d465.zip |
Removed the nautilus view.
2004-03-29 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
* data/.cvsignore:
* data/GNOME_Epiphany_NautilusView.server.in:
* data/Makefile.am:
* data/ui/.cvsignore:
* data/ui/Makefile.am:
* data/ui/nautilus-epiphany-view.xml:
* doc/reference/Makefile.am:
* embed/Makefile.am:
* embed/ephy-embed-popup-control.c:
* embed/ephy-embed-popup-control.h:
* lib/Makefile.am:
* lib/ephy-bonobo-extensions.c:
* lib/ephy-bonobo-extensions.h:
* po/POTFILES.in:
* src/Makefile.am:
* src/ephy-nautilus-view.c:
* src/ephy-nautilus-view.h:
* src/ephy-shell.c: (ephy_automation_factory_cb):
Removed the nautilus view.
2004-03-29 Christian Persch <chpe@cvs.gnome.org>
Diffstat (limited to 'embed/ephy-embed-popup-control.h')
-rw-r--r-- | embed/ephy-embed-popup-control.h | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/embed/ephy-embed-popup-control.h b/embed/ephy-embed-popup-control.h deleted file mode 100644 index bc1fc710e..000000000 --- a/embed/ephy-embed-popup-control.h +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2000, 2001, 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. - * - * $Id$ - */ - -#ifndef EPHY_EMBED_POPUP_CONTROL_H -#define EPHY_EMBED_POPUP_CONTROL_H - -#include <bonobo/bonobo-control.h> - -#include "ephy-embed.h" -#include "ephy-embed-event.h" - -G_BEGIN_DECLS - -#define EPHY_TYPE_EMBED_POPUP_CONTROL (ephy_embed_popup_control_get_type ()) -#define EPHY_EMBED_POPUP_CONTROL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_EMBED_POPUP_CONTROL, EphyEmbedPopupControl)) -#define EPHY_EMBED_POPUP_CONTROL_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_EMBED_POPUP_CONTROL, EphyEmbedPopupControlClass)) -#define EPHY_IS_EMBED_POPUP_CONTROL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_EMBED_POPUP_CONTROL)) -#define EPHY_IS_EMBED_POPUP_CONTROL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_EMBED_POPUP_CONTROL)) -#define EPHY_EMBED_POPUP_CONTROL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_EMBED_POPUP_CONTROL, EphyEmbedPopupControlClass)) - -typedef struct EphyEmbedPopupControlClass EphyEmbedPopupControlClass; -typedef struct EphyEmbedPopupControl EphyEmbedPopupControl; -typedef struct EphyEmbedPopupControlPrivate EphyEmbedPopupControlPrivate; - -struct EphyEmbedPopupControl -{ - GObject parent; - - /*< private >*/ - EphyEmbedPopupControlPrivate *priv; -}; - -struct EphyEmbedPopupControlClass -{ - GObjectClass parent_class; -}; - -GType ephy_embed_popup_control_get_type (void); - -EphyEmbedPopupControl *ephy_embed_popup_control_new (BonoboControl *control); - -EphyEmbedEvent *ephy_embed_popup_control_get_event (EphyEmbedPopupControl *p); - -void ephy_embed_popup_control_set_event (EphyEmbedPopupControl *p, - EphyEmbedEvent *event); - -void ephy_embed_popup_control_connect_verbs (EphyEmbedPopupControl *p, - BonoboUIComponent *ui_component); - -void ephy_embed_popup_control_show (EphyEmbedPopupControl *pp, - EphyEmbed *embed); - -G_END_DECLS - -#endif |