mirror of
https://github.com/tnodir/fort
synced 2024-11-15 07:25:18 +00:00
UI: Add H/VSeparator controls.
This commit is contained in:
parent
ba73b2745e
commit
7861fd0f51
@ -3,6 +3,7 @@
|
|||||||
<file>qml/boxes/PasswordBox.qml</file>
|
<file>qml/boxes/PasswordBox.qml</file>
|
||||||
<file>qml/controls/ButtonMenu.qml</file>
|
<file>qml/controls/ButtonMenu.qml</file>
|
||||||
<file>qml/controls/ButtonPopup.qml</file>
|
<file>qml/controls/ButtonPopup.qml</file>
|
||||||
|
<file>qml/controls/HSeparator.qml</file>
|
||||||
<file>qml/controls/LinkButton.qml</file>
|
<file>qml/controls/LinkButton.qml</file>
|
||||||
<file>qml/controls/ListViewControl.qml</file>
|
<file>qml/controls/ListViewControl.qml</file>
|
||||||
<file>qml/controls/RoundButtonTip.qml</file>
|
<file>qml/controls/RoundButtonTip.qml</file>
|
||||||
@ -12,6 +13,7 @@
|
|||||||
<file>qml/controls/TextAreaFrame.qml</file>
|
<file>qml/controls/TextAreaFrame.qml</file>
|
||||||
<file>qml/controls/TextContextMenu.qml</file>
|
<file>qml/controls/TextContextMenu.qml</file>
|
||||||
<file>qml/controls/TextFieldFrame.qml</file>
|
<file>qml/controls/TextFieldFrame.qml</file>
|
||||||
|
<file>qml/controls/VSeparator.qml</file>
|
||||||
<file>qml/main.qml</file>
|
<file>qml/main.qml</file>
|
||||||
<file>qml/pages/AddressesPage.qml</file>
|
<file>qml/pages/AddressesPage.qml</file>
|
||||||
<file>qml/pages/ApplicationsPage.qml</file>
|
<file>qml/pages/ApplicationsPage.qml</file>
|
||||||
|
10
src/ui/qml/controls/HSeparator.qml
Normal file
10
src/ui/qml/controls/HSeparator.qml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import QtQuick 2.9
|
||||||
|
import QtQuick.Controls 2.2
|
||||||
|
import QtQuick.Layouts 1.3
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: 1
|
||||||
|
|
||||||
|
color: palette.mid
|
||||||
|
}
|
10
src/ui/qml/controls/VSeparator.qml
Normal file
10
src/ui/qml/controls/VSeparator.qml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import QtQuick 2.9
|
||||||
|
import QtQuick.Controls 2.2
|
||||||
|
import QtQuick.Layouts 1.3
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
Layout.preferredWidth: 1
|
||||||
|
Layout.fillHeight: true
|
||||||
|
|
||||||
|
color: palette.mid
|
||||||
|
}
|
@ -129,10 +129,7 @@ BasePage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Frame {
|
HSeparator {}
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: 1
|
|
||||||
}
|
|
||||||
|
|
||||||
AppsColumn {
|
AppsColumn {
|
||||||
id: appsColumn
|
id: appsColumn
|
||||||
|
@ -87,10 +87,7 @@ BasePage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Frame {
|
HSeparator {}
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: 1
|
|
||||||
}
|
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
@ -209,10 +209,7 @@ BasePage {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Frame {
|
HSeparator {}
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: 1
|
|
||||||
}
|
|
||||||
|
|
||||||
ListView {
|
ListView {
|
||||||
id: trafListView
|
id: trafListView
|
||||||
|
Loading…
Reference in New Issue
Block a user