diff src/gtkgaim-disclosure.h @ 10297:ec140184437b

[gaim-migrate @ 11480] "After applying this patch, which modifies the make files and makes the @file/@ingroup markers at the top of several gtk files more uniform, the following files should be renamed: dnd-hints.h -> gtkdnd-hints.h dnd-hints.c -> gtkdnd-hints.c gaim-disclosure.h -> gtkgaim-disclosure.h gaim-disclosure.c -> gtkgaim-disclosure.c stock.h -> gtkstock.h stock.c -> gtkstock.c I believe that completes the renaming of files which are explicitly for gtkgaim; all files in /gaim/src which depend upon gtk should now have gtk in their name. There are two candidates which might be considered part of gtkgaim rather than part of the core, but I didn't modify them: session.c and log.c. Both are quite gaim-UI specific, it seems, particularly session, but perhaps other UIs could also make use of their functionality. -Evan " committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 02 Dec 2004 20:34:19 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/gtkgaim-disclosure.h	Thu Dec 02 20:34:19 2004 +0000
@@ -0,0 +1,63 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ *  Gaim is the legal property of its developers, whose names are too numerous
+ *  to list here.  Please refer to the COPYRIGHT file distributed with this
+ *  source distribution.
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; either version 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ *
+ */
+#ifndef __GAIM_GAIM_DISCLOSURE_H__
+#define __GAIM_GAIM_DISCLOSURE_H__
+
+#include "eventloop.h"
+
+#include <gtk/gtkcheckbutton.h>
+
+#ifdef __cplusplus
+extern "C" {
+#pragma }
+#endif
+
+#define GAIM_DISCLOSURE_TYPE (gaim_disclosure_get_type ())
+#define GAIM_DISCLOSURE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIM_DISCLOSURE_TYPE, GaimDisclosure))
+#define GAIM_DISCLOSURE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GAIM_DISCLOSURE_TYPE, GaimDisclosureClass))
+#define IS_GAIM_DISCLOSURE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIM_DISCLOSURE_TYPE))
+#define IS_GAIM_DISCLOSURE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIM_DISCLOSURE_TYPE))
+
+typedef struct _GaimDisclosure GaimDisclosure;
+typedef struct _GaimDisclosureClass GaimDisclosureClass;
+typedef struct _GaimDisclosurePrivate GaimDisclosurePrivate;
+
+struct _GaimDisclosure {
+	GtkCheckButton parent;
+
+	GaimDisclosurePrivate *priv;
+};
+
+struct _GaimDisclosureClass {
+	GtkCheckButtonClass parent_class;
+};
+
+GType gaim_disclosure_get_type (void);
+GtkWidget *gaim_disclosure_new (const char *shown, const char *hidden);
+void gaim_disclosure_set_container (GaimDisclosure *disclosure,
+									GtkWidget *container);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif