Blame src/glade-registration.h

Packit 1e8aac
/*
Packit 1e8aac
 * Copyright (C) 2014 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
 * Authors:
Packit 1e8aac
 *   Juan Pablo Ugarte <juanpablougarte@gmail.com>
Packit 1e8aac
 */
Packit 1e8aac
Packit 1e8aac
#ifndef _GLADE_REGISTRATION_H_
Packit 1e8aac
#define _GLADE_REGISTRATION_H_
Packit 1e8aac
Packit 1e8aac
#include <gtk/gtk.h>
Packit 1e8aac
Packit 1e8aac
G_BEGIN_DECLS
Packit 1e8aac
Packit 1e8aac
#define GLADE_TYPE_REGISTRATION             (glade_registration_get_type ())
Packit 1e8aac
#define GLADE_REGISTRATION(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GLADE_TYPE_REGISTRATION, GladeRegistration))
Packit 1e8aac
#define GLADE_REGISTRATION_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GLADE_TYPE_REGISTRATION, GladeRegistrationClass))
Packit 1e8aac
#define GLADE_IS_REGISTRATION(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GLADE_TYPE_REGISTRATION))
Packit 1e8aac
#define GLADE_IS_REGISTRATION_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GLADE_TYPE_REGISTRATION))
Packit 1e8aac
#define GLADE_REGISTRATION_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GLADE_TYPE_REGISTRATION, GladeRegistrationClass))
Packit 1e8aac
Packit 1e8aac
typedef struct _GladeRegistrationClass GladeRegistrationClass;
Packit 1e8aac
typedef struct _GladeRegistration GladeRegistration;
Packit 1e8aac
typedef struct _GladeRegistrationPrivate GladeRegistrationPrivate;
Packit 1e8aac
Packit 1e8aac
Packit 1e8aac
struct _GladeRegistrationClass
Packit 1e8aac
{
Packit 1e8aac
  GtkDialogClass parent_class;
Packit 1e8aac
};
Packit 1e8aac
Packit 1e8aac
struct _GladeRegistration
Packit 1e8aac
{
Packit 1e8aac
  GtkDialog parent_instance;
Packit 1e8aac
Packit 1e8aac
  GladeRegistrationPrivate *priv;
Packit 1e8aac
};
Packit 1e8aac
Packit 1e8aac
GType glade_registration_get_type (void) G_GNUC_CONST;
Packit 1e8aac
Packit 1e8aac
GtkWidget *glade_registration_new (void);
Packit 1e8aac
Packit 1e8aac
G_END_DECLS
Packit 1e8aac
Packit 1e8aac
#endif /* _GLADE_REGISTRATION_H_ */
Packit 1e8aac