This repository has been archived on 2024-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
hedera/vn/vn-form.h

65 lines
2.2 KiB
C
Raw Normal View History

2013-10-11 23:07:35 +00:00
/*
* Copyright (C) 2012 - Juan Ferrer Toribio
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef VN_FORM_H
#define VN_FORM_H
#define VN_TYPE_FORM (vn_form_get_type ())
#define VN_FORM(obj) (G_TYPE_CHECK_INSTANCE_CAST (obj, VN_TYPE_FORM, VnForm))
#define VN_IS_FORM(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, VN_TYPE_FORM))
#define VN_FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST (klass, VN_TYPE_FORM, VnFormClass))
#define VN_IS_FORM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE (klass, VN_TYPE_FORM))
#define VN_FORM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS (obj, VN_TYPE_FORM, VnFormClass))
typedef struct _VnForm VnForm;
typedef struct _VnFormClass VnFormClass;
#include "vn-gui.h"
typedef GType (* VnFormGetTypeFunc) ();
typedef void (* VnFormOpenFunc) (VnForm * obj, GtkBuilder * builder, gpointer user_data);
typedef void (* VnFormActivateFunc) (VnForm * obj);
typedef void (* VnFormDeactivateFunc) (VnForm * obj);
struct _VnForm
{
GtkAlignment parent;
gchar * name;
VnGui * gui;
DbConn * conn;
GtkBuilder * builder;
VnMod * mod;
2014-05-20 15:45:13 +00:00
GMenuModel * menu;
2013-10-11 23:07:35 +00:00
};
struct _VnFormClass
{
GtkAlignmentClass parent;
2014-05-20 15:45:13 +00:00
void (* open) (VnForm * obj, GtkBuilder * builder, gpointer user_data);
const GActionEntry * (* get_actions) (VnForm * obj, int * size);
void (* activate) (VnForm * obj);
void (* deactivate) (VnForm * obj);
2013-10-11 23:07:35 +00:00
};
GType vn_form_get_type ();
void vn_form_open (VnForm * obj);
gpointer vn_form_get (VnForm * obj, const gchar * name);
const gchar * vn_form_get_name (VnForm * obj);
2014-05-20 15:45:13 +00:00
GMenuModel * vn_form_get_menu_model (VnForm * obj);
const GActionEntry * vn_form_get_actions (VnForm * obj, int * size);
2013-10-11 23:07:35 +00:00
#endif