Interface
IdeCompletionDisplay
Prerequisite
In order to implement CompletionDisplay, your type must inherit fromGtkWidget
.
Interface structure
struct IdeCompletionDisplayInterface {
GTypeInterface parent_iface;
void (* set_context) (
IdeCompletionDisplay* self,
IdeCompletionContext* context
);
gboolean (* key_press_event) (
IdeCompletionDisplay* self,
const GdkEventKey* key
);
void (* attach) (
IdeCompletionDisplay* self,
GtkSourceView* view
);
void (* set_font_desc) (
IdeCompletionDisplay* self,
const PangoFontDescription* font_desc
);
void (* set_n_rows) (
IdeCompletionDisplay* self,
guint n_rows
);
void (* move_cursor) (
IdeCompletionDisplay* self,
GtkMovementStep step,
gint count
);
}
No description available.
Interface members
parent_iface |
|
No description available. | |
set_context |
|
No description available. | |
key_press_event |
|
No description available. | |
attach |
|
No description available. | |
set_font_desc |
|
No description available. | |
set_n_rows |
|
No description available. | |
move_cursor |
|
No description available. |