SkkCandidateList

SkkCandidateList — Base abstract class of candidate list.

Types and Values

Description

Functions

Types and Values

SKK_TYPE_CANDIDATE_LIST

#define SKK_TYPE_CANDIDATE_LIST (skk_candidate_list_get_type ())

The type for SkkCandidateList.


struct SkkCandidateList

struct SkkCandidateList {
	GObject parent_instance;
	SkkCandidateListPrivate * priv;
};

Base abstract class of candidate list.


struct SkkCandidateListClass

struct SkkCandidateListClass {
	GObjectClass parent_class;
	SkkCandidate* (*get) (SkkCandidateList* self, gint index);
	void (*clear) (SkkCandidateList* self);
	void (*add_candidates) (SkkCandidateList* self, SkkCandidate** array, gint array_length1);
	void (*add_candidates_end) (SkkCandidateList* self);
	gboolean (*cursor_up) (SkkCandidateList* self);
	gboolean (*cursor_down) (SkkCandidateList* self);
	gboolean (*page_up) (SkkCandidateList* self);
	gboolean (*page_down) (SkkCandidateList* self);
	gboolean (*next) (SkkCandidateList* self);
	gboolean (*previous) (SkkCandidateList* self);
	gboolean (*select_at) (SkkCandidateList* self, guint index_in_page);
	void (*select) (SkkCandidateList* self);
	gint (*get_cursor_pos) (SkkCandidateList* self);
	gint (*get_size) (SkkCandidateList* self);
	guint (*get_page_start) (SkkCandidateList* self);
	void (*set_page_start) (SkkCandidateList* self, guint value);
	guint (*get_page_size) (SkkCandidateList* self);
	void (*set_page_size) (SkkCandidateList* self, guint value);
	gboolean (*get_page_visible) (SkkCandidateList* self);
};

The class structure for SKK_TYPE_CANDIDATE_LIST. All the fields in this structure are private and should never be accessed directly.

Members

get ()

   

clear ()

   

add_candidates ()

   

add_candidates_end ()

   

cursor_up ()

virtual method called by skk_candidate_list_cursor_up()

 

cursor_down ()

virtual method called by skk_candidate_list_cursor_down()

 

page_up ()

virtual method called by skk_candidate_list_page_up()

 

page_down ()

virtual method called by skk_candidate_list_page_down()

 

next ()

virtual method called by skk_candidate_list_next()

 

previous ()

virtual method called by skk_candidate_list_previous()

 

select_at ()

virtual method called by skk_candidate_list_select_at()

 

select ()

virtual method called by skk_candidate_list_select()

 

get_cursor_pos ()

getter method for the abstract property "cursor-pos"

 

get_size ()

getter method for the abstract property "size"

 

get_page_start ()

getter method for the abstract property "page-start"

 

set_page_start ()

setter method for the abstract property "page-start"

 

get_page_size ()

getter method for the abstract property "page-size"

 

set_page_size ()

setter method for the abstract property "page-size"

 

get_page_visible ()

getter method for the abstract property "page-visible"