nautilus/test/test-nautilus-async-activation.c
Michael Meeks 7a030297d9 fix.
2001-11-21  Michael Meeks  <michael@ximian.com>

	* test/test-nautilus-wrap-table.c (main): fix.

	* test/test-nautilus-mime-actions.c (main): upd. init.

	* test/test.c (test_init): upd.
	(test_label_new): kill tile_pixbuf support.
	(test_image_new): ditto.

	* test/test-nautilus-async-activation.c (main): upd.

	* test/Makefile.am: add CORE_CFLAGS, update LDADD.

	* libnautilus-private/nautilus-directory.c
	(nautilus_directory_destroy): rename to
	(nautilus_directory_dispose): this, but leave as a
	gtk object for now, double emission protect, move
	removal from directories list to head & split into:
	(nautilus_directory_finalize): here.

	* libnautilus-private/nautilus-directory-async.c
	(nautilus_directory_async_state_changed): fully remove
	GTK_OBJECT_DESTROYED check.
2001-11-21 08:34:57 +00:00

78 lines
2.2 KiB
C

/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
Copyright (C) 2000 Eazel
The Gnome Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Mathieu Lacage <mathieu@eazel.com>
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <gtk/gtk.h>
#include <libnautilus-private/nautilus-bonobo-extensions.h>
#include <libbonoboui.h>
#define IID "OAFIID:bonobo_calculator:fab8c2a7-9576-437c-aa3a-a8617408970f"
static void
activation_callback (NautilusBonoboActivationHandle *handle,
Bonobo_Unknown activated_object,
gpointer callback_data)
{
GtkWidget *window;
GtkWidget *control;
window = GTK_WIDGET (callback_data);
if (activated_object == CORBA_OBJECT_NIL) {
g_print ("activation failed\n");
} else {
control = bonobo_widget_new_control_from_objref (activated_object,
CORBA_OBJECT_NIL);
gtk_container_add (GTK_CONTAINER (window), control);
gtk_widget_show (GTK_WIDGET (control));
g_print ("activation suceeded\n");
}
}
int
main (int argc, char *argv[])
{
GtkWidget *window;
NautilusBonoboActivationHandle *handle;
bonobo_ui_init ("test-nautilus-activation-async",
"1.0", &argc, argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
g_signal_connect (window, "destroy",
gtk_main_quit, NULL);
gtk_widget_show_all (GTK_WIDGET (window));
handle = nautilus_bonobo_activate_from_id (IID, activation_callback, window);
#if 0
nautilus_bonobo_activate_stop (handle);
#endif
bonobo_main ();
return 0;
}