From 55b32933e3494c84e74141cdb8b1d2b7293bb3b3 Mon Sep 17 00:00:00 2001 From: Crimson Date: Tue, 20 Jun 2023 22:06:00 +0800 Subject: [PATCH] Initial commit --- .gitignore | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 22 +++++++++++++++++++++ README.md | 3 +++ 3 files changed, 81 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..97437bf --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +# ---> Qt +# C++ objects and libs +*.slo +*.lo +*.o +*.a +*.la +*.lai +*.so +*.so.* +*.dll +*.dylib + +# Qt-es +object_script.*.Release +object_script.*.Debug +*_plugin_import.cpp +/.qmake.cache +/.qmake.stash +*.pro.user +*.pro.user.* +*.qbs.user +*.qbs.user.* +*.moc +moc_*.cpp +moc_*.h +qrc_*.cpp +ui_*.h +*.qmlc +*.jsc +Makefile* +*build-* +*.qm +*.prl + +# Qt unit tests +target_wrapper.* + +# QtCreator +*.autosave + +# QtCreator Qml +*.qmlproject.user +*.qmlproject.user.* + +# QtCreator CMake +CMakeLists.txt.user* + +# QtCreator 4.8< compilation database +compile_commands.json + +# QtCreator local machine specific files for imported projects +*creator.user* + +*_qmlcache.qrc + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bd94b55 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +The Qt Company Qt LGPL Exception version 1.1 + +As an additional permission to the GNU Lesser General Public License version +2.1, the object code form of a "work that uses the Library" may incorporate +material from a header file that is part of the Library. You may distribute +such object code under terms of your choice, provided that: + (i) the header files of the Library have not been modified; and + (ii) the incorporated material is limited to numerical parameters, data + structure layouts, accessors, macros, inline functions and + templates; and + (iii) you comply with the terms of Section 6 of the GNU Lesser General + Public License version 2.1. + +Moreover, you may apply this exception to a modified version of the Library, +provided that such modification does not involve copying material from the +Library into the modified Library's header files unless such material is +limited to (i) numerical parameters; (ii) data structure layouts; +(iii) accessors; and (iv) small macros, templates and inline functions of +five lines or less in length. + +Furthermore, you are not required to apply this additional permission to a +modified version of the Library. diff --git a/README.md b/README.md new file mode 100644 index 0000000..0d36b70 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# TabEditor + +这个是一个简约的文本文件编辑工具,主要用于编辑以制表符分隔的数据文本文件。与使用Excel编辑相比,该程序可以确保文本文件的格式和内容不会发生改变,提供更可靠的编辑功能。它简约直观的界面使用户能够轻松地加载、编辑和保存这类文本文件。 \ No newline at end of file