Blame src/glade-window.h

Packit 1e8aac
/*
Packit 1e8aac
 * Copyright (C) 2001 Ximian, Inc.
Packit 1e8aac
 * Copyright (C) 2007 Vincent Geddes.
Packit 1e8aac
 * Copyright (C) 2012 Juan Pablo Ugarte.
Packit 1e8aac
 *
Packit 1e8aac
 * This program is free software; you can redistribute it and/or modify
Packit 1e8aac
 * it under the terms of the GNU General Public License as
Packit 1e8aac
 * published by the Free Software Foundation; either version 2 of the
Packit 1e8aac
 * License, or (at your option) any later version.
Packit 1e8aac
 *
Packit 1e8aac
 * This program is distributed in the hope that it will be useful,
Packit 1e8aac
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 1e8aac
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 1e8aac
 * GNU General Public License for more details.
Packit 1e8aac
 *
Packit 1e8aac
 * You should have received a copy of the GNU General Public License
Packit 1e8aac
 * along with this program; if not, write to the Free Software
Packit 1e8aac
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 1e8aac
*/
Packit 1e8aac
Packit 1e8aac
#ifndef __GLADE_WINDOW_H__
Packit 1e8aac
#define __GLADE_WINDOW_H__
Packit 1e8aac
Packit 1e8aac
#include <gtk/gtk.h>
Packit 1e8aac
Packit 1e8aac
G_BEGIN_DECLS
Packit 1e8aac
Packit 1e8aac
#define GLADE_TYPE_WINDOW            (glade_window_get_type())
Packit 1e8aac
#define GLADE_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GLADE_TYPE_WINDOW, GladeWindow))
Packit 1e8aac
#define GLADE_WINDOW_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GLADE_TYPE_WINDOW, GladeWindowClass))
Packit 1e8aac
#define GLADE_IS_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GLADE_TYPE_WINDOW))
Packit 1e8aac
#define GLADE_IS_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GLADE_TYPE_WINDOW))
Packit 1e8aac
#define GLADE_WINDOW_GET_CLASS(o)    (G_TYPE_INSTANCE_GET_CLASS ((o), GLADE_WINDOW, GladeWindowClass))
Packit 1e8aac
Packit 1e8aac
typedef struct _GladeWindow         GladeWindow;
Packit 1e8aac
typedef struct _GladeWindowPrivate  GladeWindowPrivate;
Packit 1e8aac
typedef struct _GladeWindowClass    GladeWindowClass;
Packit 1e8aac
Packit 1e8aac
struct _GladeWindow
Packit 1e8aac
{
Packit 1e8aac
	GtkWindow parent_instance;
Packit 1e8aac
	
Packit 1e8aac
	GladeWindowPrivate *priv;
Packit 1e8aac
};
Packit 1e8aac
Packit 1e8aac
struct _GladeWindowClass
Packit 1e8aac
{
Packit 1e8aac
	GtkWindowClass parent_class;
Packit 1e8aac
};
Packit 1e8aac
Packit 1e8aac
GType       glade_window_get_type      (void) G_GNUC_CONST;
Packit 1e8aac
Packit 1e8aac
GtkWidget  *glade_window_new           (void);
Packit 1e8aac
Packit 1e8aac
void        glade_window_new_project   (GladeWindow *window);
Packit 1e8aac
Packit 1e8aac
gboolean    glade_window_open_project  (GladeWindow *window,
Packit 1e8aac
					const gchar *path);
Packit 1e8aac
Packit 1e8aac
void        glade_window_check_devhelp (GladeWindow *window);
Packit 1e8aac
Packit 1e8aac
void        glade_window_registration_notify_user (GladeWindow *window);
Packit 1e8aac
Packit 1e8aac
G_END_DECLS
Packit 1e8aac
Packit 1e8aac
#endif /* __GLADE_WINDOW_H__ */