2015-05-06 03:51:04 +00:00
|
|
|
/**
|
2015-07-11 21:59:50 +00:00
|
|
|
* image.js - image element for blessed
|
2015-05-06 03:51:04 +00:00
|
|
|
* Copyright (c) 2013-2015, Christopher Jeffrey and contributors (MIT License).
|
|
|
|
* https://github.com/chjj/blessed
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Modules
|
|
|
|
*/
|
|
|
|
|
|
|
|
var helpers = require('../helpers');
|
|
|
|
|
|
|
|
var Node = require('./node');
|
|
|
|
var Box = require('./box');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Image
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Image(options) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
if (!(this instanceof Node)) {
|
|
|
|
return new Image(options);
|
|
|
|
}
|
|
|
|
|
|
|
|
options = options || {};
|
2015-07-11 21:59:50 +00:00
|
|
|
options.itype = options.itype || 'ansi';
|
2015-05-06 03:51:04 +00:00
|
|
|
|
|
|
|
Box.call(this, options);
|
|
|
|
|
2015-07-11 21:59:50 +00:00
|
|
|
if (options.itype === 'ansi' && this.type !== 'png') {
|
|
|
|
var PNG = require('./png');
|
|
|
|
Object.getOwnPropertyNames(PNG.prototype).forEach(function(key) {
|
|
|
|
if (key === 'type') return;
|
|
|
|
Object.defineProperty(this, key,
|
|
|
|
Object.getOwnPropertyDescriptor(PNG.prototype, key));
|
|
|
|
}, this);
|
|
|
|
PNG.call(this, options);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.itype === 'w3m' && this.type !== 'w3mimage') {
|
|
|
|
var W3MImage = require('./w3mimage');
|
|
|
|
Object.getOwnPropertyNames(W3MImage.prototype).forEach(function(key) {
|
|
|
|
if (key === 'type') return;
|
|
|
|
Object.defineProperty(this, key,
|
|
|
|
Object.getOwnPropertyDescriptor(W3MImage.prototype, key));
|
|
|
|
}, this);
|
|
|
|
W3MImage.call(this, options);
|
|
|
|
return this;
|
2015-05-06 03:51:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Image.prototype.__proto__ = Box.prototype;
|
|
|
|
|
|
|
|
Image.prototype.type = 'image';
|
|
|
|
|
2015-05-06 06:10:18 +00:00
|
|
|
/**
|
|
|
|
* Expose
|
|
|
|
*/
|
|
|
|
|
2015-05-06 03:51:04 +00:00
|
|
|
module.exports = Image;
|