2017-09-02 08:07:07 +00:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import QtQuick.Controls 2.2
|
2017-09-02 10:17:51 +00:00
|
|
|
import com.fortfirewall 1.0
|
2017-09-02 08:07:07 +00:00
|
|
|
|
|
|
|
BasePage {
|
|
|
|
|
2017-09-02 13:48:33 +00:00
|
|
|
ColumnLayout {
|
2017-09-02 14:36:38 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
Switch {
|
|
|
|
anchors.right: parent.right
|
2017-09-02 13:48:33 +00:00
|
|
|
onToggled: {
|
|
|
|
firewallConf.appLogBlocked = checked;
|
|
|
|
}
|
|
|
|
}
|
2017-09-02 14:36:38 +00:00
|
|
|
|
|
|
|
GridView {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2017-09-02 13:48:33 +00:00
|
|
|
}
|
2017-09-02 08:07:07 +00:00
|
|
|
}
|