fort/src/ui/qml/pages/AddressesPage.qml
2017-09-02 15:17:51 +05:00

36 lines
769 B
QML

import QtQuick 2.9
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.2
import "addresses"
import com.fortfirewall 1.0
BasePage {
RowLayout {
anchors.fill: parent
spacing: 10
AddressesColumn {
addressGroup: firewallConf.ipInclude
title {
text: QT_TRANSLATE_NOOP("qml", "Include")
}
checkBoxAll {
text: QT_TRANSLATE_NOOP("qml", "Include All")
}
}
AddressesColumn {
addressGroup: firewallConf.ipExclude
title {
text: QT_TRANSLATE_NOOP("qml", "Exclude")
}
checkBoxAll {
text: QT_TRANSLATE_NOOP("qml", "Exclude All")
}
}
}
}