mirror of https://github.com/axmolengine/axmol.git
122 lines
3.5 KiB
C++
122 lines
3.5 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
****************************************************************************/
|
|
|
|
#include "CocosGUI.h"
|
|
|
|
namespace gui {
|
|
|
|
UIWidget* UIHelper::seekWidgetByTag(UIWidget* root, int tag)
|
|
{
|
|
if (!root)
|
|
{
|
|
return nullptr;
|
|
}
|
|
if (root->getTag() == tag)
|
|
{
|
|
return root;
|
|
}
|
|
cocos2d::ccArray* arrayRootChildren = root->getChildren()->data;
|
|
int length = arrayRootChildren->num;
|
|
for (int i=0;i<length;i++)
|
|
{
|
|
UIWidget* child = (UIWidget*)(arrayRootChildren->arr[i]);
|
|
UIWidget* res = seekWidgetByTag(child,tag);
|
|
if (res != nullptr)
|
|
{
|
|
return res;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
UIWidget* UIHelper::seekWidgetByName(UIWidget* root, const char *name)
|
|
{
|
|
if (!root)
|
|
{
|
|
return nullptr;
|
|
}
|
|
if (strcmp(root->getName(), name) == 0)
|
|
{
|
|
return root;
|
|
}
|
|
cocos2d::ccArray* arrayRootChildren = root->getChildren()->data;
|
|
int length = arrayRootChildren->num;
|
|
for (int i=0;i<length;i++)
|
|
{
|
|
UIWidget* child = (UIWidget*)(arrayRootChildren->arr[i]);
|
|
UIWidget* res = seekWidgetByName(child,name);
|
|
if (res != nullptr)
|
|
{
|
|
return res;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
UIWidget* UIHelper::seekWidgetByRelativeName(UIWidget *root, const char *name)
|
|
{
|
|
if (!root)
|
|
{
|
|
return nullptr;
|
|
}
|
|
cocos2d::ccArray* arrayRootChildren = root->getChildren()->data;
|
|
int length = arrayRootChildren->num;
|
|
for (int i=0;i<length;i++)
|
|
{
|
|
UIWidget* child = (UIWidget*)(arrayRootChildren->arr[i]);
|
|
UIRelativeLayoutParameter* layoutParameter = dynamic_cast<UIRelativeLayoutParameter*>(child->getLayoutParameter(LAYOUT_PARAMETER_RELATIVE));
|
|
if (layoutParameter && strcmp(layoutParameter->getRelativeName(), name) == 0)
|
|
{
|
|
return child;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
/*temp action*/
|
|
UIWidget* UIHelper::seekActionWidgetByActionTag(UIWidget* root, int tag)
|
|
{
|
|
if (!root)
|
|
{
|
|
return nullptr;
|
|
}
|
|
if (root->getActionTag() == tag)
|
|
{
|
|
return root;
|
|
}
|
|
cocos2d::ccArray* arrayRootChildren = root->getChildren()->data;
|
|
int length = arrayRootChildren->num;
|
|
for (int i=0;i<length;i++)
|
|
{
|
|
UIWidget* child = (UIWidget*)(arrayRootChildren->arr[i]);
|
|
UIWidget* res = seekActionWidgetByActionTag(child,tag);
|
|
if (res != nullptr)
|
|
{
|
|
return res;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
} |