├── .gitignore ├── CHANGES.TXT ├── INSTALL.TXT ├── LICENSE.LGPL ├── README.md ├── VERSION ├── design ├── members.txt ├── tianchi.doxygen └── tianchi.png ├── help ├── license_zh_CN.txt └── tianchi-0.0.2.chm ├── history.txt ├── include ├── tianchi.h ├── tianchi.pri └── tianchi │ ├── chinese │ └── tcchinese.h │ ├── core │ ├── tcclasses.h │ ├── tccommon.h │ ├── tcfunctionalsortfilterproxymodel.h │ ├── tcmath.h │ ├── tcrecentuse.hpp │ ├── tcsingleton.hpp │ ├── tcstring.h │ ├── tctuple.hpp │ ├── tcutils.h │ └── tcvariantmaptablemodel.h │ ├── file │ ├── tcdir.h │ ├── tcexcelreader.h │ ├── tcfile.h │ ├── tcfileio.h │ ├── tcjson.h │ ├── tclog.h │ └── tcmsexcel.h │ ├── gui │ ├── tcarrowbutton.h │ ├── tcclicklabel.h │ ├── tccounter.h │ ├── tcdateedit.h │ ├── tcflowlayout.h │ ├── tcformutils.h │ ├── tcgloweffect.h │ ├── tcguiutils.h │ ├── tcheadersetupdialog.h │ ├── tclineedit.h │ ├── tcmarqueelabel.h │ ├── tcscreencutdialog.h │ └── tcsortpaginationtableview.h │ ├── network │ ├── tcdownloadhttp.h │ ├── tcsingleinstance.h │ └── tcudp.h │ ├── os │ └── tcos.h │ ├── sql │ ├── tcdataaccess.h │ ├── tcdatabase.h │ ├── tcdbprocess.h │ ├── tcmssql.h │ └── tcoracle.h │ ├── tcglobal.h │ └── widget │ ├── tctextruler.h │ └── tctreeex.h ├── readme.zh_CN.txt ├── res ├── qqwry.dat ├── tianchi.qrc └── tianchi │ ├── alignBottom.png │ ├── alignCenter.png │ ├── alignLeft.png │ ├── alignRight.png │ ├── alignTop.png │ └── tianchi.ico ├── src ├── 3rdparty │ ├── 3rdparty.pri │ ├── bcmath │ │ ├── LICENSE.LGPL │ │ ├── bcmath.cpp │ │ ├── bcmath.h │ │ ├── bcmath.pri │ │ ├── bcmath_p.cpp │ │ ├── bcmath_p.h │ │ ├── debug.cpp │ │ ├── div.cpp │ │ ├── output.cpp │ │ └── recmul.cpp │ └── libqqwry │ │ ├── LICENSE.LGPL │ │ ├── qqwry.c │ │ ├── qqwry.h │ │ └── qqwry.pri ├── chinese │ ├── msime.h │ └── tcchinese.cpp ├── core │ ├── tcclasses.cpp │ ├── tccommon.cpp │ ├── tcfunctionalsortfilterproxymodel.cpp │ ├── tcmath.cpp │ ├── tcstring.cpp │ ├── tcutils.cpp │ └── tcvariantmaptablemodel.cpp ├── file │ ├── tcdir.cpp │ ├── tcdirectory.cpp.autosave │ ├── tcexcelreader.cpp │ ├── tcfile.cpp │ ├── tcfileio.cpp │ ├── tcjson.cpp │ ├── tclog.cpp │ └── tcmsexcel.cpp ├── gui │ ├── tcarrowbutton.cpp │ ├── tcclicklabel.cpp │ ├── tccounter.cpp │ ├── tcdateedit.cpp │ ├── tcflowlayout.cpp │ ├── tcformutils.cpp │ ├── tcgloweffect.cpp │ ├── tcguiutils.cpp │ ├── tcheadersetupdialog.cpp │ ├── tcheadersetupdialog.ui │ ├── tclineedit.cpp │ ├── tcmarqueelabel.cpp │ ├── tcscreencutdialog.cpp │ └── tcsortpaginationtableview.cpp ├── lib.pri ├── network │ ├── tcdownloadhttp.cpp │ ├── tcsingleinstance.cpp │ └── tcudp.cpp ├── os │ └── tcos.cpp ├── plugin.pri ├── plugin.rc ├── plugin │ ├── tcclicklabelplugin.cpp │ ├── tcclicklabelplugin.h │ ├── tcdateeditplugin.cpp │ ├── tcdateeditplugin.h │ ├── tcdesignerwidgets.cpp │ ├── tcdesignerwidgets.h │ ├── tclineeditplugin.cpp │ ├── tclineeditplugin.h │ ├── tcmarqueelabelplugin.cpp │ ├── tcmarqueelabelplugin.h │ └── tianchiplugin.pri ├── sql │ ├── tcdataaccess.cpp │ ├── tcdatabase.cpp │ ├── tcdbprocess.cpp │ ├── tcmssql.cpp │ └── tcoracle.cpp ├── tianchi.rc ├── tianchi_gcc_pch.h └── widget │ ├── tctextruler.cpp │ └── tctreeex.cpp └── thanks.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/CHANGES.TXT -------------------------------------------------------------------------------- /INSTALL.TXT: -------------------------------------------------------------------------------- 1 | please view build/README.TXT 2 | -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.0.3 build20171011 2 | -------------------------------------------------------------------------------- /design/members.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/design/members.txt -------------------------------------------------------------------------------- /design/tianchi.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/design/tianchi.doxygen -------------------------------------------------------------------------------- /design/tianchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/design/tianchi.png -------------------------------------------------------------------------------- /help/license_zh_CN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/help/license_zh_CN.txt -------------------------------------------------------------------------------- /help/tianchi-0.0.2.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/help/tianchi-0.0.2.chm -------------------------------------------------------------------------------- /history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/history.txt -------------------------------------------------------------------------------- /include/tianchi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi.h -------------------------------------------------------------------------------- /include/tianchi.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi.pri -------------------------------------------------------------------------------- /include/tianchi/chinese/tcchinese.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/chinese/tcchinese.h -------------------------------------------------------------------------------- /include/tianchi/core/tcclasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcclasses.h -------------------------------------------------------------------------------- /include/tianchi/core/tccommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tccommon.h -------------------------------------------------------------------------------- /include/tianchi/core/tcfunctionalsortfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcfunctionalsortfilterproxymodel.h -------------------------------------------------------------------------------- /include/tianchi/core/tcmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcmath.h -------------------------------------------------------------------------------- /include/tianchi/core/tcrecentuse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcrecentuse.hpp -------------------------------------------------------------------------------- /include/tianchi/core/tcsingleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcsingleton.hpp -------------------------------------------------------------------------------- /include/tianchi/core/tcstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcstring.h -------------------------------------------------------------------------------- /include/tianchi/core/tctuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tctuple.hpp -------------------------------------------------------------------------------- /include/tianchi/core/tcutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcutils.h -------------------------------------------------------------------------------- /include/tianchi/core/tcvariantmaptablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/core/tcvariantmaptablemodel.h -------------------------------------------------------------------------------- /include/tianchi/file/tcdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/file/tcdir.h -------------------------------------------------------------------------------- /include/tianchi/file/tcexcelreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/file/tcexcelreader.h -------------------------------------------------------------------------------- /include/tianchi/file/tcfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/file/tcfile.h -------------------------------------------------------------------------------- /include/tianchi/file/tcfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/file/tcfileio.h -------------------------------------------------------------------------------- /include/tianchi/file/tcjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/file/tcjson.h -------------------------------------------------------------------------------- /include/tianchi/file/tclog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/file/tclog.h -------------------------------------------------------------------------------- /include/tianchi/file/tcmsexcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/file/tcmsexcel.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcarrowbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcarrowbutton.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcclicklabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcclicklabel.h -------------------------------------------------------------------------------- /include/tianchi/gui/tccounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tccounter.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcdateedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcdateedit.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcflowlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcflowlayout.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcformutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcformutils.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcgloweffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcgloweffect.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcguiutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcguiutils.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcheadersetupdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcheadersetupdialog.h -------------------------------------------------------------------------------- /include/tianchi/gui/tclineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tclineedit.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcmarqueelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcmarqueelabel.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcscreencutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcscreencutdialog.h -------------------------------------------------------------------------------- /include/tianchi/gui/tcsortpaginationtableview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/gui/tcsortpaginationtableview.h -------------------------------------------------------------------------------- /include/tianchi/network/tcdownloadhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/network/tcdownloadhttp.h -------------------------------------------------------------------------------- /include/tianchi/network/tcsingleinstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/network/tcsingleinstance.h -------------------------------------------------------------------------------- /include/tianchi/network/tcudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/network/tcudp.h -------------------------------------------------------------------------------- /include/tianchi/os/tcos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/os/tcos.h -------------------------------------------------------------------------------- /include/tianchi/sql/tcdataaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/sql/tcdataaccess.h -------------------------------------------------------------------------------- /include/tianchi/sql/tcdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/sql/tcdatabase.h -------------------------------------------------------------------------------- /include/tianchi/sql/tcdbprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/sql/tcdbprocess.h -------------------------------------------------------------------------------- /include/tianchi/sql/tcmssql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/sql/tcmssql.h -------------------------------------------------------------------------------- /include/tianchi/sql/tcoracle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/sql/tcoracle.h -------------------------------------------------------------------------------- /include/tianchi/tcglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/tcglobal.h -------------------------------------------------------------------------------- /include/tianchi/widget/tctextruler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/widget/tctextruler.h -------------------------------------------------------------------------------- /include/tianchi/widget/tctreeex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/include/tianchi/widget/tctreeex.h -------------------------------------------------------------------------------- /readme.zh_CN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/readme.zh_CN.txt -------------------------------------------------------------------------------- /res/qqwry.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/qqwry.dat -------------------------------------------------------------------------------- /res/tianchi.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/tianchi.qrc -------------------------------------------------------------------------------- /res/tianchi/alignBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/tianchi/alignBottom.png -------------------------------------------------------------------------------- /res/tianchi/alignCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/tianchi/alignCenter.png -------------------------------------------------------------------------------- /res/tianchi/alignLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/tianchi/alignLeft.png -------------------------------------------------------------------------------- /res/tianchi/alignRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/tianchi/alignRight.png -------------------------------------------------------------------------------- /res/tianchi/alignTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/tianchi/alignTop.png -------------------------------------------------------------------------------- /res/tianchi/tianchi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/res/tianchi/tianchi.ico -------------------------------------------------------------------------------- /src/3rdparty/3rdparty.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/3rdparty.pri -------------------------------------------------------------------------------- /src/3rdparty/bcmath/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/LICENSE.LGPL -------------------------------------------------------------------------------- /src/3rdparty/bcmath/bcmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/bcmath.cpp -------------------------------------------------------------------------------- /src/3rdparty/bcmath/bcmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/bcmath.h -------------------------------------------------------------------------------- /src/3rdparty/bcmath/bcmath.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/bcmath.pri -------------------------------------------------------------------------------- /src/3rdparty/bcmath/bcmath_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/bcmath_p.cpp -------------------------------------------------------------------------------- /src/3rdparty/bcmath/bcmath_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/bcmath_p.h -------------------------------------------------------------------------------- /src/3rdparty/bcmath/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/debug.cpp -------------------------------------------------------------------------------- /src/3rdparty/bcmath/div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/div.cpp -------------------------------------------------------------------------------- /src/3rdparty/bcmath/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/output.cpp -------------------------------------------------------------------------------- /src/3rdparty/bcmath/recmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/bcmath/recmul.cpp -------------------------------------------------------------------------------- /src/3rdparty/libqqwry/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/libqqwry/LICENSE.LGPL -------------------------------------------------------------------------------- /src/3rdparty/libqqwry/qqwry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/libqqwry/qqwry.c -------------------------------------------------------------------------------- /src/3rdparty/libqqwry/qqwry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/libqqwry/qqwry.h -------------------------------------------------------------------------------- /src/3rdparty/libqqwry/qqwry.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/3rdparty/libqqwry/qqwry.pri -------------------------------------------------------------------------------- /src/chinese/msime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/chinese/msime.h -------------------------------------------------------------------------------- /src/chinese/tcchinese.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/chinese/tcchinese.cpp -------------------------------------------------------------------------------- /src/core/tcclasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/core/tcclasses.cpp -------------------------------------------------------------------------------- /src/core/tccommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/core/tccommon.cpp -------------------------------------------------------------------------------- /src/core/tcfunctionalsortfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/core/tcfunctionalsortfilterproxymodel.cpp -------------------------------------------------------------------------------- /src/core/tcmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/core/tcmath.cpp -------------------------------------------------------------------------------- /src/core/tcstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/core/tcstring.cpp -------------------------------------------------------------------------------- /src/core/tcutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/core/tcutils.cpp -------------------------------------------------------------------------------- /src/core/tcvariantmaptablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/core/tcvariantmaptablemodel.cpp -------------------------------------------------------------------------------- /src/file/tcdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tcdir.cpp -------------------------------------------------------------------------------- /src/file/tcdirectory.cpp.autosave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tcdirectory.cpp.autosave -------------------------------------------------------------------------------- /src/file/tcexcelreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tcexcelreader.cpp -------------------------------------------------------------------------------- /src/file/tcfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tcfile.cpp -------------------------------------------------------------------------------- /src/file/tcfileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tcfileio.cpp -------------------------------------------------------------------------------- /src/file/tcjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tcjson.cpp -------------------------------------------------------------------------------- /src/file/tclog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tclog.cpp -------------------------------------------------------------------------------- /src/file/tcmsexcel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/file/tcmsexcel.cpp -------------------------------------------------------------------------------- /src/gui/tcarrowbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcarrowbutton.cpp -------------------------------------------------------------------------------- /src/gui/tcclicklabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcclicklabel.cpp -------------------------------------------------------------------------------- /src/gui/tccounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tccounter.cpp -------------------------------------------------------------------------------- /src/gui/tcdateedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcdateedit.cpp -------------------------------------------------------------------------------- /src/gui/tcflowlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcflowlayout.cpp -------------------------------------------------------------------------------- /src/gui/tcformutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcformutils.cpp -------------------------------------------------------------------------------- /src/gui/tcgloweffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcgloweffect.cpp -------------------------------------------------------------------------------- /src/gui/tcguiutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcguiutils.cpp -------------------------------------------------------------------------------- /src/gui/tcheadersetupdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcheadersetupdialog.cpp -------------------------------------------------------------------------------- /src/gui/tcheadersetupdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcheadersetupdialog.ui -------------------------------------------------------------------------------- /src/gui/tclineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tclineedit.cpp -------------------------------------------------------------------------------- /src/gui/tcmarqueelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcmarqueelabel.cpp -------------------------------------------------------------------------------- /src/gui/tcscreencutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcscreencutdialog.cpp -------------------------------------------------------------------------------- /src/gui/tcsortpaginationtableview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/gui/tcsortpaginationtableview.cpp -------------------------------------------------------------------------------- /src/lib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/lib.pri -------------------------------------------------------------------------------- /src/network/tcdownloadhttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/network/tcdownloadhttp.cpp -------------------------------------------------------------------------------- /src/network/tcsingleinstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/network/tcsingleinstance.cpp -------------------------------------------------------------------------------- /src/network/tcudp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/network/tcudp.cpp -------------------------------------------------------------------------------- /src/os/tcos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/os/tcos.cpp -------------------------------------------------------------------------------- /src/plugin.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin.pri -------------------------------------------------------------------------------- /src/plugin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin.rc -------------------------------------------------------------------------------- /src/plugin/tcclicklabelplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcclicklabelplugin.cpp -------------------------------------------------------------------------------- /src/plugin/tcclicklabelplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcclicklabelplugin.h -------------------------------------------------------------------------------- /src/plugin/tcdateeditplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcdateeditplugin.cpp -------------------------------------------------------------------------------- /src/plugin/tcdateeditplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcdateeditplugin.h -------------------------------------------------------------------------------- /src/plugin/tcdesignerwidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcdesignerwidgets.cpp -------------------------------------------------------------------------------- /src/plugin/tcdesignerwidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcdesignerwidgets.h -------------------------------------------------------------------------------- /src/plugin/tclineeditplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tclineeditplugin.cpp -------------------------------------------------------------------------------- /src/plugin/tclineeditplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tclineeditplugin.h -------------------------------------------------------------------------------- /src/plugin/tcmarqueelabelplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcmarqueelabelplugin.cpp -------------------------------------------------------------------------------- /src/plugin/tcmarqueelabelplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tcmarqueelabelplugin.h -------------------------------------------------------------------------------- /src/plugin/tianchiplugin.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/plugin/tianchiplugin.pri -------------------------------------------------------------------------------- /src/sql/tcdataaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/sql/tcdataaccess.cpp -------------------------------------------------------------------------------- /src/sql/tcdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/sql/tcdatabase.cpp -------------------------------------------------------------------------------- /src/sql/tcdbprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/sql/tcdbprocess.cpp -------------------------------------------------------------------------------- /src/sql/tcmssql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/sql/tcmssql.cpp -------------------------------------------------------------------------------- /src/sql/tcoracle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/sql/tcoracle.cpp -------------------------------------------------------------------------------- /src/tianchi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/tianchi.rc -------------------------------------------------------------------------------- /src/tianchi_gcc_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/tianchi_gcc_pch.h -------------------------------------------------------------------------------- /src/widget/tctextruler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/widget/tctextruler.cpp -------------------------------------------------------------------------------- /src/widget/tctreeex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/src/widget/tctreeex.cpp -------------------------------------------------------------------------------- /thanks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qtcn/tianchi/HEAD/thanks.txt --------------------------------------------------------------------------------