Added new toolbar in main menu

This commit is contained in:
klockee 2020-08-05 01:03:51 -04:00
parent bf2a04ab57
commit 9c9021f63b
7 changed files with 174 additions and 5 deletions

View file

@ -1046,6 +1046,16 @@ bool NewButton::on_touch(const TouchEvent event) {
return false;
}
}
/* DateTimeButton ********************************************************/
DateTimeButton::DateTimeButton(
Rect parent_rect,
std::string text
) : Button { parent_rect , text_}
{
set_focusable(true);
}
/* Image *****************************************************************/