#define GUPPI_SEQ_CATEGORICAL0 (obj)
#define GUPPI_IS_SEQ_CATEGORICAL0 (obj)
GuppiData* guppi_seq_categorical_new (void);
GuppiCategory* guppi_seq_categorical_category
(GuppiSeqCategorical *seq);
void guppi_seq_categorical_set_category
(GuppiSeqCategorical *seq,
GuppiCategory *cat);
gboolean guppi_seq_categorical_auto_add (GuppiSeqCategorical *seq);
void guppi_seq_categorical_set_auto_add
(GuppiSeqCategorical *seq,
gboolean x);
const gchar* guppi_seq_categorical_get (GuppiSeqCategorical *seq,
gint i);
gboolean guppi_seq_categorical_set (GuppiSeqCategorical *seq,
gint i,
const gchar *val);
gboolean guppi_seq_categorical_prepend (GuppiSeqCategorical *seq,
const gchar *val);
gboolean guppi_seq_categorical_append (GuppiSeqCategorical *seq,
const gchar *val);
gboolean guppi_seq_categorical_insert (GuppiSeqCategorical *seq,
gint i,
const gchar *val);
gint guppi_seq_categorical_frequency (GuppiSeqCategorical *seq,
const gchar *val);
double guppi_seq_categorical_percentage
(GuppiSeqCategorical *seq,
const gchar *val);
|