GFC Logo GFC Title Logo
Reference Manual
Main Page  |  Namespace List  |  Alphabetical List  |  Class List  |  File List

marshal.hh

00001 /* GFC-Core: GTK+ Foundation Classes (Core Library) 00002 * Copyright (C) 2003-2004 The GFC Development Team. 00003 * 00004 * marshal.hh - Private interface 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU Library General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Library General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00019 */ 00020 00021 #ifndef GFC_G_MARSHALL_HH 00022 #define GFC_G_MARSHALL_HH 00023 00024 #ifndef __GLIB_GOBJECT_H__ 00025 #include <glib-object.h> 00026 #endif 00027 00028 namespace GFC { 00029 00030 namespace G { 00031 00032 // G::Marshal provides the common signal callback functions used by GTK+ Objects 00033 // to translate GObject signal notifications into sigc::slot calls. 00034 00035 class Marshal 00036 { 00037 public: 00038 static void void_callback(void*); 00039 00040 static void void_bool_callback(void*, bool); 00041 00042 static void void_int_callback(void*, int); 00043 00044 static void void_int_int_callback(void*, int, int); 00045 00046 static void void_int_int_int_int_callback(void*, int, int, int, int); 00047 00048 static void void_gparamspec_callback(void*, GParamSpec*); 00049 }; 00050 00051 } // namespace G 00052 00053 } // namespace GFC 00054 00055 #endif // GFC_G_MARSHALL_HH 00056

Generated on Tue Aug 24 00:04:56 2004 for GFC-Core by doxygen 1.3.8