mirror of
https://github.com/QRouland/UTPass.git
synced 2025-07-05 03:22:27 +00:00
First draft Rewrite get all key with rnp
This commit is contained in:
@ -21,15 +21,13 @@ MainView {
|
||||
pop.activateFocus();
|
||||
}
|
||||
|
||||
|
||||
objectName: "mainView"
|
||||
applicationName: "utpass.qrouland"
|
||||
automaticOrientation: true
|
||||
width: units.gu(45)
|
||||
height: units.gu(75)
|
||||
|
||||
Component.onCompleted: {
|
||||
myWorker.sendMessage("Hello World !")
|
||||
myWorker.sendMessage("Hello World !");
|
||||
}
|
||||
|
||||
PageStack {
|
||||
|
@ -11,7 +11,6 @@ Dialog {
|
||||
signal validated()
|
||||
signal canceled()
|
||||
|
||||
|
||||
Button {
|
||||
id: continueButton
|
||||
|
||||
|
@ -29,7 +29,6 @@ Page {
|
||||
anchors.rightMargin: units.gu(2)
|
||||
spacing: units.gu(1)
|
||||
|
||||
|
||||
Rectangle {
|
||||
width: parent.width
|
||||
height: units.gu(1)
|
||||
|
@ -8,6 +8,7 @@ import QtQuick 2.4
|
||||
|
||||
Page {
|
||||
id: infoKeysPage
|
||||
|
||||
property list<QtObject> __keys
|
||||
property QtObject __currentKey
|
||||
|
||||
@ -15,7 +16,7 @@ Page {
|
||||
Pass.getAllGPGKeysSucceed.connect(function(keys_info) {
|
||||
infoKeysPage.__keys = keys_info;
|
||||
for (var i = 0; i < keys_info.length; ++i) {
|
||||
console.debug("is secret " + keys_info[i].isSecret)
|
||||
console.debug("is secret " + keys_info[i].isSecret);
|
||||
}
|
||||
});
|
||||
Pass.getAllGPGKeysFailed.connect(function(message) {
|
||||
@ -108,7 +109,6 @@ Page {
|
||||
userIdsModel.append({
|
||||
"model": model.modelData.userIds[i]
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user