112 lines
2.3 KiB
QML
112 lines
2.3 KiB
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
import QtQuick.Layouts 1.15
|
||
|
|
||
|
import Storybook 1.0
|
||
|
|
||
|
import AppLayouts.Communities.popups 1.0
|
||
|
|
||
|
|
||
|
SplitView {
|
||
|
Logs { id: logs }
|
||
|
|
||
|
orientation: Qt.Vertical
|
||
|
SplitView.fillWidth: true
|
||
|
|
||
|
Item {
|
||
|
SplitView.fillWidth: true
|
||
|
SplitView.fillHeight: true
|
||
|
|
||
|
PopupBackground {
|
||
|
anchors.fill: parent
|
||
|
}
|
||
|
|
||
|
Button {
|
||
|
anchors.centerIn: parent
|
||
|
text: "Reopen"
|
||
|
|
||
|
onClicked: dialog.open()
|
||
|
}
|
||
|
|
||
|
KickBanPopup {
|
||
|
id: dialog
|
||
|
|
||
|
mode: modesButtonGroup.checkedButton.mode
|
||
|
username: usernameTextField.text
|
||
|
communityName: communityNameTextField.text
|
||
|
|
||
|
closePolicy: Popup.NoAutoClose
|
||
|
visible: true
|
||
|
modal: false
|
||
|
destroyOnClose: false
|
||
|
anchors.centerIn: parent
|
||
|
|
||
|
onAccepted: logs.logEvent("KickBanPopup::accepted")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
LogsAndControlsPanel {
|
||
|
id: logsAndControlsPanel
|
||
|
|
||
|
SplitView.minimumHeight: 100
|
||
|
SplitView.preferredHeight: 250
|
||
|
|
||
|
logsView.logText: logs.logText
|
||
|
|
||
|
ColumnLayout {
|
||
|
ButtonGroup {
|
||
|
id: modesButtonGroup
|
||
|
|
||
|
buttons: modesRow.children
|
||
|
}
|
||
|
|
||
|
RowLayout {
|
||
|
id: modesRow
|
||
|
|
||
|
RadioButton {
|
||
|
readonly property int mode: KickBanPopup.Mode.Kick
|
||
|
|
||
|
text: "Kick"
|
||
|
checked: true
|
||
|
}
|
||
|
|
||
|
RadioButton {
|
||
|
readonly property int mode: KickBanPopup.Mode.Ban
|
||
|
|
||
|
text: "Ban"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
MenuSeparator {
|
||
|
Layout.fillWidth: true
|
||
|
}
|
||
|
|
||
|
RowLayout {
|
||
|
Label {
|
||
|
text: "Username:"
|
||
|
}
|
||
|
|
||
|
TextField {
|
||
|
id: usernameTextField
|
||
|
|
||
|
text: "John"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
RowLayout {
|
||
|
Label {
|
||
|
text: "Community:"
|
||
|
}
|
||
|
|
||
|
TextField {
|
||
|
id: communityNameTextField
|
||
|
|
||
|
text: "CryptoKitties"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// category: Popups
|