|
|
@ -15,10 +15,8 @@ var css = csjs` |
|
|
|
max-height: 150px; |
|
|
|
max-height: 150px; |
|
|
|
} |
|
|
|
} |
|
|
|
` |
|
|
|
` |
|
|
|
function CodeListView (_parent, _codeManager) { |
|
|
|
function CodeListView () { |
|
|
|
this.event = new EventManager() |
|
|
|
this.event = new EventManager() |
|
|
|
this.parent = _parent |
|
|
|
|
|
|
|
this.codeManager = _codeManager |
|
|
|
|
|
|
|
this.code |
|
|
|
this.code |
|
|
|
this.address |
|
|
|
this.address |
|
|
|
this.codeView |
|
|
|
this.codeView |
|
|
@ -30,21 +28,12 @@ function CodeListView (_parent, _codeManager) { |
|
|
|
this.basicPanel.event.register('show', () => { |
|
|
|
this.basicPanel.event.register('show', () => { |
|
|
|
this.event.trigger('show', []) |
|
|
|
this.event.trigger('show', []) |
|
|
|
}) |
|
|
|
}) |
|
|
|
this.init() |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
CodeListView.prototype.render = function () { |
|
|
|
CodeListView.prototype.render = function () { |
|
|
|
return yo`<div id='asmcodes' >${this.basicPanel.render({height: style.instructionsList.height})}</div>` |
|
|
|
return yo`<div id='asmcodes' >${this.basicPanel.render({height: style.instructionsList.height})}</div>` |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
CodeListView.prototype.init = function () { |
|
|
|
|
|
|
|
var self = this |
|
|
|
|
|
|
|
this.codeManager.event.register('changed', this, this.changed) |
|
|
|
|
|
|
|
this.parent.event.register('traceUnloaded', this, function () { |
|
|
|
|
|
|
|
self.changed([], '', -1) |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CodeListView.prototype.indexChanged = function (index) { |
|
|
|
CodeListView.prototype.indexChanged = function (index) { |
|
|
|
if (index < 0) return |
|
|
|
if (index < 0) return |
|
|
|
if (this.itemSelected) { |
|
|
|
if (this.itemSelected) { |
|
|
|