mirror of
https://gitlab.gnome.org/GNOME/glade.git
synced 2025-09-24 00:04:33 -04:00
* src/glade-types.h, src/glade-plugin.h: Removed * src/Makefile.am src/glade-app.h src/glade-builtins.h src/glade-catalog.h src/glade-clipboard.h src/glade-command.c src/glade-command.h src/glade-cursor.h src/glade-editor.c src/glade-editor.h src/glade-gtk.c src/glade-palette.h src/glade-parameter.h src/glade-parser.h src/glade-placeholder.c src/glade-placeholder.h src/glade-project-view.h src/glade-project-window.h src/glade-project.c src/glade-project.h src/glade-property-class.c src/glade-property-class.h src/glade-property.c src/glade-property.h src/glade-signal-editor.c src/glade-signal-editor.h src/glade-signal.h src/glade-utils.h src/glade-widget-class.c src/glade-widget-class.h src/glade-widget.c src/glade-widget.h src/glade-xml-utils.h src/glade.h: Now "glade.h" is the libgladeui API include for both the plugin and the application side (Fixed sources in consequence to a few broken types).
23 lines
732 B
C
23 lines
732 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
#ifndef __GLADE_BUILTINS_H__
|
|
#define __GLADE_BUILTINS_H__
|
|
|
|
#include <glib-object.h>
|
|
#include "glade.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GLADE_TYPE_STOCK (glade_standard_stock_get_type())
|
|
|
|
LIBGLADEUI_API GType glade_standard_stock_get_type (void);
|
|
|
|
#define GLADE_IS_PARAM_SPEC_STOCK(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GLADE_TYPE_STOCK))
|
|
LIBGLADEUI_API GParamSpec *glade_standard_stock_spec (void);
|
|
LIBGLADEUI_API GParamSpec *glade_standard_int_spec (void);
|
|
LIBGLADEUI_API GParamSpec *glade_standard_string_spec (void);
|
|
LIBGLADEUI_API GParamSpec *glade_standard_float_spec (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GLADE_BUILTINS_H__ */
|