src/give_statusbar_plugin.h

Go to the documentation of this file.
00001 /* Give - Statusbar plugin for easy drag & drop data sending via Bluetooth.
00002  * Copyright (C) 2008 Dénes Mátételki
00003  *
00004  * This library is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU Lesser General Public
00006  * License as published by the Free Software Foundation; either
00007  * version 2 of the License, or (at your option) any later version.
00008  *
00009  * This library is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  * Lesser General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU Lesser General Public
00015  * License along with this library; if not, write to the Free
00016  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00017  */
00018 
00019 #ifndef GIVE_STATUSBAR_PLUGIN_H
00020 #define GIVE_STATUSBAR_PLUGIN_H
00021 
00022 #include <glib-object.h>
00023 
00024 #include <libhildondesktop/hildon-status-bar-item.h>
00025 #include <libhildondesktop/libhildondesktop.h>
00026 
00027 G_BEGIN_DECLS
00028 
00029 typedef struct _GiveStatusbarPlugin GiveStatusbarPlugin;
00030 typedef struct _GiveStatusbarPluginClass GiveStatusbarPluginClass;
00031 
00032 #define GIVE_TYPE_STATUSBAR_PLUGIN      (give_statusbar_plugin_get_type ())
00033 #define GIVE_STATUSBAR_PLUGIN(obj)      (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
00034                                         GIVE_TYPE_STATUSBAR_PLUGIN, \
00035                                         GiveStatusbarPlugin))
00036 #define GIVE_STATUSBAR_PLUGIN_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass),\
00037                                          GIVE_TYPE_STATUSBAR_PLUGIN, \
00038                                         GiveStatusbarPluginClass))
00039 #define GIVE_IS_STATUSBAR_PLUGIN(obj)   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
00040                                         GIVE_TYPE_STATUSBAR_PLUGIN))
00041 #define GIVE_IS_STATUSBAR_PLUGIN_CLASS(klass)(G_TYPE_CHECK_CLASS_TYPE ((klass),\
00042                                         GIVE_TYPE_STATUSBAR_PLUGIN))
00043 #define GIVE_STATUSBAR_PLUGIN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj),\
00044                                         GIVE_TYPE_STATUSBAR_PLUGIN, \
00045                                         GiveStatusbarPluginClass))
00046 
00047 struct _GiveStatusbarPlugin
00048 {
00049         StatusbarItem parent;
00050 };
00051 
00052 struct _GiveStatusbarPluginClass
00053 {
00054         StatusbarItemClass parent_class;
00055 };
00056 
00057 GType give_statusbar_plugin_get_type (void) G_GNUC_CONST;
00058 
00059 G_END_DECLS
00060 
00061 #endif

Generated on Sat May 17 16:27:32 2008 for Give by  doxygen 1.5.3