diff --git a/RasterProcessTool.cpp b/RasterProcessTool.cpp new file mode 100644 index 0000000..1d721d8 --- /dev/null +++ b/RasterProcessTool.cpp @@ -0,0 +1,10 @@ +#include "RasterProcessTool.h" + +RasterProcessTool::RasterProcessTool(QWidget *parent) + : QMainWindow(parent) +{ + ui.setupUi(this); +} + +RasterProcessTool::~RasterProcessTool() +{} diff --git a/RasterProcessTool.h b/RasterProcessTool.h new file mode 100644 index 0000000..1f48ec6 --- /dev/null +++ b/RasterProcessTool.h @@ -0,0 +1,16 @@ +#pragma once + +#include +#include "ui_RasterProcessTool.h" + +class RasterProcessTool : public QMainWindow +{ + Q_OBJECT + +public: + RasterProcessTool(QWidget *parent = nullptr); + ~RasterProcessTool(); + +private: + Ui::RasterProcessToolClass ui; +}; diff --git a/RasterProcessTool.qrc b/RasterProcessTool.qrc new file mode 100644 index 0000000..bae63b1 --- /dev/null +++ b/RasterProcessTool.qrc @@ -0,0 +1,4 @@ + + + + diff --git a/RasterProcessTool.sln b/RasterProcessTool.sln new file mode 100644 index 0000000..132d40d --- /dev/null +++ b/RasterProcessTool.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35122.118 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RasterProcessTool", "RasterProcessTool.vcxproj", "{7EF67DAA-DBC0-4B7F-80E8-11B4D2CB7EC2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7EF67DAA-DBC0-4B7F-80E8-11B4D2CB7EC2}.Debug|x64.ActiveCfg = Debug|x64 + {7EF67DAA-DBC0-4B7F-80E8-11B4D2CB7EC2}.Debug|x64.Build.0 = Debug|x64 + {7EF67DAA-DBC0-4B7F-80E8-11B4D2CB7EC2}.Release|x64.ActiveCfg = Release|x64 + {7EF67DAA-DBC0-4B7F-80E8-11B4D2CB7EC2}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {179F0A62-C631-4667-AD03-3780ADE09F41} + EndGlobalSection +EndGlobal diff --git a/RasterProcessTool.ui b/RasterProcessTool.ui new file mode 100644 index 0000000..292cf0e --- /dev/null +++ b/RasterProcessTool.ui @@ -0,0 +1,28 @@ + + RasterProcessToolClass + + + RasterProcessToolClass + + + + 0 + 0 + 600 + 400 + + + + RasterProcessTool + + + + + + + + + + + + diff --git a/RasterProcessTool.vcxproj b/RasterProcessTool.vcxproj new file mode 100644 index 0000000..94ebdef --- /dev/null +++ b/RasterProcessTool.vcxproj @@ -0,0 +1,112 @@ + + + + + Debug + x64 + + + Release + x64 + + + + {7EF67DAA-DBC0-4B7F-80E8-11B4D2CB7EC2} + QtVS_v304 + 10.0 + 10.0 + $(MSBuildProjectDirectory)\QtMsBuild + + + + Application + v143 + true + Unicode + + + Application + v143 + false + true + Unicode + + + + + + + tools_qt5 + core;gui;widgets + debug + + + tools_qt5 + core;gui;widgets + release + + + + + + + + + + + + + + + + + + + + + + true + Level3 + true + true + + + Windows + true + + + + + true + Level3 + true + true + true + true + + + Windows + false + true + true + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/RasterProcessTool.vcxproj.filters b/RasterProcessTool.vcxproj.filters new file mode 100644 index 0000000..446a9f9 --- /dev/null +++ b/RasterProcessTool.vcxproj.filters @@ -0,0 +1,48 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + qml;cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + qrc;rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + {99349809-55BA-4b9d-BF79-8FDBB0286EB3} + ui + + + {639EADAA-A684-42e4-A9AD-28FC9BCB8F7C} + ts + + + + + Resource Files + + + Form Files + + + Header Files + + + Source Files + + + + + Resource Files + + + Resource Files + + + + diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..98b1eef --- /dev/null +++ b/main.cpp @@ -0,0 +1,10 @@ +#include "RasterProcessTool.h" +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + RasterProcessTool w; + w.show(); + return a.exec(); +}