2000-07-09 Christopher James Lahey <clahey@helixcode.com> * gui/component/addressbook.c: Removed unused do_nothing_cb function. * gui/component/select-names/e-select-names-manager.c, gui/component/select-names/e-select-names-manager.h: Made the OK and Cancel buttons in the ESelectNames dialog we create work properly. * gui/component/select-names/e-select-names-model.c, gui/component/select-names/e-select-names-model.h: Added e_select_names_model_duplicate. * gui/component/select-names/e-select-names-text-model.c: Made the text be set correctly if there's already data in the source when the text model is created. * gui/component/select-names/e-select-names.c, gui/component/select-names/e-select-names.h: Removed handling of the buttons (the user of this dialog will have to handle them.) Added e_select_names_get_source. Fixed some typos. svn path=/trunk/; revision=4007
94 lines
3.4 KiB
C
94 lines
3.4 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* Authors:
|
|
* Chris Lahey <clahey@helixcode.com>
|
|
*
|
|
* Copyright (C) 2000 Helix Code, Inc.
|
|
*/
|
|
|
|
#ifndef __E_SELECT_NAMES_MODEL_H__
|
|
#define __E_SELECT_NAMES_MODEL_H__
|
|
|
|
#include <time.h>
|
|
#include <gtk/gtk.h>
|
|
#include <stdio.h>
|
|
#include <e-util/e-list.h>
|
|
#include <addressbook/backend/ebook/e-card.h>
|
|
|
|
#define E_TYPE_SELECT_NAMES_MODEL (e_select_names_model_get_type ())
|
|
#define E_SELECT_NAMES_MODEL(obj) (GTK_CHECK_CAST ((obj), E_TYPE_SELECT_NAMES_MODEL, ESelectNamesModel))
|
|
#define E_SELECT_NAMES_MODEL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_SELECT_NAMES_MODEL, ESelectNamesModelClass))
|
|
#define E_IS_SELECT_NAMES_MODEL(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_SELECT_NAMES_MODEL))
|
|
#define E_IS_SELECT_NAMES_MODEL_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), E_TYPE_SELECT_NAMES_MODEL))
|
|
|
|
typedef enum _ESelectNamesModelDataType ESelectNamesModelDataType;
|
|
typedef struct _ESelectNamesModelData ESelectNamesModelData;
|
|
typedef struct _ESelectNamesModel ESelectNamesModel;
|
|
typedef struct _ESelectNamesModelClass ESelectNamesModelClass;
|
|
|
|
enum _ESelectNamesModelDataType {
|
|
E_SELECT_NAMES_MODEL_DATA_TYPE_CARD,
|
|
E_SELECT_NAMES_MODEL_DATA_TYPE_STRING_ADDRESS,
|
|
};
|
|
|
|
struct _ESelectNamesModelData {
|
|
ESelectNamesModelDataType type;
|
|
ECard *card;
|
|
char *string;
|
|
};
|
|
|
|
struct _ESelectNamesModel {
|
|
GtkObject object;
|
|
|
|
char *id;
|
|
char *title;
|
|
|
|
EList *data; /* Of type ESelectNamesModelData. */
|
|
};
|
|
|
|
struct _ESelectNamesModelClass {
|
|
GtkObjectClass parent_class;
|
|
|
|
void (*changed) (ESelectNamesModel *model);
|
|
};
|
|
|
|
ESelectNamesModel *e_select_names_model_new (void);
|
|
ESelectNamesModel *e_select_names_model_duplicate (ESelectNamesModel *old);
|
|
|
|
/* These lengths are allowed to go over objects and act just like the text model does. */
|
|
void e_select_names_model_insert (ESelectNamesModel *model,
|
|
EIterator *iterator, /* Must be one of the iterators in the model. */
|
|
int index,
|
|
char *data);
|
|
void e_select_names_model_insert_length (ESelectNamesModel *model,
|
|
EIterator *iterator, /* Must be one of the iterators in the model. */
|
|
int index,
|
|
char *data,
|
|
int length);
|
|
void e_select_names_model_delete (ESelectNamesModel *model,
|
|
EIterator *iterator, /* Must be one of the iterators in the model. */
|
|
int index,
|
|
int length);
|
|
void e_select_names_model_replace (ESelectNamesModel *model,
|
|
EIterator *iterator, /* Must be one of the iterators in the model. */
|
|
int index,
|
|
int replacement_length,
|
|
char *data);
|
|
|
|
void e_select_names_model_add_item (ESelectNamesModel *model,
|
|
EIterator *iterator, /* NULL for at the beginning. */
|
|
ESelectNamesModelData *data);
|
|
void e_select_names_model_remove_item (ESelectNamesModel *model,
|
|
EIterator *iterator);
|
|
|
|
/* Of type ECard */
|
|
EList *e_select_names_model_get_cards (ESelectNamesModel *model);
|
|
|
|
/* Of type ESelectNamesModelData */
|
|
EList *e_select_names_model_get_data (ESelectNamesModel *model);
|
|
|
|
/* Standard Gtk function */
|
|
GtkType e_select_names_model_get_type (void);
|
|
|
|
#endif /* ! __E_SELECT_NAMES_MODEL_H__ */
|