diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-02-15 02:37:40 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-02-15 02:37:40 +0800 |
commit | 53659b16caf2b2172c46b261463b589ee12d19b0 (patch) | |
tree | 66f7d71f43b0c3a6c0418507bdd6d591a6f95588 /executive-summary/evolution-services/executive-summary-html-view.c | |
parent | 59cb3688437bd26c4e2d2e3ea674b6a06d0da4e7 (diff) | |
download | gsoc2013-evolution-53659b16caf2b2172c46b261463b589ee12d19b0.tar gsoc2013-evolution-53659b16caf2b2172c46b261463b589ee12d19b0.tar.gz gsoc2013-evolution-53659b16caf2b2172c46b261463b589ee12d19b0.tar.bz2 gsoc2013-evolution-53659b16caf2b2172c46b261463b589ee12d19b0.tar.lz gsoc2013-evolution-53659b16caf2b2172c46b261463b589ee12d19b0.tar.xz gsoc2013-evolution-53659b16caf2b2172c46b261463b589ee12d19b0.tar.zst gsoc2013-evolution-53659b16caf2b2172c46b261463b589ee12d19b0.zip |
Fix crashes, remove gnome.h includes, add a timer check for the RDF summary, add a new method to the HTMLView so it can handle funny URIs.
svn path=/trunk/; revision=8224
Diffstat (limited to 'executive-summary/evolution-services/executive-summary-html-view.c')
-rw-r--r-- | executive-summary/evolution-services/executive-summary-html-view.c | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/executive-summary/evolution-services/executive-summary-html-view.c b/executive-summary/evolution-services/executive-summary-html-view.c index 659aad18fd..8a3498cdd8 100644 --- a/executive-summary/evolution-services/executive-summary-html-view.c +++ b/executive-summary/evolution-services/executive-summary-html-view.c @@ -42,6 +42,13 @@ static void executive_summary_html_view_class_init (ExecutiveSummaryHtmlViewClas static BonoboObjectClass *parent_class; +enum { + HANDLE_URI, + LAST_SIGNAL +}; + +static guint signals[LAST_SIGNAL] = { 0 }; + struct _ExecutiveSummaryHtmlViewPrivate { BonoboEventSource *event_source; @@ -88,6 +95,18 @@ impl_GNOME_Evolution_Summary_HTMLView_getHtml (PortableServer_Servant servant, return CORBA_string_dup (priv->html? priv->html: ""); } +static void +impl_GNOME_Evolution_Summary_HTMLView_handleURI (PortableServer_Servant servant, + CORBA_char *uri, + CORBA_Environment *ev) +{ + BonoboObject *bonobo_object; + + bonobo_object = bonobo_object_from_servant (servant); + + gtk_signal_emit (GTK_OBJECT (bonobo_object), signals[HANDLE_URI], uri); +} + /* GtkObject methods */ static void executive_summary_html_view_destroy (GtkObject *object) @@ -95,13 +114,13 @@ executive_summary_html_view_destroy (GtkObject *object) ExecutiveSummaryHtmlView *view; ExecutiveSummaryHtmlViewPrivate *priv; + g_print ("BANG!"); view = EXECUTIVE_SUMMARY_HTML_VIEW (object); priv = view->private; if (priv == NULL) return; - bonobo_object_unref (BONOBO_OBJECT (priv->event_source)); g_free (priv->html); g_free (priv); @@ -124,6 +143,7 @@ corba_class_init (void) epv = g_new0 (POA_GNOME_Evolution_Summary_HTMLView__epv, 1); epv->getHtml = impl_GNOME_Evolution_Summary_HTMLView_getHtml; + epv->handleURI = impl_GNOME_Evolution_Summary_HTMLView_handleURI; vepv = &HTMLView_vepv; vepv->_base_epv = base_epv; @@ -139,6 +159,15 @@ executive_summary_html_view_class_init (ExecutiveSummaryHtmlViewClass *klass) object_class = GTK_OBJECT_CLASS (klass); object_class->destroy = executive_summary_html_view_destroy; + signals[HANDLE_URI] = gtk_signal_new ("handle_uri", GTK_RUN_FIRST, + object_class->type, + GTK_SIGNAL_OFFSET (ExecutiveSummaryHtmlViewClass, handle_uri), + gtk_marshal_NONE__POINTER, + GTK_TYPE_NONE, 1, + GTK_TYPE_POINTER); + + gtk_object_class_add_signals (object_class, signals, LAST_SIGNAL); + parent_class = gtk_type_class (PARENT_TYPE); corba_class_init (); |