__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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.7
import QtQuick.Layouts 1.1
import QtQuick.Controls 2.5
import org.kde.kirigami 2.12 as Kirigami
import org.kde.bluezqt 1.0 as BluezQt
ColumnLayout {
id: root
property var device: undefined
anchors.bottomMargin: Kirigami.Units.smallSpacing
Kirigami.Heading {
text: i18nd("purpose_bluetooth", "Choose a device to send to:")
visible: list.count !== 0
level: 1
}
ScrollView {
id: scroll
Layout.fillWidth: true
Layout.fillHeight: true
// Make sure we have space to show the placeholdermessage when no explicit size is set
contentHeight: list.count !== 0 ? implicitContentHeight : Kirigami.Units.gridUnit * 3
Component.onCompleted: scroll.background.visible = true
ListView {
id: list
// Don't select anything by default; make the user choose explicitly
currentIndex: -1
clip: true
model: BluezQt.DevicesModel { }
delegate: Kirigami.BasicListItem {
width: parent.width
text: Name
icon: Icon
onClicked: root.device = Ubi
checked: root.device === Ubi
highlighted: root.device === Ubi
}
Kirigami.PlaceholderMessage {
anchors.centerIn: parent
width: parent.width - (Kirigami.Units.largeSpacing * 4)
visible: list.count === 0
text: i18nd("purpose_bluetooth", "No devices found")
}
}
}
}
| 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 |
|