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 
00023 #ifndef __GAIM_DISCLOSURE_H__
00024 #define __GAIM_DISCLOSURE_H__
00025 
00026 #include "eventloop.h"
00027 
00028 #include <gtk/gtkcheckbutton.h>
00029 
00030 #ifdef __cplusplus
00031 extern "C" {
00032 #pragma }
00033 #endif
00034 
00035 #define GAIM_DISCLOSURE_TYPE (gaim_disclosure_get_type ())
00036 #define GAIM_DISCLOSURE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIM_DISCLOSURE_TYPE, GaimDisclosure))
00037 #define GAIM_DISCLOSURE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAIM_DISCLOSURE_TYPE, GaimDisclosureClass))
00038 #define IS_GAIM_DISCLOSURE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIM_DISCLOSURE_TYPE))
00039 #define IS_GAIM_DISCLOSURE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIM_DISCLOSURE_TYPE))
00040 
00041 typedef struct _GaimDisclosure GaimDisclosure;
00042 typedef struct _GaimDisclosureClass GaimDisclosureClass;
00043 typedef struct _GaimDisclosurePrivate GaimDisclosurePrivate;
00044 
00045 struct _GaimDisclosure {
00046     GtkCheckButton parent;
00047 
00048     GaimDisclosurePrivate *priv;
00049 };
00050 
00051 struct _GaimDisclosureClass {
00052     GtkCheckButtonClass parent_class;
00053 };
00054 
00055 GType gaim_disclosure_get_type (void);
00056 GtkWidget *gaim_disclosure_new (const char *shown, const char *hidden);
00057 void gaim_disclosure_set_container (GaimDisclosure *disclosure,
00058                                     GtkWidget *container);
00059 
00060 #ifdef __cplusplus
00061 }
00062 #endif
00063 
00064 #endif

Generated on Sun Aug 29 03:45:05 2004 for gaim by doxygen 1.3.4