2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2004-09-01 20:30:24 +00:00
|
|
|
* Copyright 1998-2002 Tim Janik, Red Hat, Inc., and others.
|
|
|
|
* Copyright (C) 2003 Alex Graveley
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-09-01 20:30:24 +00:00
|
|
|
#ifndef __GTK_MODULES_H__
|
|
|
|
#define __GTK_MODULES_H__
|
|
|
|
|
|
|
|
#include <gtk/gtksettings.h>
|
|
|
|
|
2005-06-21 05:35:43 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
/**
|
|
|
|
* GtkModuleInitFunc:
|
2011-04-20 19:11:11 +00:00
|
|
|
* @argc: (allow-none): GTK+ always passes %NULL for this argument
|
|
|
|
* @argv: (allow-none) (array length=argc): GTK+ always passes %NULL for this argument
|
2011-01-04 22:32:12 +00:00
|
|
|
*
|
|
|
|
* Each GTK+ module must have a function gtk_module_init()
|
|
|
|
* with this prototype. This function is called after loading
|
2011-01-07 13:12:07 +00:00
|
|
|
* the module.
|
2011-01-04 22:32:12 +00:00
|
|
|
*/
|
|
|
|
typedef void (*GtkModuleInitFunc) (gint *argc,
|
|
|
|
gchar ***argv);
|
2004-09-01 20:30:24 +00:00
|
|
|
|
2011-01-04 22:32:12 +00:00
|
|
|
/**
|
|
|
|
* GtkModuleDisplayInitFunc:
|
|
|
|
* @display: an open #GdkDisplay
|
|
|
|
*
|
|
|
|
* A multihead-aware GTK+ module may have a gtk_module_display_init()
|
|
|
|
* function with this prototype. GTK+ calls this function for each
|
|
|
|
* opened display.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
2004-09-01 20:30:24 +00:00
|
|
|
*/
|
2011-01-04 22:32:12 +00:00
|
|
|
typedef void (*GtkModuleDisplayInitFunc) (GdkDisplay *display);
|
2004-09-01 20:30:24 +00:00
|
|
|
|
2005-06-21 05:35:43 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2004-09-01 20:30:24 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_MODULES_H__ */
|