plugeth/qt.js

50 lines
1.5 KiB
JavaScript
Raw Normal View History

2014-10-31 13:12:05 +00:00
/*
This file is part of ethereum.js.
ethereum.js is free software: you can redistribute it and/or modify
2014-11-03 11:40:57 +00:00
it under the terms of the GNU Lesser General Public License as published by
2014-10-31 13:12:05 +00: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 11:40:57 +00:00
GNU Lesser General Public License for more details.
2014-10-31 13:12:05 +00:00
2014-11-03 11:40:57 +00:00
You should have received a copy of the GNU Lesser General Public License
2014-10-31 13:12:05 +00:00
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
*/
2014-11-03 11:40:57 +00:00
/** @file qt.js
2014-10-31 13:12:05 +00:00
* @authors:
* Marek Kotewicz <marek@ethdev.com>
* @date 2014
*/
2014-10-20 22:26:34 +00:00
(function() {
var QtProvider = function() {
this.handlers = [];
var self = this;
navigator.qt.onmessage = function (message) {
self.handlers.forEach(function (handler) {
handler.call(self, JSON.parse(message.data));
});
}
};
2014-10-20 22:26:34 +00:00
QtProvider.prototype.send = function(payload) {
navigator.qt.postMessage(JSON.stringify(payload));
2014-10-20 22:26:34 +00:00
};
2014-10-20 22:26:34 +00:00
Object.defineProperty(QtProvider.prototype, "onmessage", {
set: function(handler) {
this.handlers.push(handler);
2014-10-20 22:26:34 +00:00
},
});
if(typeof(web3) !== "undefined" && web3.providers !== undefined) {
web3.providers.QtProvider = QtProvider;
2014-10-20 22:26:34 +00:00
}
})();