diff --git a/src/ui/firewallLog/logbuffer.cpp b/src/ui/activityLog/logbuffer.cpp similarity index 100% rename from src/ui/firewallLog/logbuffer.cpp rename to src/ui/activityLog/logbuffer.cpp diff --git a/src/ui/firewallLog/logbuffer.h b/src/ui/activityLog/logbuffer.h similarity index 100% rename from src/ui/firewallLog/logbuffer.h rename to src/ui/activityLog/logbuffer.h diff --git a/src/ui/firewallLog/logentry.cpp b/src/ui/activityLog/logentry.cpp similarity index 100% rename from src/ui/firewallLog/logentry.cpp rename to src/ui/activityLog/logentry.cpp diff --git a/src/ui/firewallLog/logentry.h b/src/ui/activityLog/logentry.h similarity index 100% rename from src/ui/firewallLog/logentry.h rename to src/ui/activityLog/logentry.h diff --git a/src/ui/fort_qml.qrc b/src/ui/fort_qml.qrc index 56947a47..6bde235b 100644 --- a/src/ui/fort_qml.qrc +++ b/src/ui/fort_qml.qrc @@ -1,6 +1,7 @@ qml/main.qml + qml/pages/ActivityPage.qml qml/pages/AddressesPage.qml qml/pages/ApplicationsPage.qml qml/pages/BasePage.qml diff --git a/src/ui/qml/main.qml b/src/ui/qml/main.qml index 4bd753bb..e46e3d17 100644 --- a/src/ui/qml/main.qml +++ b/src/ui/qml/main.qml @@ -53,6 +53,7 @@ ApplicationWindow { OptionsPage {} AddressesPage {} ApplicationsPage {} + ActivityPage {} } footer: Pane { diff --git a/src/ui/qml/pages/ActivityPage.qml b/src/ui/qml/pages/ActivityPage.qml new file mode 100644 index 00000000..d0c39238 --- /dev/null +++ b/src/ui/qml/pages/ActivityPage.qml @@ -0,0 +1,10 @@ +import QtQuick 2.9 +import QtQuick.Layouts 1.3 +import QtQuick.Controls 2.2 + +BasePage { + + function pageFillConf(conf) { + } + +}