mirror of
https://github.com/tnodir/fort
synced 2024-11-18 00:45:32 +00:00
110 lines
2.8 KiB
QML
110 lines
2.8 KiB
QML
import QtQuick 2.9
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls 2.2
|
|
import com.fortfirewall 1.0
|
|
|
|
Page {
|
|
id: mainPage
|
|
|
|
signal opened()
|
|
signal closed()
|
|
signal saved()
|
|
|
|
property bool confFlagsEdited
|
|
property bool confEdited
|
|
|
|
function setConfFlagsEdited() {
|
|
confFlagsEdited = true;
|
|
}
|
|
|
|
function setConfEdited() {
|
|
confEdited = true;
|
|
}
|
|
|
|
function resetConfEdited() {
|
|
confFlagsEdited = false;
|
|
confEdited = false;
|
|
}
|
|
|
|
onOpened: {
|
|
resetConfEdited();
|
|
|
|
tabBar.currentItem.forceActiveFocus();
|
|
}
|
|
|
|
header: TabBar {
|
|
id: tabBar
|
|
currentIndex: swipeView.currentIndex
|
|
|
|
TabButton {
|
|
icon.source: "qrc:/images/cog.png"
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "Options")
|
|
}
|
|
TabButton {
|
|
icon.source: "qrc:/images/link.png"
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "IPv4 Addresses")
|
|
}
|
|
TabButton {
|
|
icon.source: "qrc:/images/application_cascade.png"
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "Applications")
|
|
}
|
|
TabButton {
|
|
icon.source: "qrc:/images/zoom.png"
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "Activity")
|
|
}
|
|
}
|
|
|
|
SwipeView {
|
|
id: swipeView
|
|
anchors.fill: parent
|
|
currentIndex: tabBar.currentIndex
|
|
|
|
OptionsPage {}
|
|
AddressesPage {}
|
|
ApplicationsPage {}
|
|
ActivityPage {}
|
|
}
|
|
|
|
footer: Pane {
|
|
RowLayout {
|
|
anchors.right: parent.right
|
|
|
|
Button {
|
|
enabled: confFlagsEdited || confEdited
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "OK")
|
|
onClicked: {
|
|
if (fortManager.saveConf(confFlagsEdited)) {
|
|
mainPage.saved();
|
|
closeWindow();
|
|
}
|
|
}
|
|
}
|
|
Button {
|
|
enabled: confFlagsEdited || confEdited
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "Apply")
|
|
onClicked: {
|
|
if (fortManager.applyConf(confFlagsEdited)) {
|
|
resetConfEdited();
|
|
}
|
|
}
|
|
}
|
|
Button {
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "Cancel")
|
|
onClicked: closeWindow()
|
|
}
|
|
Button {
|
|
text: translationManager.dummyBool
|
|
&& qsTranslate("qml", "Quit")
|
|
onClicked: fortManager.exit()
|
|
}
|
|
}
|
|
}
|
|
}
|