| 76 | PageViewIndicator::~PageViewIndicator() {} |
| 77 | |
| 78 | bool PageViewIndicator::init() |
| 79 | { |
| 80 | _currentIndexNode = utils::createSpriteFromBase64Cached(CIRCLE_IMAGE, CIRCLE_IMAGE_KEY); |
| 81 | _currentIndexNode->setVisible(false); |
| 82 | addProtectedChild(_currentIndexNode, 1); |
| 83 | return true; |
| 84 | } |
| 85 | |
| 86 | void PageViewIndicator::setDirection(PageView::Direction direction) |
| 87 | { |
no test coverage detected