File: bonobo-plug.h

package info (click to toggle)
libbonoboui 2.24.5-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,808 kB
  • ctags: 3,596
  • sloc: ansic: 30,221; sh: 10,256; xml: 599; makefile: 475
file content (71 lines) | stat: -rw-r--r-- 2,413 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* GTK - The GIMP Toolkit
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 *
 * 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_PLUG_H__
#define __BONOBO_PLUG_H__

#include <glib.h>
#include <gdk/gdk.h>
#include <gtk/gtk.h>

typedef struct _BonoboPlug BonoboPlug;

#include <bonobo/bonobo-control.h>

G_BEGIN_DECLS

#define BONOBO_TYPE_PLUG          (bonobo_plug_get_type ())
#define BONOBO_PLUG(obj)          G_TYPE_CHECK_INSTANCE_CAST (obj, bonobo_plug_get_type (), BonoboPlug)
#define BONOBO_PLUG_CLASS(klass)  G_TYPE_CHECK_CLASS_CAST (klass, bonobo_plug_get_type (), BonoboPlugClass)
#define BONOBO_IS_PLUG(obj)       G_TYPE_CHECK_INSTANCE_TYPE (obj, bonobo_plug_get_type ())

typedef struct _BonoboPlugPrivate BonoboPlugPrivate;

struct _BonoboPlug {
	GtkPlug            plug;

	BonoboControl     *control;
	BonoboPlugPrivate *priv;
};

typedef struct {
	GtkPlugClass parent_class;

	gpointer dummy[4];
} BonoboPlugClass;

GType        bonobo_plug_get_type        (void) G_GNUC_CONST;
void           bonobo_plug_construct       (BonoboPlug    *plug,
					    guint32        socket_id);
void           bonobo_plug_construct_full  (BonoboPlug    *plug,
					    GdkDisplay    *display,
					    guint32        socket_id);
GtkWidget     *bonobo_plug_new             (guint32        socket_id);
GtkWidget     *bonobo_plug_new_for_display (GdkDisplay    *display,
					    guint32        socket_id);

G_END_DECLS

#endif /* __BONOBO_PLUG_H__ */