├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── config ├── config.py └── skin │ └── white.qss ├── core ├── CpuLineChart.py ├── DynamicSpline.py ├── FileIconProvider.py ├── ImageView.py ├── MetroCircleProgress.py └── MySystemTrayIcon.py ├── doc ├── README_zh.md └── img │ ├── 0.png │ ├── 1.5.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── file_verison_info.txt ├── models ├── db.sql └── user.py ├── pyqt5_example.spec ├── pyqt5_example_exe.spec ├── requirements.txt ├── res ├── app.qrc ├── app_rc.py ├── icon │ ├── close.svg │ ├── minimize.svg │ ├── plus.svg │ ├── png_to_ico.py │ └── 首页.ico ├── image │ ├── American_Robin.jpg │ ├── fish.png │ └── register.jpg └── otf │ └── Social Media Circled.otf ├── start-qt-designer.bat ├── ui ├── close_dialog.py ├── close_dialog.ui ├── login_form.py ├── login_form.ui ├── main_window.py ├── main_window.ui ├── mysql_form.py ├── mysql_form.ui ├── register_form.py └── register_form.ui ├── ui_to_py.bat ├── utils ├── CommonHelper.py ├── connect_mysql.py ├── global_var.py └── logs.py └── win ├── close_dialog.py ├── login_form.py ├── main_win.py ├── mysql_form.py ├── register_form.py └── splash ├── core.py └── splash.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/app.py -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/config/config.py -------------------------------------------------------------------------------- /config/skin/white.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/config/skin/white.qss -------------------------------------------------------------------------------- /core/CpuLineChart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/core/CpuLineChart.py -------------------------------------------------------------------------------- /core/DynamicSpline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/core/DynamicSpline.py -------------------------------------------------------------------------------- /core/FileIconProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/core/FileIconProvider.py -------------------------------------------------------------------------------- /core/ImageView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/core/ImageView.py -------------------------------------------------------------------------------- /core/MetroCircleProgress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/core/MetroCircleProgress.py -------------------------------------------------------------------------------- /core/MySystemTrayIcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/core/MySystemTrayIcon.py -------------------------------------------------------------------------------- /doc/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/README_zh.md -------------------------------------------------------------------------------- /doc/img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/0.png -------------------------------------------------------------------------------- /doc/img/1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/1.5.png -------------------------------------------------------------------------------- /doc/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/1.png -------------------------------------------------------------------------------- /doc/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/2.png -------------------------------------------------------------------------------- /doc/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/3.png -------------------------------------------------------------------------------- /doc/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/4.png -------------------------------------------------------------------------------- /doc/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/5.png -------------------------------------------------------------------------------- /doc/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/doc/img/6.png -------------------------------------------------------------------------------- /file_verison_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/file_verison_info.txt -------------------------------------------------------------------------------- /models/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/models/db.sql -------------------------------------------------------------------------------- /models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/models/user.py -------------------------------------------------------------------------------- /pyqt5_example.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/pyqt5_example.spec -------------------------------------------------------------------------------- /pyqt5_example_exe.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/pyqt5_example_exe.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/app.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/app.qrc -------------------------------------------------------------------------------- /res/app_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/app_rc.py -------------------------------------------------------------------------------- /res/icon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/icon/close.svg -------------------------------------------------------------------------------- /res/icon/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/icon/minimize.svg -------------------------------------------------------------------------------- /res/icon/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/icon/plus.svg -------------------------------------------------------------------------------- /res/icon/png_to_ico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/icon/png_to_ico.py -------------------------------------------------------------------------------- /res/icon/首页.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/icon/首页.ico -------------------------------------------------------------------------------- /res/image/American_Robin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/image/American_Robin.jpg -------------------------------------------------------------------------------- /res/image/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/image/fish.png -------------------------------------------------------------------------------- /res/image/register.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/image/register.jpg -------------------------------------------------------------------------------- /res/otf/Social Media Circled.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/res/otf/Social Media Circled.otf -------------------------------------------------------------------------------- /start-qt-designer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/start-qt-designer.bat -------------------------------------------------------------------------------- /ui/close_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/close_dialog.py -------------------------------------------------------------------------------- /ui/close_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/close_dialog.ui -------------------------------------------------------------------------------- /ui/login_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/login_form.py -------------------------------------------------------------------------------- /ui/login_form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/login_form.ui -------------------------------------------------------------------------------- /ui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/main_window.py -------------------------------------------------------------------------------- /ui/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/main_window.ui -------------------------------------------------------------------------------- /ui/mysql_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/mysql_form.py -------------------------------------------------------------------------------- /ui/mysql_form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/mysql_form.ui -------------------------------------------------------------------------------- /ui/register_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/register_form.py -------------------------------------------------------------------------------- /ui/register_form.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui/register_form.ui -------------------------------------------------------------------------------- /ui_to_py.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/ui_to_py.bat -------------------------------------------------------------------------------- /utils/CommonHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/utils/CommonHelper.py -------------------------------------------------------------------------------- /utils/connect_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/utils/connect_mysql.py -------------------------------------------------------------------------------- /utils/global_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/utils/global_var.py -------------------------------------------------------------------------------- /utils/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/utils/logs.py -------------------------------------------------------------------------------- /win/close_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/win/close_dialog.py -------------------------------------------------------------------------------- /win/login_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/win/login_form.py -------------------------------------------------------------------------------- /win/main_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/win/main_win.py -------------------------------------------------------------------------------- /win/mysql_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/win/mysql_form.py -------------------------------------------------------------------------------- /win/register_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/win/register_form.py -------------------------------------------------------------------------------- /win/splash/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/win/splash/core.py -------------------------------------------------------------------------------- /win/splash/splash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp19991/PyQt5_example/HEAD/win/splash/splash.py --------------------------------------------------------------------------------