blob: eaa3b3a400d2e9ffd18180918f8f919c636e34e0 [file] [log] [blame]
taylorchuc27dd482014-05-17 20:06:49 -07001import QtQuick 2.2
2import QtQuick.Window 2.1
3import QtQuick.Controls 1.1
4import QtQuick.Layouts 1.0
5
6ApplicationWindow {
7 visible: false
8 id: window
9 title: "NFD Control Center"
Qi Zhao86f2b212016-12-06 12:44:16 -080010 minimumWidth: 750
taylorchuc27dd482014-05-17 20:06:49 -070011 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
Qi Zhaoae9c4312017-02-02 11:36:12 -080043 text: "Launch NFD Control Center on login"
44 checked: trayModel.isNccAutoStartEnabled()
45 onCheckedChanged: trayModel.enableDisableNccAutoStart(this.checked)
46 }
47 CheckBox {
48 id: autoStart
49 text: "Automatically start NFD"
50 checked: trayModel.isNfdAutoStartEnabled()
51 onCheckedChanged: trayModel.enableDisableNfdAutoStart(this.checked)
taylorchuc27dd482014-05-17 20:06:49 -070052 }
53 CheckBox {
Qi Zhao86f2b212016-12-06 12:44:16 -080054 id: autoConfig
55 text: "Automatically start NDN auto configuration"
Qi Zhaoae9c4312017-02-02 11:36:12 -080056 checked: trayModel.isNdnAutoConfigEnabled()
57 onCheckedChanged: trayModel.enableDisableNdnAutoConfig(this.checked)
58 }
59 CheckBox {
60 id: shutdownOnQuit
61 text: "Shutdown NFD daemon on quit"
62 checked: trayModel.isNfdStopOnExitEnabled()
63 onCheckedChanged: trayModel.enableDisableNfdStopOnExit(this.checked)
taylorchuc27dd482014-05-17 20:06:49 -070064 }
taylorchuc27dd482014-05-17 20:06:49 -070065 }
66 }
67 GroupBox {
68 title: "Status"
69 id: status
70 anchors.top: checkboxControl.bottom
71 anchors.left: parent.left
72 anchors.right: parent.right
73 anchors.topMargin: 20
74 anchors.leftMargin: 20
75 anchors.rightMargin: 20
76 anchors.bottomMargin: 20
77 Row {
78 spacing: 20
79 anchors.topMargin: 10
80 anchors.leftMargin: 10
81 anchors.rightMargin: 10
82 anchors.bottomMargin: 10
83 anchors.fill: parent
84 Button {
85 text: "Traffic map"
86 onClicked: Qt.openUrlExternally('http://ndnmap.arl.wustl.edu')
87 }
88 Button {
89 text: "Routing status"
90 onClicked: Qt.openUrlExternally('http://netlab.cs.memphis.edu/script/htm/status.htm')
91 }
92 }
93 }
Qi Zhao3615a102017-02-02 20:38:34 -080094 GridLayout {
95 anchors.left: parent.left
96 anchors.bottom: parent.bottom
97 Label {
98 text: "NFD Control Center version:"
99 font.pixelSize: 10
100 }
101 Label {
102 text: nccVersion
103 font.pixelSize: 10
104 font.bold: true
105 }
106 }
taylorchuc27dd482014-05-17 20:06:49 -0700107 }
108 }
Alexander Afanasyev4086d512014-07-11 15:56:33 -0700109 // Tab {
110 // title: "FIB status"
111 // TableView {
112 // anchors.fill: parent
113 // anchors.topMargin: 20
114 // anchors.bottomMargin: 20
115 // anchors.leftMargin: 20
116 // anchors.rightMargin: 20
117 // TableViewColumn{
118 // role: "prefix"
119 // title: "NDN prefix"
120 // width: 300
121 // }
122 // TableViewColumn{
123 // role: "faceId"
124 // title: "Face ID"
125 // width: 50
126 // }
127 // TableViewColumn{
128 // role: "cost"
129 // title: "Cost"
130 // width: 50
131 // }
132 // model: fibModel
133 // }
134 // }
taylorchuc27dd482014-05-17 20:06:49 -0700135 Tab {
136 title: "Forwarder status"
137 TableView {
138 anchors.fill: parent
139 anchors.topMargin: 20
140 anchors.bottomMargin: 20
141 anchors.leftMargin: 20
142 anchors.rightMargin: 20
143 model: forwarderModel
144 TableViewColumn{
145 role: "type"
146 title: "Type"
147 width: 200
148 }
149 TableViewColumn{
150 role: "value"
151 title: "Value"
susmit4fe3cb92016-03-20 17:08:41 -0700152 width: 300
taylorchuc27dd482014-05-17 20:06:49 -0700153 }
154 }
155 }
156 Tab {
Qi Zhao86f2b212016-12-06 12:44:16 -0800157 title: "Auto-config status"
158 TextArea {
Qi Zhaoae9c4312017-02-02 11:36:12 -0800159 id: ndnAutoConfigTextId
Qi Zhao86f2b212016-12-06 12:44:16 -0800160 anchors.fill: parent
161 anchors.topMargin: 20
162 anchors.bottomMargin: 20
163 anchors.leftMargin: 20
164 anchors.rightMargin: 20
165 readOnly: true
Qi Zhaoae9c4312017-02-02 11:36:12 -0800166 text: ndnAutoConfigText
Qi Zhao86f2b212016-12-06 12:44:16 -0800167 }
168 }
169 Tab {
taylorchuc27dd482014-05-17 20:06:49 -0700170 title: "Security"
171 Column {
172 spacing: 2
173 anchors.fill: parent
174 anchors.topMargin: 20
175 anchors.bottomMargin: 20
176 anchors.leftMargin: 20
177 anchors.rightMargin: 20
178 Button {
179 text: "Obtain NDN Certificate"
180 onClicked: Qt.openUrlExternally('http://ndncert.named-data.net')
181 }
182 }
183 }
susmit4fe3cb92016-03-20 17:08:41 -0700184 Tab {
185 title: "Add/Delete Route"
186 Column {
187 spacing: 2
188 anchors.fill: parent
189 anchors.topMargin: 20
190 anchors.bottomMargin: 20
191 anchors.leftMargin: 20
192 }
193
194 Row {
195 spacing: 20
196 anchors.topMargin: 30
197 anchors.leftMargin: 10
198 anchors.rightMargin: 10
199 anchors.bottomMargin: 10
200 anchors.fill: parent
201 TextField {
202 focus: true
203 }
204 Button {
205 text: "Add Route"
206 onClicked: trayModel.addRoute(TextField.text);
207 }
208 Button {
209 text: "Delete Route"
210 onClicked: trayModel.deleteRoute(TextField.text);
211 }
212 }
213 }
taylorchuc27dd482014-05-17 20:06:49 -0700214 }
215 Connections {
216 target: trayModel;
217 onShowApp: {
218 window.show()
219 window.raise()
220 }
221 }
Alexander Afanasyev4086d512014-07-11 15:56:33 -0700222 // Timer {
223 // interval: 1000; running: true; repeat: true
224 // onTriggered: {
225 // fibModel.fetchFibInformation()
226 // }
227 // }
taylorchuc27dd482014-05-17 20:06:49 -0700228}