semilimes mcu sdk 0.1
semilimes Software Development Kit for microcontrollers
Loading...
Searching...
No Matches
fc_text_box.h
1#ifndef _fc_text_box_
2#define _fc_text_box_
3
4#include "../defines.h"
5
7{
8private:
9 SmeJson json_data;
10 char** pjson;
11
12public:
13// Function: FcTextBox
14
15// A text field with a title and a user-editable text field.
16
17// Prototype:
18// void FcTextBox(char* json);
19
20// Parameters:
22
23// Returns:
25 FcTextBox(char* json)
26 {
27 pjson = &json;
28 json_data.initJson(*pjson);
29 }
30
31// Function: FcTextBox.setObj
32
33// A text field with a title and a user-editable text field.
34
35// Prototype:
36// void FcTextBox::setObj(char* refname,char* title,char* value,bool reqSel);
37
38// Parameters:
43
44// Returns:
46 void setObj(char* refname,char* title,char* value,bool reqSel=false);
47};
48
49#endif
Definition fc_text_box.h:7
FcTextBox(char *json)
Definition fc_text_box.h:25
void setObj(char *refname, char *title, char *value, bool reqSel=false)
Definition fc_text_box.cpp:19