| 27 | } |
| 28 | |
| 29 | class DropDownLayer : public ax::LayerColor { |
| 30 | protected: |
| 31 | virtual bool init(ax::Node* scrollLayer, const char* label); |
| 32 | virtual void customSetup() {}; |
| 33 | MenuItemSpriteExtra *_backBtn; |
| 34 | public: |
| 35 | ax::Layer* _dropLayer; |
| 36 | |
| 37 | static DropDownLayer* create(ax::Node* scrollLayer, const char* label); |
| 38 | void showLayer(bool attachToScene = true, bool bounce = false); |
| 39 | void hideLayer(); |
| 40 | virtual void hideBackButton(); |
| 41 | void keyBackClicked(); |
| 42 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected