semilimes mcu sdk 0.1
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
fc_time_picker.h
1#ifndef _fc_time_picker_
2#define _fc_time_picker_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char** pjson;
11
12public:
13// Function: FcTimePicker
14
15// A graphical time-picker to select a date from a calendar
16
17// Prototype:
18// void FcTimePicker(char* json);
19
20// Parameters:
22
23// Returns:
25 FcTimePicker(char* json)
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: FcTimePicker.setObj
32
33// A graphical time-picker to select a date from a calendar
34
35// Prototype:
36// void FcTimePicker::setObj(char* refname,char* title,bool reqSel, char* value,char* actBtnTitle);
37
38// Parameters:
44
45// Returns:
47 void setObj(char* refname,char* title,bool reqSel, char* value,char* actBtnTitle);
48};
49
50#endif
Definition fc_time_picker.h:7
void setObj(char *refname, char *title, bool reqSel, char *value, char *actBtnTitle)
Definition fc_time_picker.cpp:20
FcTimePicker(char *json)
Definition fc_time_picker.h:25