Sophie

Sophie

distrib > PLD > ac > amd64 > media > dist > by-pkgid > fd2761970a77896f276e13daf3a9620f > files > 46

bonobo-devel-1.0.22-7.amd64.rpm

/* 
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 * Copytight (C) 2000 Helix Code, Inc.
 *
 * This 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.
 *
 * This 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 this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/*
 * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
 * file for a list of people on the GTK+ Team.  See the ChangeLog
 * files for a list of changes.  These files are distributed with
 * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
 */

#ifndef __BONOBO_SOCKET_H__
#define __BONOBO_SOCKET_H__

#include <gtk/gtkcontainer.h>
#include <bonobo/bonobo-control.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */


#define BONOBO_SOCKET_TYPE            (bonobo_socket_get_type ())
#define BONOBO_SOCKET(obj)            (GTK_CHECK_CAST ((obj), BONOBO_SOCKET_TYPE, BonoboSocket))
#define BONOBO_SOCKET_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), BONOBO_SOCKET_TYPE,	\
				       BonoboSocketClass))
#define BONOBO_IS_SOCKET(obj)         (GTK_CHECK_TYPE ((obj), BONOBO_SOCKET_TYPE))
#define BONOBO_IS_SOCKET_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), BONOBO_SOCKET_TYPE))

typedef struct _BonoboSocketPrivate BonoboSocketPrivate;

typedef struct {
	GtkContainer container;

	BonoboSocketPrivate *priv;
} BonoboSocket;

typedef struct {
	GtkContainerClass parent_class;
} BonoboSocketClass;


GtkWidget*     bonobo_socket_new               (void);
guint          bonobo_socket_get_type          (void);
void           bonobo_socket_set_control_frame (BonoboSocket       *socket,
						BonoboControlFrame *frame);

/* Unused */
void           bonobo_socket_steal       (BonoboSocket    *socket,
					  guint32          wid);

#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif /* __BONOBO_SOCKET_H__ */