}
-static void nbconfig_repolist_move_up(UiEvent *event, void *userdata) {
-
-}
-
-static void nbconfig_repolist_move_down(UiEvent *event, void *userdata) {
-
-}
-
void notebook_config_dialog(void) {
NoteStore *store = note_store_get();
// TODO: check store->root and show different dialog, when root is missing
ui_hbox(obj) {
ui_button(obj, .icon = UI_ICON_NEW_FOLDER, .onclick = nbconfig_repolist_add);
ui_button(obj, .icon = UI_ICON_DELETE, .onclick = nbconfig_repolist_delete);
- ui_button(obj, .icon = UI_ICON_GO_UP, .onclick = nbconfig_repolist_move_up);
- ui_button(obj, .icon = UI_ICON_GO_DOWN, .onclick = nbconfig_repolist_move_down);
}
}