|
@@ -11,6 +11,7 @@
|
|
|
#include "Label.h"
|
|
#include "Label.h"
|
|
|
#include "Node.h"
|
|
#include "Node.h"
|
|
|
#include "Ref.h"
|
|
#include "Ref.h"
|
|
|
|
|
+#include "ScriptListener.h"
|
|
|
#include "lua_ControlAlignment.h"
|
|
#include "lua_ControlAlignment.h"
|
|
|
#include "lua_ControlListenerEventType.h"
|
|
#include "lua_ControlListenerEventType.h"
|
|
|
#include "lua_ControlState.h"
|
|
#include "lua_ControlState.h"
|
|
@@ -159,7 +160,7 @@ int lua_CheckBox__gc(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox__gc - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -199,9 +200,24 @@ int lua_CheckBox_addListener(lua_State* state)
|
|
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
|
}
|
|
}
|
|
|
|
|
+ else if ((lua_type(state, 1) == LUA_TUSERDATA) &&
|
|
|
|
|
+ (lua_type(state, 2) == LUA_TSTRING || lua_type(state, 2) == LUA_TNIL) &&
|
|
|
|
|
+ lua_type(state, 3) == LUA_TNUMBER)
|
|
|
|
|
+ {
|
|
|
|
|
+ // Get parameter 1 off the stack.
|
|
|
|
|
+ const char* param1 = ScriptController::getInstance()->getString(2, false);
|
|
|
|
|
+
|
|
|
|
|
+ // Get parameter 2 off the stack.
|
|
|
|
|
+ int param2 = (int)luaL_checkint(state, 3);
|
|
|
|
|
+
|
|
|
|
|
+ CheckBox* instance = getInstance(state);
|
|
|
|
|
+ instance->Button::Control::addListener(param1, param2);
|
|
|
|
|
+
|
|
|
|
|
+ return 0;
|
|
|
|
|
+ }
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_addListener - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -235,7 +251,7 @@ int lua_CheckBox_addRef(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_addRef - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -316,7 +332,7 @@ int lua_CheckBox_createAnimation(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_createAnimation - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -368,7 +384,7 @@ int lua_CheckBox_createAnimation(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_createAnimation - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -428,7 +444,7 @@ int lua_CheckBox_createAnimation(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_createAnimation - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -498,7 +514,7 @@ int lua_CheckBox_createAnimationFromBy(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_createAnimationFromBy - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -568,7 +584,7 @@ int lua_CheckBox_createAnimationFromTo(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_createAnimationFromTo - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -602,7 +618,7 @@ int lua_CheckBox_destroyAnimation(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_destroyAnimation - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -622,7 +638,7 @@ int lua_CheckBox_destroyAnimation(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_destroyAnimation - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -656,7 +672,7 @@ int lua_CheckBox_disable(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_disable - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -690,7 +706,7 @@ int lua_CheckBox_enable(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_enable - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -727,7 +743,7 @@ int lua_CheckBox_getAlignment(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getAlignment - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -773,7 +789,7 @@ int lua_CheckBox_getAnimation(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getAnimation - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -805,7 +821,7 @@ int lua_CheckBox_getAnimation(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getAnimation - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -846,7 +862,7 @@ int lua_CheckBox_getAnimationPropertyComponentCount(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getAnimationPropertyComponentCount - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -888,7 +904,7 @@ int lua_CheckBox_getAnimationPropertyValue(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getAnimationPropertyValue - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -925,7 +941,7 @@ int lua_CheckBox_getAutoHeight(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getAutoHeight - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -962,7 +978,7 @@ int lua_CheckBox_getAutoWidth(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getAutoWidth - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1008,7 +1024,7 @@ int lua_CheckBox_getBorder(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getBorder - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1040,7 +1056,7 @@ int lua_CheckBox_getBorder(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getBorder - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1086,7 +1102,7 @@ int lua_CheckBox_getBounds(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getBounds - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1132,7 +1148,7 @@ int lua_CheckBox_getClip(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getClip - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1178,7 +1194,7 @@ int lua_CheckBox_getClipBounds(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getClipBounds - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1215,7 +1231,7 @@ int lua_CheckBox_getConsumeInputEvents(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getConsumeInputEvents - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1265,7 +1281,7 @@ int lua_CheckBox_getCursorColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getCursorColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1315,7 +1331,7 @@ int lua_CheckBox_getCursorRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getCursorRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1365,7 +1381,7 @@ int lua_CheckBox_getCursorUVs(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getCursorUVs - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1402,7 +1418,7 @@ int lua_CheckBox_getFocusIndex(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getFocusIndex - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1448,7 +1464,7 @@ int lua_CheckBox_getFont(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getFont - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1480,7 +1496,7 @@ int lua_CheckBox_getFont(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getFont - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1517,7 +1533,7 @@ int lua_CheckBox_getFontSize(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getFontSize - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1540,7 +1556,7 @@ int lua_CheckBox_getFontSize(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getFontSize - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1577,7 +1593,7 @@ int lua_CheckBox_getHeight(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getHeight - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1614,7 +1630,7 @@ int lua_CheckBox_getId(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getId - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1668,7 +1684,7 @@ int lua_CheckBox_getImageColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getImageColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1722,7 +1738,7 @@ int lua_CheckBox_getImageRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getImageRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1768,7 +1784,7 @@ int lua_CheckBox_getImageSize(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getImageSize - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1822,7 +1838,7 @@ int lua_CheckBox_getImageUVs(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getImageUVs - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1868,7 +1884,7 @@ int lua_CheckBox_getMargin(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getMargin - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1905,7 +1921,7 @@ int lua_CheckBox_getOpacity(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getOpacity - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1928,7 +1944,7 @@ int lua_CheckBox_getOpacity(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getOpacity - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -1974,7 +1990,7 @@ int lua_CheckBox_getPadding(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getPadding - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2011,7 +2027,7 @@ int lua_CheckBox_getRefCount(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getRefCount - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2057,7 +2073,7 @@ int lua_CheckBox_getSkinColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getSkinColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2089,7 +2105,7 @@ int lua_CheckBox_getSkinColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getSkinColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2135,7 +2151,7 @@ int lua_CheckBox_getSkinRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getSkinRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2167,7 +2183,7 @@ int lua_CheckBox_getSkinRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getSkinRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2204,7 +2220,7 @@ int lua_CheckBox_getState(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getState - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2250,7 +2266,7 @@ int lua_CheckBox_getStyle(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getStyle - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2287,7 +2303,7 @@ int lua_CheckBox_getText(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getText - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2324,7 +2340,7 @@ int lua_CheckBox_getTextAlignment(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getTextAlignment - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2347,7 +2363,7 @@ int lua_CheckBox_getTextAlignment(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getTextAlignment - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2393,7 +2409,7 @@ int lua_CheckBox_getTextColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getTextColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2425,7 +2441,7 @@ int lua_CheckBox_getTextColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getTextColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2462,7 +2478,7 @@ int lua_CheckBox_getTextRightToLeft(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getTextRightToLeft - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2485,7 +2501,7 @@ int lua_CheckBox_getTextRightToLeft(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getTextRightToLeft - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2522,7 +2538,7 @@ int lua_CheckBox_getType(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getType - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2559,7 +2575,7 @@ int lua_CheckBox_getWidth(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getWidth - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2596,7 +2612,7 @@ int lua_CheckBox_getX(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getX - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2633,7 +2649,7 @@ int lua_CheckBox_getY(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getY - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2670,7 +2686,7 @@ int lua_CheckBox_getZIndex(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_getZIndex - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2707,7 +2723,7 @@ int lua_CheckBox_isChecked(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_isChecked - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2744,7 +2760,7 @@ int lua_CheckBox_isContainer(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_isContainer - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2781,7 +2797,7 @@ int lua_CheckBox_isEnabled(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_isEnabled - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2815,7 +2831,7 @@ int lua_CheckBox_release(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_release - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2853,7 +2869,7 @@ int lua_CheckBox_setAlignment(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setAlignment - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2895,7 +2911,7 @@ int lua_CheckBox_setAnimationPropertyValue(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setAnimationPropertyValue - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2923,7 +2939,7 @@ int lua_CheckBox_setAnimationPropertyValue(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setAnimationPropertyValue - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2961,7 +2977,7 @@ int lua_CheckBox_setAutoHeight(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setAutoHeight - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -2999,7 +3015,7 @@ int lua_CheckBox_setAutoWidth(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setAutoWidth - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3049,7 +3065,7 @@ int lua_CheckBox_setBorder(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setBorder - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3085,7 +3101,7 @@ int lua_CheckBox_setBorder(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setBorder - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3123,7 +3139,7 @@ int lua_CheckBox_setBounds(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setBounds - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3161,7 +3177,7 @@ int lua_CheckBox_setChecked(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setChecked - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3199,7 +3215,7 @@ int lua_CheckBox_setConsumeInputEvents(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setConsumeInputEvents - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3241,7 +3257,7 @@ int lua_CheckBox_setCursorColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setCursorColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3283,7 +3299,7 @@ int lua_CheckBox_setCursorRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setCursorRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3321,7 +3337,7 @@ int lua_CheckBox_setFocusIndex(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setFocusIndex - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3359,7 +3375,7 @@ int lua_CheckBox_setFont(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setFont - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3383,7 +3399,7 @@ int lua_CheckBox_setFont(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setFont - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3421,7 +3437,7 @@ int lua_CheckBox_setFontSize(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setFontSize - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3445,7 +3461,7 @@ int lua_CheckBox_setFontSize(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setFontSize - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3487,7 +3503,7 @@ int lua_CheckBox_setImageColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setImageColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3515,7 +3531,7 @@ int lua_CheckBox_setImageColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setImageColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3557,7 +3573,7 @@ int lua_CheckBox_setImageRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setImageRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3585,7 +3601,7 @@ int lua_CheckBox_setImageRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setImageRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3627,7 +3643,7 @@ int lua_CheckBox_setImageSize(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setImageSize - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3677,7 +3693,7 @@ int lua_CheckBox_setMargin(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setMargin - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3715,7 +3731,7 @@ int lua_CheckBox_setOpacity(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setOpacity - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3739,7 +3755,7 @@ int lua_CheckBox_setOpacity(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setOpacity - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3789,7 +3805,7 @@ int lua_CheckBox_setPadding(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setPadding - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3831,7 +3847,7 @@ int lua_CheckBox_setPosition(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setPosition - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3873,7 +3889,7 @@ int lua_CheckBox_setSize(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setSize - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3911,7 +3927,7 @@ int lua_CheckBox_setSkinColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setSkinColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3935,7 +3951,7 @@ int lua_CheckBox_setSkinColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setSkinColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3973,7 +3989,7 @@ int lua_CheckBox_setSkinRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setSkinRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -3997,7 +4013,7 @@ int lua_CheckBox_setSkinRegion(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setSkinRegion - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4035,7 +4051,7 @@ int lua_CheckBox_setState(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setState - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4073,7 +4089,7 @@ int lua_CheckBox_setStyle(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setStyle - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4111,7 +4127,7 @@ int lua_CheckBox_setText(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setText - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4149,7 +4165,7 @@ int lua_CheckBox_setTextAlignment(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setTextAlignment - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4173,7 +4189,7 @@ int lua_CheckBox_setTextAlignment(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setTextAlignment - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4211,7 +4227,7 @@ int lua_CheckBox_setTextColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setTextColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4235,7 +4251,7 @@ int lua_CheckBox_setTextColor(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setTextColor - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4273,7 +4289,7 @@ int lua_CheckBox_setTextRightToLeft(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setTextRightToLeft - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4297,7 +4313,7 @@ int lua_CheckBox_setTextRightToLeft(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setTextRightToLeft - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4335,7 +4351,7 @@ int lua_CheckBox_setZIndex(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_setZIndex - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|
|
@@ -4506,7 +4522,7 @@ int lua_CheckBox_static_create(lua_State* state)
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
- lua_pushstring(state, "Failed to match the given parameters to a valid function signature.");
|
|
|
|
|
|
|
+ lua_pushstring(state, "lua_CheckBox_static_create - Failed to match the given parameters to a valid function signature.");
|
|
|
lua_error(state);
|
|
lua_error(state);
|
|
|
}
|
|
}
|
|
|
break;
|
|
break;
|