mirror of https://github.com/axmolengine/axmol.git
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
//
|
|
// Bug-458 test case by nedrafehi
|
|
// http://code.google.com/p/cocos2d-iphone/issues/detail?id=458
|
|
//
|
|
|
|
#include "Bug-458.h"
|
|
#include "QuestionContainerSprite.h"
|
|
|
|
bool Bug458Layer::init()
|
|
{
|
|
if(BugsTestBaseLayer::init())
|
|
{
|
|
// ask director the the window size
|
|
auto size = Director::getInstance()->getWinSize();
|
|
|
|
auto question = new QuestionContainerSprite();
|
|
auto question2 = new QuestionContainerSprite();
|
|
question->init();
|
|
question2->init();
|
|
|
|
// [question setContentSize:CGSizeMake(50,50)];
|
|
// [question2 setContentSize:CGSizeMake(50,50)];
|
|
|
|
auto sprite = MenuItemSprite::create(question2, question, CC_CALLBACK_1(Bug458Layer::selectAnswer, this) );
|
|
auto layer = LayerColor::create(Color4B(0,0,255,255), 100, 100);
|
|
question->release();
|
|
question2->release();
|
|
|
|
auto layer2 = LayerColor::create(Color4B(255,0,0,255), 100, 100);
|
|
auto sprite2 = MenuItemSprite::create(layer, layer2, CC_CALLBACK_1(Bug458Layer::selectAnswer, this) );
|
|
auto menu = Menu::create(sprite, sprite2, NULL);
|
|
menu->alignItemsVerticallyWithPadding(100);
|
|
menu->setPosition(Point(size.width / 2, size.height / 2));
|
|
|
|
// add the label as a child to this Layer
|
|
addChild(menu);
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void Bug458Layer::selectAnswer(Ref* sender)
|
|
{
|
|
log("Selected");
|
|
}
|