[wip] only provide 2 functions: listeners_{init, remove}

This commit is contained in:
Consolatis 2023-05-04 18:28:01 +02:00
parent 7a2ea5b54c
commit c15ab4e88f
4 changed files with 62 additions and 60 deletions

View file

@ -38,10 +38,8 @@ struct view_impl {
void (*maximize)(struct view *view, bool maximize);
void (*move_to_front)(struct view *view);
void (*move_to_back)(struct view *view);
void (*setup_common_listeners)(struct view *view);
void (*setup_specific_listeners)(struct view *view);
void (*remove_common_listeners)(struct view *view);
void (*remove_specific_listeners)(struct view *view);
void (*listeners_init)(struct view *view);
void (*listeners_remove)(struct view *view);
};
struct view {