Introduced a Screen (sub) module and divided app into multiple screens.

This commit is contained in:
t-moe
2015-04-27 23:37:54 +02:00
parent b300ac5890
commit cf72baaa3a
11 changed files with 541 additions and 272 deletions

View File

@@ -1,3 +1,9 @@
#ifndef BUTTON_H
#define BUTTON_H
#include "touch.h"
typedef void (*BUTTON_CALLBACK)(void *button); //!< Function pointer used...
typedef struct {
@@ -31,5 +37,8 @@ void gui_button_redraw(BUTTON_STRUCT* button);
bool guiAddBitmapButton(BITMAPBUTTON_STRUCT* button);
void guiRemoveBitmapButton(BITMAPBUTTON_STRUCT* button);
void guiRedrawBitmapButton(BITMAPBUTTON_STRUCT* button);
*/
#endif /* BUTTON_H */