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
|
/* mg-data-cell-renderer-combo.h
* Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
* Copyright (C) 2003 Vivien Malerba <malerba@gnome-db.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef __MG_DATA_CELL_RENDERER_COMBO_H__
#define __MG_DATA_CELL_RENDERER_COMBO_H__
#include <gtk/gtk.h>
#include <pango/pango.h>
#include <libmergeant/mg-defs.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define MG_DATA_CELL_RENDERER_COMBO_TYPE (mg_data_cell_renderer_combo_get_type ())
#define MG_DATA_CELL_RENDERER_COMBO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MG_DATA_CELL_RENDERER_COMBO_TYPE, MgDataCellRendererCombo))
#define MG_DATA_CELL_RENDERER_COMBO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MG_DATA_CELL_RENDERER_COMBO_TYPE, MgDataCellRendererComboClass))
#define IS_MG_DATA_CELL_RENDERER_COMBO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MG_DATA_CELL_RENDERER_COMBO_TYPE))
#define IS_MG_DATA_CELL_RENDERER_COMBO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MG_DATA_CELL_RENDERER_COMBO_TYPE))
#define MG_DATA_CELL_RENDERER_COMBO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MG_DATA_CELL_RENDERER_COMBO_TYPE, MgDataCellRendererComboClass))
typedef struct _MgDataCellRendererCombo MgDataCellRendererCombo;
typedef struct _MgDataCellRendererComboClass MgDataCellRendererComboClass;
typedef struct _MgDataCellRendererComboPrivate MgDataCellRendererComboPrivate;
struct _MgDataCellRendererCombo
{
GtkCellRendererText parent;
MgDataCellRendererComboPrivate *priv;
};
struct _MgDataCellRendererComboClass
{
GtkCellRendererTextClass parent_class;
void (* changed) (MgDataCellRendererCombo *cell_renderer_combo,
const gchar *path,
const GdaValue *new_value); /* returns a value of type GDA_VALUE_TYPE_LIST */
};
GType mg_data_cell_renderer_combo_get_type (void);
GtkCellRenderer *mg_data_cell_renderer_combo_new (MgConf *conf, MgContext *context, MgContextNode *node);
GdaValue *mg_data_cell_renderer_combo_get_first_value_available (MgDataCellRendererCombo *datacell);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __MG_DATA_CELL_RENDERER_COMBO_H__ */
|