1
0
mirror of https://github.com/s00500/ESPUI.git synced 2024-11-22 04:00:55 +00:00

Reordered arguments of ESPUIClass::addControl

The arguments value, color and callback have defaults
This commit is contained in:
Christian Riggenbach 2019-03-03 21:50:06 +01:00
parent 37ce571b9c
commit a4989b4eb0
2 changed files with 19 additions and 18 deletions

View File

@ -359,12 +359,13 @@ void onWsEvent( AsyncWebSocket* server, AsyncWebSocketClient* client,
}
int ESPUIClass::addControl( ControlType type, const char* label,
void ( *callback )( Control, int ),
String value, ControlColor color ) {
String value, ControlColor color,
void ( *callback )( Control, int ) ) {
if ( this->getControl( label ) != nullptr ) {
if ( this->verbosity ) {
Serial.println( "UI ERROR: Element " + String( label ) +
" exists, skipping creating element!" );}
" exists, skipping creating element!" );
}
return -1;
}
@ -387,47 +388,47 @@ int ESPUIClass::addControl( ControlType type, const char* label,
}
int ESPUIClass::label( const char* label, ControlColor color, String value ) {
return addControl( ControlType::Label, label, nullptr, value, color );
return addControl( ControlType::Label, label, value, color );
}
int ESPUIClass::graph( const char* label, ControlColor color ) {
return addControl( ControlType::Graph, label, nullptr, "", color );
return addControl( ControlType::Graph, label, "", color );
}
// TODO: this still needs a range setting
int ESPUIClass::slider( const char* label, void ( *callback )( Control, int ),
ControlColor color, String value ) {
return addControl( ControlType::Button, label, callback, "", color );
return addControl( ControlType::Button, label, "", color, callback );
}
int ESPUIClass::button( const char* label, void ( *callback )( Control, int ),
ControlColor color, String value ) {
return addControl( ControlType::Button, label, callback, value, color );
return addControl( ControlType::Button, label, value, color, callback );
}
int ESPUIClass::switcher( const char* label, bool startState,
void ( *callback )( Control, int ), ControlColor color ) {
return addControl( ControlType::Switcher, label, callback, "", color );
return addControl( ControlType::Switcher, label, "", color, callback );
}
int ESPUIClass::pad( const char* label, bool center,
void ( *callback )( Control, int ), ControlColor color ) {
if ( center ) {
return addControl( ControlType::Cpad, label, callback, "", color );
return addControl( ControlType::Cpad, label, "", color, callback );
} else {
return addControl( ControlType::Pad, label, callback, "", color );
return addControl( ControlType::Pad, label, "", color, callback );
}
}
// TODO: min and max need to be saved, they also need to be sent to the frontend
int ESPUIClass::number( const char* label, void ( *callback )( Control, int ),
ControlColor color, int number, int min, int max ) {
return addControl( ControlType::Number, label, callback, String( number ), color );
return addControl( ControlType::Number, label, String( number ), color, callback );
}
int ESPUIClass::text( const char* label, void ( *callback )( Control, int ),
ControlColor color, String value ) {
return addControl( ControlType::Text, label, callback, value, color );
return addControl( ControlType::Text, label, value, color, callback );
}

View File

@ -173,8 +173,8 @@ class ESPUIClass {
// Creating Elements
int addControl( ControlType type, const char* label,
void ( *callback )( Control, int ),
String value, ControlColor color );
String value = String( "" ), ControlColor color = ControlColor::Turquoise,
void ( *callback )( Control, int ) = nullptr );
int button( const char* label,
void ( *callback )( Control, int ), ControlColor color,