go-ethereum/lib/qt.js

46 lines
1.3 KiB
JavaScript
Raw Normal View History

2014-10-31 15:12:05 +02:00
/*
This file is part of ethereum.js.
ethereum.js is free software: you can redistribute it and/or modify
2014-11-03 13:40:57 +02:00
it under the terms of the GNU Lesser General Public License as published by
2014-10-31 15:12:05 +02:00
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ethereum.js is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2014-11-03 13:40:57 +02:00
GNU Lesser General Public License for more details.
2014-10-31 15:12:05 +02:00
2014-11-03 13:40:57 +02:00
You should have received a copy of the GNU Lesser General Public License
2014-10-31 15:12:05 +02:00
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
*/
2014-11-03 13:40:57 +02:00
/** @file qt.js
2014-10-31 15:12:05 +02:00
* @authors:
2014-11-11 12:46:46 +02:00
* Jeffrey Wilcke <jeff@ethdev.com>
2014-10-31 15:12:05 +02:00
* Marek Kotewicz <marek@ethdev.com>
* @date 2014
*/
2014-11-11 12:46:46 +02:00
var QtProvider = function() {
this.handlers = [];
2014-11-11 12:46:46 +02:00
var self = this;
navigator.qt.onmessage = function (message) {
self.handlers.forEach(function (handler) {
handler.call(self, JSON.parse(message.data));
});
};
2014-11-11 12:46:46 +02:00
};
2014-11-11 12:46:46 +02:00
QtProvider.prototype.send = function(payload) {
navigator.qt.postMessage(JSON.stringify(payload));
};
2014-10-21 01:26:34 +03:00
2014-11-11 12:46:46 +02:00
Object.defineProperty(QtProvider.prototype, "onmessage", {
set: function(handler) {
this.handlers.push(handler);
}
});
module.exports = QtProvider;