#ifndef __TUI_KEYPAD_H__
#define __TUI_KEYPAD_H__

#include "stdint.h"
#include "TuiControl.h"

#define CONTROL_KEYPAD_LINE_COUNT 3
#define CONTROL_KEYPAD_COLUMN_COUNT 10
#define CONTROL_KEYPAD_BUTTON_COUNT	27

Control* initKeypad(Control* control, Location loc);
void addKeypad(Control *control);
void drawKeypad(Control *control);
EControlState getKeypadControlState();
ResponseControl executeButtonKeypad(Control *control);

#endif // __TUI_KEYPAD_H__
