27 lines
738 B
JavaScript
27 lines
738 B
JavaScript
/* jslint node: true */
|
|
'use strict';
|
|
|
|
var TextView = require('./text_view.js').TextView;
|
|
var miscUtil = require('./misc_util.js');
|
|
var util = require('util');
|
|
var assert = require('assert');
|
|
|
|
exports.ButtonView = ButtonView;
|
|
|
|
function ButtonView(client, options) {
|
|
options.acceptsFocus = miscUtil.valueWithDefault(options.acceptsFocus, true);
|
|
options.acceptsInput = miscUtil.valueWithDefault(options.acceptsInput, true);
|
|
|
|
TextView.call(this, client, options);
|
|
}
|
|
|
|
util.inherits(ButtonView, TextView);
|
|
|
|
ButtonView.prototype.onKeyPress = function(key, isSpecial) {
|
|
ButtonView.super_.prototype.onKeyPress.call(this, key, isSpecial);
|
|
|
|
// allow spacebar to 'click' buttons
|
|
if(' ' === key) {
|
|
this.emit('action', 'accept');
|
|
}
|
|
}; |