├── .gitignore ├── LICENSE ├── MainWindow.ui ├── QtApp ├── MainWindow.cpp ├── MainWindow.h ├── QWComboBoxDelegate.cpp ├── QWComboBoxDelegate.h ├── QtApp.pro ├── images │ ├── add.svg │ ├── bar.svg │ ├── battery.svg │ ├── battery │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 24.png │ │ ├── 256.png │ │ ├── 32.png │ │ ├── 512.png │ │ ├── 64.png │ │ ├── barchart.png │ │ ├── gif.gif │ │ ├── histogram.png │ │ ├── piechart.png │ │ ├── table.png │ │ └── venn.png │ ├── cross.svg │ ├── figure.svg │ ├── histogram.svg │ ├── insert.svg │ ├── logout.svg │ ├── pie.svg │ ├── question.svg │ ├── return.svg │ ├── save.svg │ ├── search.svg │ ├── table.svg │ └── venn.svg ├── main.cpp ├── res.qrc └── ui_MainWindow.h ├── README.md ├── appMain.py ├── battery.db ├── identifier.sqlite ├── main.py ├── myChartView.py ├── myFigureCanvas.py ├── myMainWindow.py ├── requirements.txt ├── res_rc.py ├── ui_MainWindow.py └── uic.bat /.gitignore: -------------------------------------------------------------------------------- 1 | batterygui/ 2 | venv 3 | src 4 | target 5 | *.pyc 6 | .idea/ 7 | __pycache__/ 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/LICENSE -------------------------------------------------------------------------------- /MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/MainWindow.ui -------------------------------------------------------------------------------- /QtApp/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/MainWindow.cpp -------------------------------------------------------------------------------- /QtApp/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/MainWindow.h -------------------------------------------------------------------------------- /QtApp/QWComboBoxDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/QWComboBoxDelegate.cpp -------------------------------------------------------------------------------- /QtApp/QWComboBoxDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/QWComboBoxDelegate.h -------------------------------------------------------------------------------- /QtApp/QtApp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/QtApp.pro -------------------------------------------------------------------------------- /QtApp/images/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/add.svg -------------------------------------------------------------------------------- /QtApp/images/bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/bar.svg -------------------------------------------------------------------------------- /QtApp/images/battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery.svg -------------------------------------------------------------------------------- /QtApp/images/battery/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/128.png -------------------------------------------------------------------------------- /QtApp/images/battery/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/16.png -------------------------------------------------------------------------------- /QtApp/images/battery/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/24.png -------------------------------------------------------------------------------- /QtApp/images/battery/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/256.png -------------------------------------------------------------------------------- /QtApp/images/battery/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/32.png -------------------------------------------------------------------------------- /QtApp/images/battery/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/512.png -------------------------------------------------------------------------------- /QtApp/images/battery/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/64.png -------------------------------------------------------------------------------- /QtApp/images/battery/barchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/barchart.png -------------------------------------------------------------------------------- /QtApp/images/battery/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/gif.gif -------------------------------------------------------------------------------- /QtApp/images/battery/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/histogram.png -------------------------------------------------------------------------------- /QtApp/images/battery/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/piechart.png -------------------------------------------------------------------------------- /QtApp/images/battery/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/table.png -------------------------------------------------------------------------------- /QtApp/images/battery/venn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/battery/venn.png -------------------------------------------------------------------------------- /QtApp/images/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/cross.svg -------------------------------------------------------------------------------- /QtApp/images/figure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/figure.svg -------------------------------------------------------------------------------- /QtApp/images/histogram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/histogram.svg -------------------------------------------------------------------------------- /QtApp/images/insert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/insert.svg -------------------------------------------------------------------------------- /QtApp/images/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/logout.svg -------------------------------------------------------------------------------- /QtApp/images/pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/pie.svg -------------------------------------------------------------------------------- /QtApp/images/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/question.svg -------------------------------------------------------------------------------- /QtApp/images/return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/return.svg -------------------------------------------------------------------------------- /QtApp/images/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/save.svg -------------------------------------------------------------------------------- /QtApp/images/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/search.svg -------------------------------------------------------------------------------- /QtApp/images/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/table.svg -------------------------------------------------------------------------------- /QtApp/images/venn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/images/venn.svg -------------------------------------------------------------------------------- /QtApp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/main.cpp -------------------------------------------------------------------------------- /QtApp/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/res.qrc -------------------------------------------------------------------------------- /QtApp/ui_MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/QtApp/ui_MainWindow.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/README.md -------------------------------------------------------------------------------- /appMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/appMain.py -------------------------------------------------------------------------------- /battery.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/battery.db -------------------------------------------------------------------------------- /identifier.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/main.py -------------------------------------------------------------------------------- /myChartView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/myChartView.py -------------------------------------------------------------------------------- /myFigureCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/myFigureCanvas.py -------------------------------------------------------------------------------- /myMainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/myMainWindow.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/requirements.txt -------------------------------------------------------------------------------- /res_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/res_rc.py -------------------------------------------------------------------------------- /ui_MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/ui_MainWindow.py -------------------------------------------------------------------------------- /uic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShuHuang/batterygui/HEAD/uic.bat --------------------------------------------------------------------------------