| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 'atomic component';
- var fd = new Atomic.UIFontDescription();
- fd.id = "Vera";
- fd.size = 22;
- function createButton(self, text, event, layout) {
- var button = new Atomic.UIButton();
- button.text = text;
- button.fontDescription = fd;
- button.gravity = Atomic.UI_GRAVITY_RIGHT;
- button.onClick = function() {
- self.sendEvent(event);
- }
- layout.addChild(button);
- }
- exports.component = function(self) {
-
- // root view
- self.uiView = new Atomic.UIView();
- var layout = new Atomic.UILayout();
- layout.rect = self.uiView.rect;
- layout.axis = Atomic.UI_AXIS_Y;
- layout.layoutPosition = Atomic.UI_LAYOUT_POSITION_GRAVITY;
- self.uiView.addChild(layout);
- createButton(self, "Play Hearts", "PlayHearts", layout);
- createButton(self, "Play Snow", "PlaySnow", layout);
- createButton(self, "Play Spark", "PlaySpark", layout);
- }
|