From 238a56fb98863adc25c9f368a38756a5c086c98e Mon Sep 17 00:00:00 2001 From: Ali Hatami Date: Thu, 16 May 2024 18:22:07 +0330 Subject: [PATCH] First Commit --- LoggerShark.pro | 34 +++++ LoggerShark.pro.user | 332 +++++++++++++++++++++++++++++++++++++++++++ MainWindow.cpp | 15 ++ MainWindow.h | 21 +++ MainWindow.ui | 206 +++++++++++++++++++++++++++ main.cpp | 11 ++ resources.qrc | 2 + 7 files changed, 621 insertions(+) create mode 100644 LoggerShark.pro create mode 100644 LoggerShark.pro.user create mode 100644 MainWindow.cpp create mode 100644 MainWindow.h create mode 100644 MainWindow.ui create mode 100644 main.cpp create mode 100644 resources.qrc diff --git a/LoggerShark.pro b/LoggerShark.pro new file mode 100644 index 0000000..8ff9ec4 --- /dev/null +++ b/LoggerShark.pro @@ -0,0 +1,34 @@ +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +CONFIG += c++11 + +# The following define makes your compiler emit warnings if you use +# any Qt feature that has been marked deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# You can also make your code fail to compile if it uses deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + +SOURCES += \ + main.cpp \ + MainWindow.cpp + +HEADERS += \ + MainWindow.h + +FORMS += \ + MainWindow.ui + +# Default rules for deployment. +qnx: target.path = /tmp/$${TARGET}/bin +else: unix:!android: target.path = /opt/$${TARGET}/bin +!isEmpty(target.path): INSTALLS += target + +RESOURCES += \ + resources.qrc diff --git a/LoggerShark.pro.user b/LoggerShark.pro.user new file mode 100644 index 0000000..60627b2 --- /dev/null +++ b/LoggerShark.pro.user @@ -0,0 +1,332 @@ + + + + + + EnvironmentId + {59306388-5219-41bd-bd6d-bb0169c1cb4c} + + + ProjectExplorer.Project.ActiveTarget + 0 + + + ProjectExplorer.Project.EditorSettings + + true + false + true + + Cpp + + CppGlobal + + + + QmlJS + + QmlJSGlobal + + + 2 + UTF-8 + false + 4 + false + 80 + true + true + 1 + true + false + 0 + true + true + 0 + 8 + true + 1 + true + true + true + false + + + + ProjectExplorer.Project.PluginSettings + + + + ProjectExplorer.Project.Target.0 + + Desktop Qt 5.13.2 GCC 64bit + Desktop Qt 5.13.2 GCC 64bit + qt.qt5.5132.gcc_64_kit + 0 + 0 + 0 + + /home/developer/host-projects/build-LoggerShark-Desktop_Qt_5_13_2_GCC_64bit-Debug + + + true + qmake + + QtProjectManager.QMakeBuildStep + true + + false + false + false + + + true + Make + + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + + ProjectExplorer.BuildSteps.Build + + + + true + Make + + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Debug + Debug + Qt4ProjectManager.Qt4BuildConfiguration + 2 + true + + + /home/developer/host-projects/build-LoggerShark-Desktop_Qt_5_13_2_GCC_64bit-Release + + + true + qmake + + QtProjectManager.QMakeBuildStep + false + + false + false + true + + + true + Make + + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + + ProjectExplorer.BuildSteps.Build + + + + true + Make + + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Release + Release + Qt4ProjectManager.Qt4BuildConfiguration + 0 + true + + + /home/developer/host-projects/build-LoggerShark-Desktop_Qt_5_13_2_GCC_64bit-Profile + + + true + qmake + + QtProjectManager.QMakeBuildStep + true + + false + true + true + + + true + Make + + Qt4ProjectManager.MakeStep + + false + + + false + + 2 + Build + + ProjectExplorer.BuildSteps.Build + + + + true + Make + + Qt4ProjectManager.MakeStep + + true + clean + + false + + 1 + Clean + + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Profile + Profile + Qt4ProjectManager.Qt4BuildConfiguration + 0 + true + + 3 + + + 0 + Deploy + + ProjectExplorer.BuildSteps.Deploy + + 1 + Deploy Configuration + + ProjectExplorer.DefaultDeployConfiguration + + 1 + + + dwarf + + cpu-cycles + + + 250 + -F + true + 4096 + false + false + 1000 + + true + + false + false + false + false + true + 0.01 + 10 + true + kcachegrind + 1 + 25 + + 1 + true + false + true + valgrind + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + + 2 + + + Custom Executable + + ProjectExplorer.CustomExecutableRunConfiguration + + 3768 + false + true + false + false + true + + + + 1 + + + + ProjectExplorer.Project.TargetCount + 1 + + + ProjectExplorer.Project.Updater.FileVersion + 22 + + + Version + 22 + + diff --git a/MainWindow.cpp b/MainWindow.cpp new file mode 100644 index 0000000..ff126e8 --- /dev/null +++ b/MainWindow.cpp @@ -0,0 +1,15 @@ +#include "MainWindow.h" +#include "ui_MainWindow.h" + +MainWindow::MainWindow(QWidget *parent) + : QMainWindow(parent) + , ui(new Ui::MainWindow) +{ + ui->setupUi(this); +} + +MainWindow::~MainWindow() +{ + delete ui; +} + diff --git a/MainWindow.h b/MainWindow.h new file mode 100644 index 0000000..4643e32 --- /dev/null +++ b/MainWindow.h @@ -0,0 +1,21 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include + +QT_BEGIN_NAMESPACE +namespace Ui { class MainWindow; } +QT_END_NAMESPACE + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + MainWindow(QWidget *parent = nullptr); + ~MainWindow(); + +private: + Ui::MainWindow *ui; +}; +#endif // MAINWINDOW_H diff --git a/MainWindow.ui b/MainWindow.ui new file mode 100644 index 0000000..9eb7c08 --- /dev/null +++ b/MainWindow.ui @@ -0,0 +1,206 @@ + + + MainWindow + + + + 0 + 0 + 1270 + 720 + + + + + 680 + 480 + + + + + 1920 + 1080 + + + + MainWindow + + + + + + + + + + + + + + Filter + + + + + + + Advaced + + + + + + + + + + + + + + + + + + + 0 + 0 + 1270 + 20 + + + + false + + + true + + + + File + + + + + + + + + + + Help + + + + + + + Capture + + + + + + + + + + + + + toolBar + + + true + + + TopToolBarArea + + + false + + + + + Open + + + Open a log file from disk ... + + + Ctrl+O + + + + + Exit + + + + + Start Capture + + + F9 + + + + + New Capture + + + F10 + + + + + End Capture + + + F11 + + + + + About + + + + + Save + + + Ctrl+S + + + + + Help + + + F1 + + + + + Save As + + + Save the log file... + + + Ctrl+Shift+S + + + + + Close + + + Ctrl+W + + + + + + diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..0a0916f --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include "MainWindow.h" + +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + return a.exec(); +} diff --git a/resources.qrc b/resources.qrc new file mode 100644 index 0000000..90f4a83 --- /dev/null +++ b/resources.qrc @@ -0,0 +1,2 @@ + +