| Top |
GeditViewActivatable is an interface which should be implemented by extensions that should be activated on a GeditView.
void
gedit_view_activatable_activate (GeditViewActivatable *activatable);
Activates the extension on the GeditView.
void
gedit_view_activatable_deactivate (GeditViewActivatable *activatable);
Deactivates the extension from the GeditView.
struct GeditViewActivatableInterface {
GTypeInterface parent_interface;
void (*activate) (GeditViewActivatable *activatable);
void (*deactivate) (GeditViewActivatable *activatable);
};
The virtual function table for GeditViewActivatable.
GTypeInterface |
The parent interface. |
|
The virtual function pointer for
|
||
The virtual function pointer for
|