Class

CamelIndex

Description

class Camel.Index : GObject.Object {
  parent: GObject,
  priv: CamelIndexPrivate*,
  path: gchar*,
  version: guint32,
  flags: guint32,
  state: guint32,
  normalize: CamelIndexNorm,
  normalize_data: gpointer
}
No description available.

Ancestors

Descendants

Instance methods

camel_index_add_name
No description available.

camel_index_compress
No description available.

camel_index_construct
No description available.

camel_index_delete
No description available.

camel_index_delete_name

Deletes the given name from index.

camel_index_find
No description available.

camel_index_find_name
No description available.

camel_index_has_name
No description available.

camel_index_rename
No description available.

camel_index_set_normalize
No description available.

since: 2.32

camel_index_sync
No description available.

camel_index_words
No description available.

camel_index_write_name
No description available.

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Signals

Signals inherited from GObject (1)
GObject::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct CamelIndexClass {
  GObjectClass parent_class;
  gint (* sync) (
    CamelIndex* index
  );
  gint (* compress) (
    CamelIndex* index
  );
  gint (* delete_) (
    CamelIndex* index
  );
  gint (* rename) (
    CamelIndex* index,
    const gchar* path
  );
  gint (* has_name) (
    CamelIndex* index,
    const gchar* name
  );
  CamelIndexName* (* add_name) (
    CamelIndex* index,
    const gchar* name
  );
  gint (* write_name) (
    CamelIndex* index,
    CamelIndexName* idn
  );
  CamelIndexCursor* (* find_name) (
    CamelIndex* index,
    const gchar* name
  );
  void (* delete_name) (
    CamelIndex* index,
    const gchar* name
  );
  CamelIndexCursor* (* find) (
    CamelIndex* index,
    const gchar* word
  );
  CamelIndexCursor* (* words) (
    CamelIndex* index
  );
  
}
No description available.
Class members
parent_class: GObjectClass
No description available.
sync: gint (* sync) ( CamelIndex* index )
No description available.
compress: gint (* compress) ( CamelIndex* index )
No description available.
delete_: gint (* delete_) ( CamelIndex* index )
No description available.
rename: gint (* rename) ( CamelIndex* index, const gchar* path )
No description available.
has_name: gint (* has_name) ( CamelIndex* index, const gchar* name )
No description available.
add_name: CamelIndexName* (* add_name) ( CamelIndex* index, const gchar* name )
No description available.
write_name: gint (* write_name) ( CamelIndex* index, CamelIndexName* idn )
No description available.
find_name: CamelIndexCursor* (* find_name) ( CamelIndex* index, const gchar* name )
No description available.
delete_name: void (* delete_name) ( CamelIndex* index, const gchar* name )
No description available.
find: CamelIndexCursor* (* find) ( CamelIndex* index, const gchar* word )
No description available.
words: CamelIndexCursor* (* words) ( CamelIndex* index )
No description available.

Virtual methods

Camel.IndexClass.add_name
No description available.

Camel.IndexClass.compress
No description available.

Camel.IndexClass.delete_
No description available.

Camel.IndexClass.delete_name

Deletes the given name from index.

Camel.IndexClass.find
No description available.

Camel.IndexClass.find_name
No description available.

Camel.IndexClass.has_name
No description available.

Camel.IndexClass.rename
No description available.

Camel.IndexClass.sync
No description available.

Camel.IndexClass.words
No description available.

Camel.IndexClass.write_name
No description available.