add Refactor in fileman app

This commit is contained in:
zxkmmOnHaseeWSL 2023-04-22 17:10:43 +08:00
parent c5738c46d5
commit 4ff71dcfca
2 changed files with 42 additions and 2 deletions

View file

@ -146,6 +146,7 @@ private:
void refresh_widgets(const bool v);
void on_rename(NavigationView& nav);
void on_refactor(NavigationView& nav);
void on_delete();
Labels labels {
@ -158,11 +159,17 @@ private:
};
Button button_rename {
{ 0 * 8, 29 * 8, 14 * 8, 32 },
{ 0 * 8, 29 * 8, 10 * 8, 32 },
"Rename"
};
Button button_refactor{
{ 10 * 8, 29 * 8, 10 * 8, 32 },
"Refactor"
};
Button button_delete {
{ 16 * 8, 29 * 8, 14 * 8, 32 },
{ 20 * 8, 29 * 8, 10 * 8, 32 },
"Delete"
};