| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- class SelectionPrefabWidget extends Atomic.UILayout {
- widgetLayout: Atomic.UILayout;
- noticeLayout: Atomic.UILayout;
- constructor() {
- super();
- var fd = new Atomic.UIFontDescription();
- fd.id = "Vera";
- fd.size = 11;
- var widgetLayout = this.widgetLayout = new Atomic.UILayout();
- var noticeLayout = this.noticeLayout = new Atomic.UILayout();
- this.axis = Atomic.UI_AXIS_Y;
- widgetLayout.layoutDistribution = Atomic.UI_LAYOUT_DISTRIBUTION_GRAVITY;
- noticeLayout.layoutDistribution = Atomic.UI_LAYOUT_DISTRIBUTION_GRAVITY;
- var name = new Atomic.UITextField();
- name.textAlign = Atomic.UI_TEXT_ALIGN_LEFT;
- name.skinBg = "InspectorTextAttrName";
- name.text = "Prefab"
- name.fontDescription = fd;
- var saveButton = new Atomic.UIButton();
- saveButton.text = "Save";
- saveButton.fontDescription = fd;
- saveButton.onClick = () => {
- this.sendEvent("SelectionPrefabSave");
- return true;
- }
- var undoButton = new Atomic.UIButton();
- undoButton.text = "Undo";
- undoButton.fontDescription = fd;
- undoButton.onClick = () => {
- this.sendEvent("SelectionPrefabUndo");
- return true;
- }
- var breakButton = new Atomic.UIButton();
- breakButton.text = "Break";
- breakButton.fontDescription = fd;
- breakButton.onClick = () => {
- this.sendEvent("SelectionPrefabBreak");
- return true;
- }
- var noticeName = new Atomic.UITextField();
- noticeName.textAlign = Atomic.UI_TEXT_ALIGN_LEFT;
- noticeName.skinBg = "InspectorTextAttrName";
- noticeName.text = "Prefab"
- noticeName.fontDescription = fd;
- var noticeText = new Atomic.UITextField();
- noticeText.textAlign = Atomic.UI_TEXT_ALIGN_LEFT;
- noticeText.skinBg = "InspectorTextAttrName";
- noticeText.text = "Multiple Selection"
- noticeText.fontDescription = fd;
- noticeLayout.addChild(noticeName);
- noticeLayout.addChild(noticeText);
- widgetLayout.addChild(name);
- widgetLayout.addChild(saveButton);
- widgetLayout.addChild(undoButton);
- widgetLayout.addChild(breakButton);
- this.addChild(this.widgetLayout);
- this.addChild(this.noticeLayout);
- this.visibility = Atomic.UI_WIDGET_VISIBILITY_GONE;
- }
- detectPrefab(node: Atomic.Node): boolean {
- if (node.getComponent("PrefabComponent"))
- return true;
- if (node.parent)
- return this.detectPrefab(node.parent);
- return false;
- }
- updateSelection(nodes: Atomic.Node[]) {
- var hasPrefab = false;
- for (var i in nodes) {
- var node = nodes[i];
- if (this.detectPrefab(node)) {
- hasPrefab = true;
- break;
- }
- }
- if (!hasPrefab) {
- this.visibility = Atomic.UI_WIDGET_VISIBILITY_GONE;
- return;
- }
- this.visibility = Atomic.UI_WIDGET_VISIBILITY_VISIBLE;
- if (nodes.length > 1) {
- this.noticeLayout.visibility = Atomic.UI_WIDGET_VISIBILITY_VISIBLE;
- this.widgetLayout.visibility = Atomic.UI_WIDGET_VISIBILITY_GONE;
- return;
- }
- this.noticeLayout.visibility = Atomic.UI_WIDGET_VISIBILITY_GONE;
- this.widgetLayout.visibility = Atomic.UI_WIDGET_VISIBILITY_VISIBLE;
- }
- }
- export = SelectionPrefabWidget;
|