__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/*
SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
SPDX-License-Identifier: LGPL-2.1-or-later
*/
import QtQuick 2.2
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.1
import org.kde.purpose.reviewboard 1.0
ColumnLayout {
id: root
property alias server: serverField.text
property alias username: usernameField.text
property alias password: passwordField.text
property alias repository: repositoriesCombo.currentText
property string updateRR: ""
property string baseDir
property string localBaseDir
property variant extraData: rcfile.extraData
Label {
text: root.updateRR
}
ReviewboardRC {
id: rcfile
path: root.localBaseDir + "/.reviewboardrc"
}
Label { text: i18nd("purpose_reviewboard", "Server:") }
TextField {
id: serverField
Layout.fillWidth: true
text: rcfile.server
}
Label { text: i18nd("purpose_reviewboard", "Username:") }
TextField {
id: usernameField
Layout.fillWidth: true
}
Label { text: i18nd("purpose_reviewboard", "Password:") }
TextField {
id: passwordField
echoMode: TextInput.Password
Layout.fillWidth: true
}
Label { text: i18nd("purpose_reviewboard", "Repository:") }
ComboBox {
id: repositoriesCombo
Layout.fillWidth: true
textRole: "display"
model: RepositoriesModel {
server: serverField.text
onRepositoriesChanged: {
repositoriesCombo.currentIndex = findRepository(rcfile.repository);
}
}
}
function refreshUpdateRR()
{
root.updateRR = (updateRRCombo.currentIndex>=0 && update.checked) ? reviewsList.get(updateRRCombo.currentIndex, "toolTip") : ""
}
Item {
Layout.fillWidth: true
height: update.height
CheckBox {
anchors.centerIn: parent
id: update
text: i18nd("purpose_reviewboard", "Update Review:")
enabled: updateRRCombo.count > 0
onCheckedChanged: {
root.refreshUpdateRR();
}
}
}
ComboBox {
id: updateRRCombo
Layout.fillWidth: true
enabled: update.checked
textRole: "display"
model: ReviewsListModel {
id: reviewsList
server: root.server
repository: root.repository
username: root.username
status: "pending"
}
onCurrentIndexChanged: {
root.refreshUpdateRR();
}
}
Item {
Layout.fillHeight: true
Layout.fillWidth: true
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| barcodeplugin_config.qml | File | 2.93 KB | 0644 |
|
| bluetoothplugin_config.qml | File | 1.69 KB | 0644 |
|
| kdeconnectplugin_config.qml | File | 1.83 KB | 0644 |
|
| nextcloudplugin_config.qml | File | 2.19 KB | 0644 |
|
| phabricatorplugin_config.qml | File | 3.88 KB | 0644 |
|
| reviewboardplugin_config.qml | File | 2.63 KB | 0644 |
|
| saveasplugin_config.qml | File | 985 B | 0644 |
|
| youtubeplugin_config.qml | File | 1.92 KB | 0644 |
|