├── SMART.png
├── src
├── Star.png
├── icon.png
├── icon.qrc
├── chartfile.qrc
├── aboutwindow.cpp
├── main.cpp
├── aboutwindow.h
├── chart
│ ├── chartPart2.html
│ ├── chartPart1.html
│ └── chart.html
├── setupwindow.h
├── selectalgwindow.h
├── addalgo.h
├── SMART-GUI.pro
├── mainwindow.h
├── setupwindow.ui
├── addalgo.ui
├── selectalgwindow.ui
├── setupwindow.cpp
├── selectalgwindow.cpp
├── addalgo.cpp
├── aboutwindow.ui
├── Makefile
├── mainwindow.ui
└── mainwindow.cpp
├── SMARTstats.png
├── doc
├── SMART-GUI.odt
└── SMART-GUI.pdf
├── .gitignore
├── README.md
└── LICENSE
/SMART.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smart-tool/smart-gui/HEAD/SMART.png
--------------------------------------------------------------------------------
/src/Star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smart-tool/smart-gui/HEAD/src/Star.png
--------------------------------------------------------------------------------
/src/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smart-tool/smart-gui/HEAD/src/icon.png
--------------------------------------------------------------------------------
/SMARTstats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smart-tool/smart-gui/HEAD/SMARTstats.png
--------------------------------------------------------------------------------
/doc/SMART-GUI.odt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smart-tool/smart-gui/HEAD/doc/SMART-GUI.odt
--------------------------------------------------------------------------------
/doc/SMART-GUI.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smart-tool/smart-gui/HEAD/doc/SMART-GUI.pdf
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | build-SMART-GUI-Desktop-Debug/
2 | build-SMART-GUI-Desktop-Release/
3 | /src/SMART-GUI.pro.user
4 |
--------------------------------------------------------------------------------
/src/icon.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | icon.png
4 | Star.png
5 |
6 |
7 |
--------------------------------------------------------------------------------
/src/chartfile.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | chart/chartPart1.html
4 | chart/chartPart2.html
5 | chart/Chart.js
6 |
7 |
8 |
--------------------------------------------------------------------------------
/src/aboutwindow.cpp:
--------------------------------------------------------------------------------
1 | #include "aboutwindow.h"
2 | #include "ui_aboutwindow.h"
3 |
4 | aboutWindow::aboutWindow(QWidget *parent) :
5 | QDialog(parent),
6 | ui(new Ui::aboutWindow)
7 | {
8 | ui->setupUi(this);
9 | }
10 |
11 | aboutWindow::~aboutWindow()
12 | {
13 | delete ui;
14 | }
15 |
--------------------------------------------------------------------------------
/src/main.cpp:
--------------------------------------------------------------------------------
1 | #include "mainwindow.h"
2 | #include
3 |
4 | int main(int argc, char *argv[]) {
5 | QApplication a(argc, argv);
6 | MainWindow w;
7 |
8 | // icon
9 | QIcon icon(":/icon.png");
10 | w.setWindowIcon(icon);
11 |
12 | w.show();
13 |
14 | return a.exec();
15 | }
16 |
--------------------------------------------------------------------------------
/src/aboutwindow.h:
--------------------------------------------------------------------------------
1 | #ifndef ABOUTWINDOW_H
2 | #define ABOUTWINDOW_H
3 |
4 | #include
5 |
6 | namespace Ui {
7 | class aboutWindow;
8 | }
9 |
10 | class aboutWindow : public QDialog
11 | {
12 | Q_OBJECT
13 |
14 | public:
15 | explicit aboutWindow(QWidget *parent = 0);
16 | ~aboutWindow();
17 |
18 | private:
19 | Ui::aboutWindow *ui;
20 | };
21 |
22 | #endif // ABOUTWINDOW_H
23 |
--------------------------------------------------------------------------------
/src/chart/chartPart2.html:
--------------------------------------------------------------------------------
1 |
2 | ]
3 | };
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
19 |
20 |
21 |
22 |