update gitignore
[swfdec.git] / vivified / dock / vivi_docklet.h
blob10882528d4ffd7ec589d671de5c0c495cdb389b3
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_DOCKLET_H_
21 #define _VIVI_DOCKLET_H_
23 #include <gtk/gtk.h>
25 G_BEGIN_DECLS
28 typedef struct _ViviDocklet ViviDocklet;
29 typedef struct _ViviDockletClass ViviDockletClass;
31 #define VIVI_TYPE_DOCKLET (vivi_docklet_get_type())
32 #define VIVI_IS_DOCKLET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIVI_TYPE_DOCKLET))
33 #define VIVI_IS_DOCKLET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIVI_TYPE_DOCKLET))
34 #define VIVI_DOCKLET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIVI_TYPE_DOCKLET, ViviDocklet))
35 #define VIVI_DOCKLET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIVI_TYPE_DOCKLET, ViviDockletClass))
36 #define VIVI_DOCKLET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VIVI_TYPE_DOCKLET, ViviDockletClass))
38 struct _ViviDocklet {
39 GtkBin bin;
41 char * title; /* title to be used */
42 char * icon; /* name of icon for docklet or "gtk-missing-image" */
45 struct _ViviDockletClass
47 GtkBinClass bin_class;
50 GType vivi_docklet_get_type (void);
52 void vivi_docklet_set_title (ViviDocklet * docklet,
53 const char * titlename);
54 const char * vivi_docklet_get_title (ViviDocklet * docklet);
55 void vivi_docklet_set_icon (ViviDocklet * docklet,
56 const char * titlename);
57 const char * vivi_docklet_get_icon (ViviDocklet * docklet);
60 G_END_DECLS
61 #endif