add server-manufacturer property
[swfdec.git] / vivified / dock / vivi_docker.h
blob3baaf8d85d62cfc105a372f718377b74b8fbacce
1 /* Vivified
2 * Copyright (C) 2007 Benjamin Otte <otte@gnome.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301 USA
20 #ifndef _VIVI_DOCKER_H_
21 #define _VIVI_DOCKER_H_
23 #include <gtk/gtk.h>
24 #include <vivified/dock/vivi_docklet.h>
26 G_BEGIN_DECLS
29 typedef struct _ViviDocker ViviDocker;
30 typedef struct _ViviDockerClass ViviDockerClass;
32 #define VIVI_TYPE_DOCKER (vivi_docker_get_type())
33 #define VIVI_IS_DOCKER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIVI_TYPE_DOCKER))
34 #define VIVI_IS_DOCKER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIVI_TYPE_DOCKER))
35 #define VIVI_DOCKER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIVI_TYPE_DOCKER, ViviDocker))
36 #define VIVI_DOCKER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIVI_TYPE_DOCKER, ViviDockerClass))
37 #define VIVI_DOCKER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VIVI_TYPE_DOCKER, ViviDockerClass))
39 struct _ViviDocker {
40 GtkExpander bin;
43 struct _ViviDockerClass
45 GtkExpanderClass bin_class;
47 void (* request_close) (ViviDocker * docker);
50 GType vivi_docker_get_type (void);
52 GtkWidget * vivi_docker_new (ViviDocklet * docklet);
54 G_END_DECLS
55 #endif