__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/*
SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
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.kquickcontrolsaddons 2.0 as KQCA
import Ubuntu.OnlineAccounts 0.1 as OA
ColumnLayout
{
id: root
property alias videoDesc: description.text
property alias videoTitle: title.text
property alias videoTags: tags.text
property var accountId
property var urls
property var mimeType
function accountChanged()
{
var valid = accountsCombo.enabled && accountsCombo.currentIndex>=0;
accountId = valid ? serviceModel.get(accountsCombo.currentIndex, "accountId") : null
}
Label { text: i18nd("purpose_youtube", "Account:") }
RowLayout {
Layout.fillWidth: true
ComboBox {
id: accountsCombo
Layout.fillWidth: true
textRole: "displayName"
enabled: count>0
model: OA.AccountServiceModel {
id: serviceModel
serviceType: "google-youtube"
}
onCurrentIndexChanged: root.accountChanged()
Component.onCompleted: root.accountChanged()
}
Button {
icon.name: "settings-configure"
onClicked: KQCA.KCMShell.open("kcm_kaccounts");
}
}
Label { text: i18nd("purpose_youtube", "Title:") }
TextField {
id: title
Layout.fillWidth: true
placeholderText: i18nd("purpose_youtube", "Enter a title for the video...")
}
Label { text: i18nd("purpose_youtube", "Tags:") }
TextField {
id: tags
Layout.fillWidth: true
placeholderText: i18nd("purpose_youtube", "KDE, Kamoso")
}
Label { text: i18nd("purpose_youtube", "Description:") }
TextArea {
id: description
Layout.fillWidth: true
Layout.fillHeight: 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 |
|