mirror of
https://gitlab.gnome.org/GNOME/glade.git
synced 2025-12-05 00:04:03 -05:00
* configure.ac, plugins/gtk+/Makefile.am,
plugins/gnome/Makefile.am: Substitute PLUGINS_WARN_CFLAGS as the warning flags
for compiling plugins. Don't use the warning flags defined by GNOME_COMPILE_WARNINGS.
svn path=/trunk/; revision=1399
33 lines
719 B
C
33 lines
719 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef __GLADE_GTK_H__
|
|
#define __GLADE_GTK_H__
|
|
|
|
#include <gladeui/glade.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
/* Types */
|
|
|
|
typedef enum {
|
|
GLADEGTK_IMAGE_FILENAME = 0,
|
|
GLADEGTK_IMAGE_STOCK,
|
|
GLADEGTK_IMAGE_ICONTHEME
|
|
} GladeGtkImageType;
|
|
|
|
typedef enum {
|
|
GLADEGTK_BUTTON_LABEL = 0,
|
|
GLADEGTK_BUTTON_STOCK,
|
|
GLADEGTK_BUTTON_CONTAINER
|
|
} GladeGtkButtonType;
|
|
|
|
GType glade_gtk_image_type_get_type (void);
|
|
GType glade_gtk_button_type_get_type (void);
|
|
|
|
GParamSpec *glade_gtk_gnome_ui_info_spec (void);
|
|
|
|
GParamSpec *glade_gtk_image_type_spec (void);
|
|
|
|
GParamSpec *glade_gtk_button_type_spec (void);
|
|
|
|
|
|
#endif /* __GLADE_GTK_H__ */
|