update key controller router, init navigation methods

This commit is contained in:
yggverse 2025-03-10 23:53:25 +02:00
parent 0948a6c93a
commit b716fb1f78
2 changed files with 51 additions and 16 deletions

View file

@ -169,4 +169,21 @@ impl Suggestion {
pub fn hide(&self) {
self.popover.popdown()
}
pub fn to_back(&self) -> bool {
false // @TODO
}
pub fn to_next(&self) -> bool {
false // @TODO
}
// Getters
pub fn is_visible(&self) -> bool {
self.popover.is_visible()
}
/*pub fn total(&self) -> u32 {
self.list_store.n_items()
}*/
}