1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/* mg-work-widget.h
*
* Copyright (C) 2004 Vivien Malerba
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#ifndef __MG_WORK_WIDGET_H_
#define __MG_WORK_WIDGET_H_
#include <glib-object.h>
#include <gtk/gtk.h>
#include "mg-defs.h"
#include "mg-enums.h"
G_BEGIN_DECLS
#define MG_WORK_WIDGET_TYPE (mg_work_widget_get_type())
#define MG_WORK_WIDGET(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, mg_work_widget_get_type(), MgWorkWidget)
#define IS_MG_WORK_WIDGET(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, mg_work_widget_get_type ())
#define MG_WORK_WIDGET_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), MG_WORK_WIDGET_TYPE, MgWorkWidgetIface))
/* struct for the interface */
struct _MgWorkWidgetIface
{
GTypeInterface g_iface;
/* virtual table */
void (* run) (MgWorkWidget *iface, guint mode);
void (* set_mode) (MgWorkWidget *iface, guint mode);
void (* set_entry_editable) (MgWorkWidget *iface, MgQfield *field, gboolean editable);
void (* show_entry_actions) (MgWorkWidget *iface, MgQfield *field, gboolean show_actions);
void (* show_global_actions) (MgWorkWidget *iface, gboolean show_actions);
MgParameter *(* get_param_for_field) (MgWorkWidget *iface, MgQfield *field, const gchar *file_name, gboolean in_exec_context);
gboolean (* has_been_changed) (MgWorkWidget *iface);
MgContext *(* get_exec_context) (MgWorkWidget *iface);
GtkActionGroup *(* get_actions_group) (MgWorkWidget *iface);
};
GType mg_work_widget_get_type (void) G_GNUC_CONST;
void mg_work_widget_run (MgWorkWidget *iface, guint mode);
void mg_work_widget_set_mode (MgWorkWidget *iface, guint mode);
void mg_work_widget_entry_set_editable (MgWorkWidget *iface, MgQfield *field, gboolean editable);
void mg_work_widget_entry_show_actions (MgWorkWidget *iface, MgQfield *field, gboolean show_actions);
void mg_work_widget_alldata_show_actions(MgWorkWidget *iface, gboolean show_actions);
gboolean mg_work_widget_is_exec_context_valid (MgWorkWidget *iface);
MgParameter *mg_work_widget_get_param_for_field_exec (MgWorkWidget *iface, MgQfield *field);
MgParameter *mg_work_widget_get_param_for_field_sql_exec (MgWorkWidget *iface, const gchar *field_name);
MgParameter *mg_work_widget_get_param_for_field_data (MgWorkWidget *iface, MgQfield *field);
MgParameter *mg_work_widget_get_param_for_field_sql_data (MgWorkWidget *iface, const gchar *field_name);
gboolean mg_work_widget_has_been_changed (MgWorkWidget *iface);
GtkActionGroup *mg_work_widget_get_actions_group (MgWorkWidget *iface);
void mg_work_widget_perform_action (MgWorkWidget *iface, MgAction action);
void mg_work_widget_bind_to_work_widget_xml (MgWorkWidget *dest_iface, const gchar *dest_field_xml_id,
MgWorkWidget *source_iface, const gchar *source_field_xml_id);
gboolean mg_work_widget_bind_to_work_widget_sql (MgWorkWidget *dest_iface, const gchar *dest_field_name,
MgWorkWidget *source_iface, const gchar *source_field_name);
void mg_work_widget_bind_to_context (MgWorkWidget *dest_iface, const gchar *dest_field_xml_id,
MgContext *source_context, const gchar *source_field_xml_id);
void mg_work_widget_bind_to_context_all (MgWorkWidget *dest_iface, MgContext *source_context);
G_END_DECLS
#endif
|