taylorchu | c27dd48 | 2014-05-17 20:06:49 -0700 | [diff] [blame] | 1 | import QtQuick 2.2 |
| 2 | import QtQuick.Window 2.1 |
| 3 | import QtQuick.Controls 1.1 |
| 4 | import QtQuick.Layouts 1.0 |
| 5 | |
| 6 | ApplicationWindow { |
| 7 | visible: false |
| 8 | id: window |
| 9 | title: "NFD Control Center" |
| 10 | minimumWidth: 600 |
| 11 | minimumHeight: 400 |
| 12 | |
| 13 | TabView { |
| 14 | anchors.fill: parent |
| 15 | anchors.topMargin: 20 |
| 16 | anchors.bottomMargin: 20 |
| 17 | anchors.leftMargin: 20 |
| 18 | anchors.rightMargin: 20 |
| 19 | |
| 20 | Tab { |
| 21 | title: "General" |
| 22 | ColumnLayout { |
| 23 | anchors.fill: parent |
| 24 | GroupBox { |
| 25 | title: "Basic" |
| 26 | id: checkboxControl |
| 27 | anchors.top: parent.top |
| 28 | anchors.left: parent.left |
| 29 | anchors.right: parent.right |
| 30 | anchors.topMargin: 20 |
| 31 | anchors.leftMargin: 20 |
| 32 | anchors.rightMargin: 20 |
| 33 | anchors.bottomMargin: 20 |
| 34 | Column { |
| 35 | spacing: 5 |
| 36 | anchors.fill: parent |
| 37 | anchors.topMargin: 10 |
| 38 | anchors.bottomMargin: 10 |
| 39 | anchors.leftMargin: 10 |
| 40 | anchors.rightMargin: 10 |
| 41 | CheckBox { |
| 42 | id: startOnLogin |
| 43 | enabled: false |
| 44 | text: "Automatically start NFD Control Center on login" |
| 45 | } |
| 46 | CheckBox { |
| 47 | id: discoverHub |
| 48 | text: "Discover nearest NDN hub" |
| 49 | onCheckedChanged: { |
| 50 | if (this.checked) { |
| 51 | trayModel.autoConfig() |
| 52 | } |
| 53 | } |
| 54 | } |
Alexander Afanasyev | 4086d51 | 2014-07-11 15:56:33 -0700 | [diff] [blame] | 55 | // CheckBox { |
| 56 | // id: checkUpdate |
| 57 | // enabled: false |
| 58 | // text: "Check for software updates" |
| 59 | // } |
taylorchu | c27dd48 | 2014-05-17 20:06:49 -0700 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | GroupBox { |
| 63 | title: "Status" |
| 64 | id: status |
| 65 | anchors.top: checkboxControl.bottom |
| 66 | anchors.left: parent.left |
| 67 | anchors.right: parent.right |
| 68 | anchors.topMargin: 20 |
| 69 | anchors.leftMargin: 20 |
| 70 | anchors.rightMargin: 20 |
| 71 | anchors.bottomMargin: 20 |
| 72 | Row { |
| 73 | spacing: 20 |
| 74 | anchors.topMargin: 10 |
| 75 | anchors.leftMargin: 10 |
| 76 | anchors.rightMargin: 10 |
| 77 | anchors.bottomMargin: 10 |
| 78 | anchors.fill: parent |
| 79 | Button { |
| 80 | text: "Traffic map" |
| 81 | onClicked: Qt.openUrlExternally('http://ndnmap.arl.wustl.edu') |
| 82 | } |
| 83 | Button { |
| 84 | text: "Routing status" |
| 85 | onClicked: Qt.openUrlExternally('http://netlab.cs.memphis.edu/script/htm/status.htm') |
| 86 | } |
| 87 | } |
| 88 | } |
Alexander Afanasyev | 4086d51 | 2014-07-11 15:56:33 -0700 | [diff] [blame] | 89 | Button { |
| 90 | id: startStopButton |
| 91 | text: startStopButtonText |
| 92 | |
| 93 | anchors.top: status.bottom |
| 94 | anchors.left: parent.left |
| 95 | anchors.right: parent.right |
| 96 | anchors.topMargin: 20 |
| 97 | anchors.leftMargin: 20 |
| 98 | anchors.rightMargin: 20 |
| 99 | anchors.bottomMargin: 20 |
| 100 | |
| 101 | onClicked: trayModel.startStopNfd() |
| 102 | } |
taylorchu | c27dd48 | 2014-05-17 20:06:49 -0700 | [diff] [blame] | 103 | } |
| 104 | } |
Alexander Afanasyev | 4086d51 | 2014-07-11 15:56:33 -0700 | [diff] [blame] | 105 | // Tab { |
| 106 | // title: "FIB status" |
| 107 | // TableView { |
| 108 | // anchors.fill: parent |
| 109 | // anchors.topMargin: 20 |
| 110 | // anchors.bottomMargin: 20 |
| 111 | // anchors.leftMargin: 20 |
| 112 | // anchors.rightMargin: 20 |
| 113 | // TableViewColumn{ |
| 114 | // role: "prefix" |
| 115 | // title: "NDN prefix" |
| 116 | // width: 300 |
| 117 | // } |
| 118 | // TableViewColumn{ |
| 119 | // role: "faceId" |
| 120 | // title: "Face ID" |
| 121 | // width: 50 |
| 122 | // } |
| 123 | // TableViewColumn{ |
| 124 | // role: "cost" |
| 125 | // title: "Cost" |
| 126 | // width: 50 |
| 127 | // } |
| 128 | // model: fibModel |
| 129 | // } |
| 130 | // } |
taylorchu | c27dd48 | 2014-05-17 20:06:49 -0700 | [diff] [blame] | 131 | Tab { |
| 132 | title: "Forwarder status" |
| 133 | TableView { |
| 134 | anchors.fill: parent |
| 135 | anchors.topMargin: 20 |
| 136 | anchors.bottomMargin: 20 |
| 137 | anchors.leftMargin: 20 |
| 138 | anchors.rightMargin: 20 |
| 139 | model: forwarderModel |
| 140 | TableViewColumn{ |
| 141 | role: "type" |
| 142 | title: "Type" |
| 143 | width: 200 |
| 144 | } |
| 145 | TableViewColumn{ |
| 146 | role: "value" |
| 147 | title: "Value" |
susmit | 4fe3cb9 | 2016-03-20 17:08:41 -0700 | [diff] [blame] | 148 | width: 300 |
taylorchu | c27dd48 | 2014-05-17 20:06:49 -0700 | [diff] [blame] | 149 | } |
| 150 | } |
| 151 | } |
| 152 | Tab { |
| 153 | title: "Security" |
| 154 | Column { |
| 155 | spacing: 2 |
| 156 | anchors.fill: parent |
| 157 | anchors.topMargin: 20 |
| 158 | anchors.bottomMargin: 20 |
| 159 | anchors.leftMargin: 20 |
| 160 | anchors.rightMargin: 20 |
| 161 | Button { |
| 162 | text: "Obtain NDN Certificate" |
| 163 | onClicked: Qt.openUrlExternally('http://ndncert.named-data.net') |
| 164 | } |
| 165 | } |
| 166 | } |
susmit | 4fe3cb9 | 2016-03-20 17:08:41 -0700 | [diff] [blame] | 167 | Tab { |
| 168 | title: "Add/Delete Route" |
| 169 | Column { |
| 170 | spacing: 2 |
| 171 | anchors.fill: parent |
| 172 | anchors.topMargin: 20 |
| 173 | anchors.bottomMargin: 20 |
| 174 | anchors.leftMargin: 20 |
| 175 | } |
| 176 | |
| 177 | Row { |
| 178 | spacing: 20 |
| 179 | anchors.topMargin: 30 |
| 180 | anchors.leftMargin: 10 |
| 181 | anchors.rightMargin: 10 |
| 182 | anchors.bottomMargin: 10 |
| 183 | anchors.fill: parent |
| 184 | TextField { |
| 185 | focus: true |
| 186 | } |
| 187 | Button { |
| 188 | text: "Add Route" |
| 189 | onClicked: trayModel.addRoute(TextField.text); |
| 190 | } |
| 191 | Button { |
| 192 | text: "Delete Route" |
| 193 | onClicked: trayModel.deleteRoute(TextField.text); |
| 194 | } |
| 195 | } |
| 196 | } |
taylorchu | c27dd48 | 2014-05-17 20:06:49 -0700 | [diff] [blame] | 197 | } |
| 198 | Connections { |
| 199 | target: trayModel; |
| 200 | onShowApp: { |
| 201 | window.show() |
| 202 | window.raise() |
| 203 | } |
| 204 | } |
Alexander Afanasyev | 4086d51 | 2014-07-11 15:56:33 -0700 | [diff] [blame] | 205 | // Timer { |
| 206 | // interval: 1000; running: true; repeat: true |
| 207 | // onTriggered: { |
| 208 | // fibModel.fetchFibInformation() |
| 209 | // } |
| 210 | // } |
taylorchu | c27dd48 | 2014-05-17 20:06:49 -0700 | [diff] [blame] | 211 | } |