Main Page | Modules | Alphabetical List | Data Structures | File List | Data Fields | Globals | Related Pages

gaim-disclosure.h

00001 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
00002 /*
00003  *  Gaim is the legal property of its developers, whose names are too numerous
00004  *  to list here.  Please refer to the COPYRIGHT file distributed with this
00005  *  source distribution.
00006  *
00007  *  This program is free software; you can redistribute it and/or modify
00008  *  it under the terms of the GNU General Public License as published by
00009  *  the Free Software Foundation; either version 2 of the License, or
00010  *  (at your option) any later version.
00011  *
00012  *  This program is distributed in the hope that it will be useful,
00013  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  *  GNU General Public License for more details.
00016  *
00017  *  You should have received a copy of the GNU General Public License
00018  *  along with this program; if not, write to the Free Software
00019  *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
00020  *
00021  */
00022 #ifndef __GAIM_GAIM_DISCLOSURE_H__
00023 #define __GAIM_GAIM_DISCLOSURE_H__
00024 
00025 #include "eventloop.h"
00026 
00027 #include <gtk/gtkcheckbutton.h>
00028 
00029 #ifdef __cplusplus
00030 extern "C" {
00031 #pragma }
00032 #endif
00033 
00034 #define GAIM_DISCLOSURE_TYPE (gaim_disclosure_get_type ())
00035 #define GAIM_DISCLOSURE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIM_DISCLOSURE_TYPE, GaimDisclosure))
00036 #define GAIM_DISCLOSURE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAIM_DISCLOSURE_TYPE, GaimDisclosureClass))
00037 #define IS_GAIM_DISCLOSURE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIM_DISCLOSURE_TYPE))
00038 #define IS_GAIM_DISCLOSURE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIM_DISCLOSURE_TYPE))
00039 
00040 typedef struct _GaimDisclosure GaimDisclosure;
00041 typedef struct _GaimDisclosureClass GaimDisclosureClass;
00042 typedef struct _GaimDisclosurePrivate GaimDisclosurePrivate;
00043 
00044 struct _GaimDisclosure {
00045     GtkCheckButton parent;
00046 
00047     GaimDisclosurePrivate *priv;
00048 };
00049 
00050 struct _GaimDisclosureClass {
00051     GtkCheckButtonClass parent_class;
00052 };
00053 
00054 GType gaim_disclosure_get_type (void);
00055 GtkWidget *gaim_disclosure_new (const char *shown, const char *hidden);
00056 void gaim_disclosure_set_container (GaimDisclosure *disclosure,
00057                                     GtkWidget *container);
00058 
00059 #ifdef __cplusplus
00060 }
00061 #endif
00062 
00063 #endif

Generated on Tue Aug 9 15:32:51 2005 for gaim by  doxygen 1.3.9.1