SideIcons work. Copy paste still doesn't.
This commit is contained in:
parent
3068e2688d
commit
666ef48239
35
cmd/mist/assets/ext/mist.js
Normal file
35
cmd/mist/assets/ext/mist.js
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
// Copyright (c) 2015, ETHDEV. All rights reserved.
|
||||||
|
//
|
||||||
|
// This library is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU General Public
|
||||||
|
// License as published by the Free Software Foundation; either
|
||||||
|
// version 2.1 of the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This library 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 GNU
|
||||||
|
// General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this library; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||||
|
// MA 02110-1301 USA
|
||||||
|
|
||||||
|
// this function is included locally, but you can also include separately via a header definition
|
||||||
|
|
||||||
|
console.log("loaded?");
|
||||||
|
|
||||||
|
document.onkeydown = function(evt) {
|
||||||
|
evt = evt || window.event;
|
||||||
|
if (evt.ctrlKey && evt.keyCode == 67) {
|
||||||
|
window.document.execCommand("copy");
|
||||||
|
console.log("Ctrl-C");
|
||||||
|
} else if (evt.ctrlKey && evt.keyCode == 88) {
|
||||||
|
window.document.execCommand("cut");
|
||||||
|
console.log("Ctrl-X");
|
||||||
|
} if (evt.ctrlKey && evt.keyCode == 86) {
|
||||||
|
console.log("Ctrl-V");
|
||||||
|
} if (evt.ctrlKey && evt.keyCode == 90) {
|
||||||
|
console.log("Ctrl-Z");
|
||||||
|
}
|
||||||
|
};
|
@ -3,7 +3,7 @@ import QtQuick.Controls 1.0;
|
|||||||
import QtQuick.Controls.Styles 1.0
|
import QtQuick.Controls.Styles 1.0
|
||||||
import QtQuick.Layouts 1.0;
|
import QtQuick.Layouts 1.0;
|
||||||
import QtWebEngine 1.0
|
import QtWebEngine 1.0
|
||||||
import QtWebEngine.experimental 1.0
|
//import QtWebEngine.experimental 1.0
|
||||||
import QtQuick.Window 2.0;
|
import QtQuick.Window 2.0;
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
@ -340,8 +340,8 @@ Rectangle {
|
|||||||
WebEngineView {
|
WebEngineView {
|
||||||
objectName: "webView"
|
objectName: "webView"
|
||||||
id: webview
|
id: webview
|
||||||
experimental.settings.javascriptCanAccessClipboard: true
|
//experimental.settings.javascriptCanAccessClipboard: true
|
||||||
experimental.settings.localContentCanAccessRemoteUrls: true
|
//experimental.settings.localContentCanAccessRemoteUrls: true
|
||||||
anchors {
|
anchors {
|
||||||
left: parent.left
|
left: parent.left
|
||||||
right: parent.right
|
right: parent.right
|
||||||
@ -367,6 +367,11 @@ Rectangle {
|
|||||||
menuItem.title = pageTitle;
|
menuItem.title = pageTitle;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
webView.runJavaScript("document.querySelector(\"link[rel='icon']\").getAttribute(\"href\")", function(sideIcon){
|
||||||
|
if(sideIcon){
|
||||||
|
menuItem.icon = "http://localhost:3000/whisper-icon@2x.png"
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
webView.runJavaScript("try{document.querySelector(\"meta[name='ethereum-dapp-url-bar-style']\").getAttribute(\"content\")}catch(e){}", function(topBarStyle){
|
webView.runJavaScript("try{document.querySelector(\"meta[name='ethereum-dapp-url-bar-style']\").getAttribute(\"content\")}catch(e){}", function(topBarStyle){
|
||||||
if (!topBarStyle) {
|
if (!topBarStyle) {
|
||||||
@ -397,12 +402,6 @@ Rectangle {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
// webView.runJavaScript("document.querySelector(\"link[rel='icon']\").getAttribute(\"href\")", function(sideIcon){
|
|
||||||
// if(sideIcon){
|
|
||||||
// window.iconSource = "http://localhost:3000/whisper-icon@2x.png" //webview.url + sideIcon
|
|
||||||
// console.log(iconSource)
|
|
||||||
// };
|
|
||||||
// });
|
|
||||||
|
|
||||||
webview.runJavaScript(eth.readFile("bignumber.min.js"));
|
webview.runJavaScript(eth.readFile("bignumber.min.js"));
|
||||||
webview.runJavaScript(eth.readFile("ethereum.js/dist/ethereum.js"));
|
webview.runJavaScript(eth.readFile("ethereum.js/dist/ethereum.js"));
|
||||||
|
@ -85,7 +85,7 @@ Rectangle {
|
|||||||
property var domain: "ethereum-dapp-catalog.meteor.com"
|
property var domain: "ethereum-dapp-catalog.meteor.com"
|
||||||
url: protocol + domain
|
url: protocol + domain
|
||||||
|
|
||||||
|
//experimental.settings.javascriptCanAccessClipboard: true
|
||||||
|
|
||||||
|
|
||||||
onJavaScriptConsoleMessage: {
|
onJavaScriptConsoleMessage: {
|
||||||
@ -112,10 +112,18 @@ Rectangle {
|
|||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// onLoadingChanged: {
|
||||||
|
// if (loadRequest.status == WebEngineView.LoadSucceededStatus) {
|
||||||
|
// webview.runJavaScript(eth.readFile("mist.js"));
|
||||||
|
// }
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
WebEngineView {
|
WebEngineView {
|
||||||
id: inspector
|
id: inspector
|
||||||
visible: false
|
visible: false
|
||||||
|
Loading…
Reference in New Issue
Block a user