diff --git a/CMakeLists.txt b/CMakeLists.txt index b95c66f..8c6d3e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,6 @@ project(Regression) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) -set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) set(CMAKE_AUTOUIC_SEARCH_PATHS include/ui) @@ -18,12 +17,18 @@ file(GLOB_RECURSE source_files file(GLOB_RECURSE include_files "include/*.hpp" - "include/*.ui" ) +file(GLOB_RECURSE ui_files + "include/ui/*.ui" +) + +qt5_wrap_ui(target_ui_files ${ui_files}) + add_executable(regression ${include_files} ${source_files} + ${target_ui_files} ) target_include_directories(regression PRIVATE diff --git a/include/MainWindow.hpp b/include/MainWindow.hpp index 848dce0..c54ec44 100644 --- a/include/MainWindow.hpp +++ b/include/MainWindow.hpp @@ -11,9 +11,12 @@ class MainWindow : public QMainWindow Q_OBJECT public: - explicit MainWindow(QWidget* parent = nullptr); + explicit MainWindow(char** argv, QWidget* parent = nullptr); ~MainWindow(); + int Failed() { return error_code; } + private: Ui::MainWindow* ui; + int error_code; }; \ No newline at end of file diff --git a/include/PlotWidget.hpp b/include/PlotWidget.hpp new file mode 100644 index 0000000..9828a9d --- /dev/null +++ b/include/PlotWidget.hpp @@ -0,0 +1,28 @@ +#pragma once + +#include +#include + +namespace Ui { + class PlotWidget; +} + +typedef struct { + double x, y; +} DataPoint; + +class PlotWidget : public QWidget +{ + Q_OBJECT + +public: + PlotWidget(QWidget* parent = nullptr); + ~PlotWidget(); + + int SetDataSource(const std::string& filename); + +private: + Ui::PlotWidget* ui; + + std::vector* data; +}; \ No newline at end of file diff --git a/include/ui/MainWindow.ui b/include/ui/MainWindow.ui index 6d9cf07..e2709c8 100644 --- a/include/ui/MainWindow.ui +++ b/include/ui/MainWindow.ui @@ -11,27 +11,20 @@ - MainWindow + Regression - + - 146 - 102 - 271 - 91 + -1 + -1 + 801 + 551 - - - 28 - 75 - true - - - - TextLabel + + false @@ -41,12 +34,20 @@ 0 0 800 - 21 + 26 + + + PlotWidget + QWidget +
PlotWidget.hpp
+ 1 +
+
diff --git a/include/ui/PlotWidget.ui b/include/ui/PlotWidget.ui new file mode 100644 index 0000000..3bf2818 --- /dev/null +++ b/include/ui/PlotWidget.ui @@ -0,0 +1,36 @@ + + + PlotWidget + + + + 0 + 0 + 718 + 572 + + + + Form + + + + + 35 + 31 + 651 + 511 + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:6.6pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + + + + + + diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 3ac0d22..27c436c 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1,11 +1,12 @@ #include "MainWindow.hpp" #include "ui_MainWindow.h" -MainWindow::MainWindow(QWidget* parent) : +MainWindow::MainWindow(char** argv, QWidget* parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); - ui->label->setText("Hello, World!"); + + error_code = ui->plot->SetDataSource(argv[1]); } MainWindow::~MainWindow() diff --git a/src/PlotWidget.cpp b/src/PlotWidget.cpp new file mode 100644 index 0000000..a7b066d --- /dev/null +++ b/src/PlotWidget.cpp @@ -0,0 +1,50 @@ +#include "PlotWidget.hpp" +#include "ui_PlotWidget.h" + +#include +#include + +#include "csv.h" + +PlotWidget::PlotWidget(QWidget* parent) : + QWidget(parent), ui(new Ui::PlotWidget), data(nullptr) +{ + ui->setupUi(this); +} + +PlotWidget::~PlotWidget() +{ + delete data; + delete ui; +} + +int PlotWidget::SetDataSource(const std::string& filename) +{ + try + { + io::CSVReader<2> reader(filename); + + data = new std::vector; + + DataPoint dp; + while (reader.read_row(dp.x, dp.y)) + data->push_back(dp); + } + catch (io::error::base& err) + { + if (data != nullptr) delete data; + + QMessageBox::critical(this, "Error", err.what()); + return 1; + } + + // TODO: Remove, just for testing the CSV reader + QString tmp_string = ""; + for (DataPoint& dp : *data) + tmp_string += QString::asprintf("", dp.x, dp.y); + tmp_string += "
%f%f
"; + + ui->tmp_CSVDisplay->insertHtml(tmp_string); + + return 0; +} diff --git a/src/main.cpp b/src/main.cpp index 2503239..22254e1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,7 +25,11 @@ int main(int argc, char** argv) return 1; } - MainWindow window; + MainWindow window(argv); + int err_code = window.Failed(); + if (err_code) + return err_code; + window.show(); return app.exec();