├── .gitignore ├── FastTable.pro ├── README ├── Resources.qrc ├── Resources.rc ├── TODO.txt ├── examples └── VsTableWidget │ ├── VsTableWidget.pro │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── statisticsframe.cpp │ ├── statisticsframe.h │ └── statisticsframe.ui ├── images ├── CellBottom.png ├── CellBottomLeft.png ├── CellBottomLeftSelected.png ├── CellBottomRight.png ├── CellBottomRightSelected.png ├── CellBottomSelected.png ├── CellCenter.png ├── CellCenterSelected.png ├── CellLeft.png ├── CellLeftSelected.png ├── CellRight.png ├── CellRightSelected.png ├── CellTop.png ├── CellTopLeft.png ├── CellTopLeftSelected.png ├── CellTopRight.png ├── CellTopRightSelected.png ├── CellTopSelected.png ├── Find.png └── icon.ico ├── push.sh └── src ├── controller ├── aligndialog.cpp ├── aligndialog.h ├── aligndialog.ui ├── controllerdialog.cpp ├── controllerdialog.h ├── controllerdialog.ui ├── customfasttablepersonal.cpp ├── customfasttablepersonal.h ├── fasttablepersonal.cpp ├── fasttablepersonal.h ├── viewdialog.cpp ├── viewdialog.h └── viewdialog.ui ├── fasttable ├── customfasttablewidget.cpp ├── customfasttablewidget.h ├── fastdefines.h ├── fasttable.pri ├── fasttablewidget.cpp ├── fasttablewidget.h └── optimallist │ ├── optimallist.cpp │ ├── optimallist.h │ └── optimallist.pri ├── main.cpp ├── main ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui └── tests ├── publictablewidget.cpp ├── publictablewidget.h ├── testdialog.cpp ├── testdialog.h ├── testdialog.ui ├── testframe.cpp ├── testframe.h └── testframe.ui /.gitignore: -------------------------------------------------------------------------------- 1 | *build-* 2 | debug/ 3 | release/ 4 | *.pro.user* 5 | Makefile* 6 | *.pdb -------------------------------------------------------------------------------- /FastTable.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/FastTable.pro -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/Resources.qrc -------------------------------------------------------------------------------- /Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/Resources.rc -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/TODO.txt -------------------------------------------------------------------------------- /examples/VsTableWidget/VsTableWidget.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/VsTableWidget.pro -------------------------------------------------------------------------------- /examples/VsTableWidget/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/main.cpp -------------------------------------------------------------------------------- /examples/VsTableWidget/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/mainwindow.cpp -------------------------------------------------------------------------------- /examples/VsTableWidget/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/mainwindow.h -------------------------------------------------------------------------------- /examples/VsTableWidget/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/mainwindow.ui -------------------------------------------------------------------------------- /examples/VsTableWidget/statisticsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/statisticsframe.cpp -------------------------------------------------------------------------------- /examples/VsTableWidget/statisticsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/statisticsframe.h -------------------------------------------------------------------------------- /examples/VsTableWidget/statisticsframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/examples/VsTableWidget/statisticsframe.ui -------------------------------------------------------------------------------- /images/CellBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellBottom.png -------------------------------------------------------------------------------- /images/CellBottomLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellBottomLeft.png -------------------------------------------------------------------------------- /images/CellBottomLeftSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellBottomLeftSelected.png -------------------------------------------------------------------------------- /images/CellBottomRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellBottomRight.png -------------------------------------------------------------------------------- /images/CellBottomRightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellBottomRightSelected.png -------------------------------------------------------------------------------- /images/CellBottomSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellBottomSelected.png -------------------------------------------------------------------------------- /images/CellCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellCenter.png -------------------------------------------------------------------------------- /images/CellCenterSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellCenterSelected.png -------------------------------------------------------------------------------- /images/CellLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellLeft.png -------------------------------------------------------------------------------- /images/CellLeftSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellLeftSelected.png -------------------------------------------------------------------------------- /images/CellRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellRight.png -------------------------------------------------------------------------------- /images/CellRightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellRightSelected.png -------------------------------------------------------------------------------- /images/CellTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellTop.png -------------------------------------------------------------------------------- /images/CellTopLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellTopLeft.png -------------------------------------------------------------------------------- /images/CellTopLeftSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellTopLeftSelected.png -------------------------------------------------------------------------------- /images/CellTopRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellTopRight.png -------------------------------------------------------------------------------- /images/CellTopRightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellTopRightSelected.png -------------------------------------------------------------------------------- /images/CellTopSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/CellTopSelected.png -------------------------------------------------------------------------------- /images/Find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/Find.png -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/images/icon.ico -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- 1 | git push origin master -------------------------------------------------------------------------------- /src/controller/aligndialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/aligndialog.cpp -------------------------------------------------------------------------------- /src/controller/aligndialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/aligndialog.h -------------------------------------------------------------------------------- /src/controller/aligndialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/aligndialog.ui -------------------------------------------------------------------------------- /src/controller/controllerdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/controllerdialog.cpp -------------------------------------------------------------------------------- /src/controller/controllerdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/controllerdialog.h -------------------------------------------------------------------------------- /src/controller/controllerdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/controllerdialog.ui -------------------------------------------------------------------------------- /src/controller/customfasttablepersonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/customfasttablepersonal.cpp -------------------------------------------------------------------------------- /src/controller/customfasttablepersonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/customfasttablepersonal.h -------------------------------------------------------------------------------- /src/controller/fasttablepersonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/fasttablepersonal.cpp -------------------------------------------------------------------------------- /src/controller/fasttablepersonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/fasttablepersonal.h -------------------------------------------------------------------------------- /src/controller/viewdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/viewdialog.cpp -------------------------------------------------------------------------------- /src/controller/viewdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/viewdialog.h -------------------------------------------------------------------------------- /src/controller/viewdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/controller/viewdialog.ui -------------------------------------------------------------------------------- /src/fasttable/customfasttablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/customfasttablewidget.cpp -------------------------------------------------------------------------------- /src/fasttable/customfasttablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/customfasttablewidget.h -------------------------------------------------------------------------------- /src/fasttable/fastdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/fastdefines.h -------------------------------------------------------------------------------- /src/fasttable/fasttable.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/fasttable.pri -------------------------------------------------------------------------------- /src/fasttable/fasttablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/fasttablewidget.cpp -------------------------------------------------------------------------------- /src/fasttable/fasttablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/fasttablewidget.h -------------------------------------------------------------------------------- /src/fasttable/optimallist/optimallist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/optimallist/optimallist.cpp -------------------------------------------------------------------------------- /src/fasttable/optimallist/optimallist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/optimallist/optimallist.h -------------------------------------------------------------------------------- /src/fasttable/optimallist/optimallist.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/fasttable/optimallist/optimallist.pri -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/main/mainwindow.cpp -------------------------------------------------------------------------------- /src/main/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/main/mainwindow.h -------------------------------------------------------------------------------- /src/main/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/main/mainwindow.ui -------------------------------------------------------------------------------- /src/tests/publictablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/publictablewidget.cpp -------------------------------------------------------------------------------- /src/tests/publictablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/publictablewidget.h -------------------------------------------------------------------------------- /src/tests/testdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/testdialog.cpp -------------------------------------------------------------------------------- /src/tests/testdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/testdialog.h -------------------------------------------------------------------------------- /src/tests/testdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/testdialog.ui -------------------------------------------------------------------------------- /src/tests/testframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/testframe.cpp -------------------------------------------------------------------------------- /src/tests/testframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/testframe.h -------------------------------------------------------------------------------- /src/tests/testframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gris87/Qt_FastTableWidget/HEAD/src/tests/testframe.ui --------------------------------------------------------------------------------