Sophie

Sophie

distrib > PLD > ra > i686 > by-pkgid > dcddc2498c6090d6324872243a403571 > files > 24

ToutDoux-devel-1.2.6-7.i686.rpm

/*****************************************************************************/
/* td_field.h : Objet Gtk+
 * td_field.h : Gtk+ object
 *
 *
 * ToutDoux : Chtit gestionnaire de projet - A littl' project manager
 * Copyright (c) 2000-2001 Philippe Roy
 * Auteur - Author : Philippe Roy <ph_roy@toutdoux.org>
 *
 *
 * Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le modifier
 * sous les termes de la licence publique générale GNU telle qu'elle est publiée par
 * la Free Software Foundation ; soit la version 2 de la licence, ou
 * (comme vous voulez) toute version ultérieure.
 *
 * Ce programme est distribué dans l'espoir qu'il sera utile,
 * mais SANS AUCUNE GARANTIE ; même sans la garantie de
 * COMMERCIALITÉ ou d'ADÉQUATION A UN BUT PARTICULIER. Voir la
 * licence publique générale GNU pour plus de détails.
 *
 * Vous devriez avoir reçu une copie de la licence publique générale GNU
 * avec ce programme ; si ce n'est pas le cas, écrivez à la Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 *
 * 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. */
/*****************************************************************************/
#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#include <gnome.h>

/*****************************************************************************/
/*** Macros */
/*****************************************************************************/
#define TD_TYPE_FIELD (td_field_get_type ())
#define TD_FIELD(obj) (GTK_CHECK_CAST ((obj), TD_TYPE_FIELD, TdField))
#define TD_FIELD_CLASS(klass) (GTK_CHECK_CLASS_CASTS ((klass), TD_TYPE_FIELD, TdFieldClass))
#define TD_IS_FIELD(obj) (GTK_CHECK_TYPE ((obj), TD_TYPE_FIELD))
#define TD_IS_FIELD_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TD_TYPE_FIELD))

/*****************************************************************************/
/*** Structure */
/*****************************************************************************/
typedef struct _TdField TdField;
typedef struct _TdFieldClass TdFieldClass;

struct _TdField
{
  /*< public >*/
  GtkObject object;
  gchar *name; /*** Nom - Name */
  gchar *name_intl; /*** Nom international - International name */
  gchar *type; /*** Type */
};

struct _TdFieldClass
{
  GtkObjectClass parent_class;
};

/*****************************************************************************/
/*** Arguments */
/*****************************************************************************/
static void td_field_set_name (TdField *field, gchar *name);
static void td_field_set_name_intl (TdField *field, gchar *name_intl);
static void td_field_set_type (TdField *field, gchar *type);
static void td_field_set_arg (GtkObject *object, GtkArg *arg, guint arg_id);
static void td_field_get_arg (GtkObject *object, GtkArg *arg, guint arg_id);

/*****************************************************************************/
/*** Initialisation */
/*****************************************************************************/
static void td_field_init (TdField *field);
static void td_field_class_init (TdFieldClass *klass);
GtkType td_field_get_type (void);
GtkObject *td_field_new (void);