├── .gitignore ├── Chapter01 ├── ericProject │ ├── .eric7project │ │ ├── ericPyQt6.eqj │ │ ├── ericPyQt6.etj │ │ ├── ericPySide6.eqj │ │ └── ericPySide6.etj │ ├── .jedi │ │ └── project.json │ ├── Ui_testFirst.py │ ├── __init__.py │ ├── ericPyQt6.epj │ ├── ericPySide6.epj │ ├── images │ │ ├── calc.jpg │ │ ├── close.jpg │ │ ├── new.jpg │ │ ├── notepad.jpg │ │ ├── open.jpg │ │ └── python.jpg │ ├── resource.qrc │ ├── resource_rc.py │ ├── testFirst.py │ └── testFirst.ui ├── runDemo.py ├── runDemo2.py └── testFirst.py ├── Chapter02 ├── MainWinMenuToolbar.py ├── MainWinMenuToolbar.ui ├── MainWinMenuToolbarRun.py ├── MainWinQrc.py ├── MainWinQrc.ui ├── MainWinQrcRun.py ├── MainWinSignalSlog1.py ├── MainWinSignalSlog1.ui ├── MainWinSignalSlog1Run.py ├── apprcc.qrc ├── apprcc_rc.py ├── ericProject │ ├── .eric7project │ │ ├── ericPyQt6.eqj │ │ ├── ericPyQt6.etj │ │ ├── ericPySide6.eqj │ │ └── ericPySide6.etj │ ├── .jedi │ │ └── project.json │ ├── Ui_ericDemo.py │ ├── __init__.py │ ├── ericDemo.py │ ├── ericDemo.ui │ ├── ericPyQt6.epj │ ├── ericPySide6.epj │ ├── images │ │ ├── calc.jpg │ │ ├── close.jpg │ │ ├── new.jpg │ │ ├── notepad.jpg │ │ ├── open.jpg │ │ └── python.jpg │ ├── resource.qrc │ └── resource_rc.py ├── firstMainWin.py ├── firstMainWin.ui ├── firstMainWinRun.py ├── images │ ├── calc.jpg │ ├── close.jpg │ ├── new.jpg │ ├── notepad.jpg │ ├── open.jpg │ └── python.jpg ├── layoutContainer.py ├── layoutContainer.ui ├── layoutFirst.py ├── layoutFirst.ui ├── layoutWin.py ├── layoutWin.ui ├── layoutWin2.py ├── layoutWin2.ui ├── layoutWin2Run.py ├── rc_apprcc.py ├── tool.py ├── ui_MainWinMenuToolbar.py ├── ui_MainWinQrc.py ├── ui_MainWinSignalSlog1.py ├── ui_firstMainWin.py ├── ui_layoutContainer.py ├── ui_layoutFirst.py ├── ui_layoutWin.py └── ui_layoutWin2.py ├── Chapter03 ├── MainWin.py ├── images │ ├── Bold.png │ ├── Italic.png │ ├── boy.png │ ├── cartoon1.ico │ ├── cartoon2.ico │ ├── cartoon3.ico │ ├── cartoon4.ico │ ├── cartoon5.ico │ ├── cartoon6.ico │ ├── cartoon7.ico │ ├── cartoon8.ico │ ├── close.ico │ ├── doc.ico │ ├── new.png │ ├── open.png │ ├── printer.png │ ├── python.jpg │ ├── python.png │ ├── save.png │ └── win.png ├── qt_QCalendarWidget.py ├── qt_QCheckbox.py ├── qt_QComboBox.py ├── qt_QCommandLinkButton.py ├── qt_QDateTimeEdit.py ├── qt_QDial.py ├── qt_QDoubleSpinBox.py ├── qt_QFontComboBox.py ├── qt_QLabel.py ├── qt_QLabel2.py ├── qt_QLineEdit.py ├── qt_QLineEdit_EchoMode.py ├── qt_QLineEdit_InputMask.py ├── qt_QLineEdit_QValidator.py ├── qt_QPlainTextEdit.py ├── qt_QPushButton.py ├── qt_QRadioButton.py ├── qt_QScrollArea.py ├── qt_QScrollBar.py ├── qt_QSlider.py ├── qt_QSpinBox.py ├── qt_QSpinBox2.py ├── qt_QSyntaxHighlighter.py ├── qt_QTextBrowser.py ├── qt_QTextEdit.py ├── qt_QToolButton.py └── support │ ├── myMarkDown.md │ ├── myhtml.html │ └── textBrowser.html ├── Chapter04 ├── images │ ├── Bold.png │ ├── Italic.png │ ├── ajax-loading.gif │ ├── boy.png │ ├── cartoon1.ico │ ├── cartoon2.ico │ ├── cartoon3.ico │ ├── cartoon4.ico │ ├── cartoon5.ico │ ├── cartoon6.ico │ ├── cartoon7.ico │ ├── cartoon8.ico │ ├── close.ico │ ├── doc.ico │ ├── down.png │ ├── left.png │ ├── mask.png │ ├── mask2.png │ ├── new.png │ ├── open.png │ ├── printer.png │ ├── python.jpg │ ├── python.png │ ├── right.png │ ├── save.png │ ├── up.png │ └── win.png ├── painting │ ├── basicdrawing.py │ ├── concentriccircles.py │ ├── images │ │ ├── brick.png │ │ └── qt-logo.png │ ├── painter.py │ └── plot.py ├── qt_QBrush.py ├── qt_QClipboard.py ├── qt_QColorDialog.py ├── qt_QDialog.py ├── qt_QDialog2.py ├── qt_QDialogButtonBox.py ├── qt_QDrag.py ├── qt_QDrag2.py ├── qt_QFileDialog.py ├── qt_QFontDialog.py ├── qt_QInputDialog.py ├── qt_QKeySequenceEdit.py ├── qt_QLCDNumber.py ├── qt_QMenu.py ├── qt_QMessageBox.py ├── qt_QMimeData.py ├── qt_QPainter.py ├── qt_QPen.py ├── qt_QPixmapQImage.py ├── qt_QProgressDialog.py ├── qt_QShortcut.py ├── qt_QStatusBar.py └── qt_QToolBar.py ├── Chapter05 ├── db │ └── database.db ├── images │ ├── IOS.png │ ├── android.png │ ├── bao0.png │ ├── bao1.png │ ├── bao10.png │ ├── bao11.png │ ├── bao12.png │ ├── bao13.png │ ├── bao14.png │ ├── bao3.png │ ├── bao4.png │ ├── bao5.png │ ├── bao6.png │ ├── bao8.png │ ├── bao9.png │ ├── cartoon1.ico │ ├── close.png │ ├── copy.png │ ├── cut.png │ ├── down.png │ ├── down3.png │ ├── dropdown.png │ ├── flower.png │ ├── go-home.png │ ├── go-next.png │ ├── go-previous.png │ ├── hammer.png │ ├── help.jpg │ ├── left.png │ ├── music.png │ ├── new.png │ ├── open.png │ ├── paste.png │ ├── printer.png │ ├── qt-creator.png │ ├── qt-logo.png │ ├── qt-project.png │ ├── qt-quick.png │ ├── right.png │ ├── root.png │ ├── save.png │ ├── screen1.jpg │ ├── undo.png │ ├── up.png │ └── view-refresh.png ├── qt_QDataWidgetMapper.py ├── qt_QListView.py ├── qt_QListWidget.py ├── qt_QSqlCustomModelDelegate.py ├── qt_QSqlQueryModel.py ├── qt_QSqlRelationalTableModel.py ├── qt_QSqlTableModel.py ├── qt_QSqlTableModelError.py ├── qt_QTableDelegate.py ├── qt_QTableModel.py ├── qt_QTableView.py ├── qt_QTableWidget.py ├── qt_QTreeView.py ├── qt_QTreeView2.py ├── qt_QTreeWidget.py └── qt_createSql.py ├── Chapter06 ├── darkstyleDemo.ui ├── darkstyleDemoRun.py ├── darkstyleDemoUI.py ├── images │ ├── IOS.png │ ├── android.png │ ├── bao0.png │ ├── bao1.png │ ├── bao10.png │ ├── bao11.png │ ├── bao12.png │ ├── bao13.png │ ├── bao14.png │ ├── bao2.png │ ├── bao3.png │ ├── bao4.png │ ├── bao5.png │ ├── bao6.png │ ├── bao7.png │ ├── bao8.png │ ├── bao9.png │ ├── cartoon1.ico │ ├── close.png │ ├── copy.png │ ├── cut.png │ ├── down3.png │ ├── dropdown.png │ ├── flower.png │ ├── go-home.png │ ├── go-next.png │ ├── go-previous.png │ ├── hammer.png │ ├── help.jpg │ ├── left.png │ ├── left2.png │ ├── left3.png │ ├── leftHover.png │ ├── leftPressed.png │ ├── leftdown.png │ ├── leftdown2.png │ ├── leftdown3.png │ ├── leftup.png │ ├── leftup2.png │ ├── leftup3.png │ ├── music.png │ ├── new.png │ ├── open.png │ ├── paste.png │ ├── printer.png │ ├── right.png │ ├── right2.png │ ├── right3.png │ ├── rightdown.png │ ├── rightdown2.png │ ├── rightdown3.png │ ├── rightup.png │ ├── rightup2.png │ ├── rightup3.png │ ├── root.png │ ├── save.png │ ├── screen1.jpg │ ├── undo.png │ ├── up.png │ ├── up2.png │ ├── up3.png │ └── view-refresh.png ├── qmlDemo │ ├── basic │ │ ├── basic.py │ │ └── main.qml │ ├── class-context-property │ │ ├── class.py │ │ └── main.qml │ ├── class-registered-type │ │ ├── class.py │ │ └── main.qml │ ├── model │ │ ├── main.qml │ │ └── model.py │ └── property │ │ ├── main.qml │ │ └── property.py ├── qt_QAxWidget.py ├── qt_QBoxLayout.py ├── qt_QDockWidget.py ├── qt_QDockWidget2.py ├── qt_QFormLayout.py ├── qt_QGridLayout.py ├── qt_QLayout.py ├── qt_QMdiAreaQMdiSubWindow.py ├── qt_QMdiAreaQMdiSubWindow2.py ├── qt_QSplitter.py ├── qt_QStackedLayout.py ├── qt_QStackedWidget.py ├── qt_QTabWidget.py ├── qt_QThread.py ├── qt_QThread2.py ├── qt_QTimer.py ├── qt_QToolBox.py ├── qt_QWebEngineView.py ├── qt_QssDemo.py ├── qt_WinStyleDemo.py ├── qt_processEvents.py ├── style.qss ├── tabbedbrowser │ ├── bookmarkwidget.py │ ├── browsertabwidget.py │ ├── doc │ │ ├── tabbedbrowser.png │ │ └── tabbedbrowser.rst │ ├── downloadwidget.py │ ├── findtoolbar.py │ ├── historywindow.py │ ├── main.py │ ├── tabbedbrowser.pyproject │ └── webengineview.py └── ui_darkstyleDemo.py ├── Chapter07 ├── MainWinSignalSlog.py ├── MainWinSignalSlog.ui ├── MainWinSignalSlogRun.py ├── event.py ├── event_filter.py ├── event_filter2.py ├── images │ ├── cartoon1.ico │ ├── cartoon2.ico │ ├── cartoon3.ico │ ├── cartoon4.ico │ └── python.jpg ├── qt_SignalSlot.py ├── qt_SignalSlotParam.py └── ui_MainWinSignalSlog.py ├── Chapter08 ├── install │ └── colorDialog.py ├── matplotlibDemo │ ├── MatplotlibWidget.py │ ├── Ui_matplotlib_pyqt.py │ ├── matplotlibDemo.py │ ├── matplotlib_pyqt.py │ └── matplotlib_pyqt.ui ├── pandasDemo │ ├── BasicExample.py │ ├── Ui_pandas_pyqt.py │ ├── data │ │ ├── fund_data.xlsx │ │ └── fund_data_new.xlsx │ ├── pandas_pyqt.py │ ├── pandas_pyqt.ui │ ├── qtpandas.zip │ ├── qtpandas │ │ ├── __init__.py │ │ ├── _lib │ │ │ └── magic │ │ │ │ ├── db │ │ │ │ └── magic.mgc │ │ │ │ ├── libgcc_s_dw2-1.dll │ │ │ │ ├── libmagic-1.dll │ │ │ │ ├── libregex-1.dll │ │ │ │ ├── magic1.dll │ │ │ │ └── zlib1.dll │ │ ├── compat.py │ │ ├── encoding.py │ │ ├── excepthook.py │ │ ├── i18n │ │ │ └── de.qm │ │ ├── models │ │ │ ├── ColumnDtypeModel.py │ │ │ ├── DataFrameModel.py │ │ │ ├── DataFrameModelManager.py │ │ │ ├── DataSearch.py │ │ │ ├── ProgressThread.py │ │ │ ├── SupportedDtypes.py │ │ │ ├── __init__.py │ │ │ └── mime.py │ │ ├── ui │ │ │ ├── __init__.py │ │ │ └── fallback │ │ │ │ ├── __init__.py │ │ │ │ └── easygui │ │ │ │ ├── __init__.py │ │ │ │ ├── boxes │ │ │ │ ├── __init__.py │ │ │ │ ├── about.py │ │ │ │ ├── base_boxes.py │ │ │ │ ├── derived_boxes.py │ │ │ │ ├── egstore.py │ │ │ │ ├── state.py │ │ │ │ ├── text_box.py │ │ │ │ ├── updatable_text_box.py │ │ │ │ └── utils.py │ │ │ │ └── easygui.py │ │ ├── utils.py │ │ └── views │ │ │ ├── BigIntSpinbox.py │ │ │ ├── CSVDialogs.py │ │ │ ├── CustomDelegates.py │ │ │ ├── DataTableView.py │ │ │ ├── EditDialogs.py │ │ │ ├── MultiFileDialogs.py │ │ │ ├── OverlayProgressView.py │ │ │ ├── __init__.py │ │ │ └── _ui │ │ │ ├── __init__.py │ │ │ └── icons_rc.py │ └── qtpandasDemo.py ├── plotlyDemo │ ├── PyQt_plotly_setHtml.py │ ├── Ui_plotly_pyqt.py │ ├── dashDemo.py │ ├── demo_plotly_pyqt.py │ ├── plotlyDemo.py │ ├── plotly_html │ │ ├── bWLwgP.css │ │ ├── country_indicators.csv │ │ ├── if_hs300_bais.html │ │ └── if_index_bais.xlsx │ ├── plotly_pyqt.py │ └── plotly_pyqt.ui └── pyqtgraphDemo │ ├── Ui_pyqtgraph_pyqt.py │ ├── pyqtgraphDemo.py │ ├── pyqtgraph_pyqt.py │ └── pyqtgraph_pyqt.ui ├── Chapter09 ├── juchao │ ├── Ui_run.py │ ├── craw.py │ ├── run.py │ └── run.ui └── myQuant │ ├── data │ └── TF.CFE_15.csv │ ├── out │ ├── 下影线策略_posValDF.csv │ └── 下影线策略_tradeFlow.csv │ ├── plotDataList.pkl │ ├── quant │ ├── __init__.py │ ├── my_talib.py │ ├── rhPlot │ │ ├── Ui_rhQuant_matplotlib_show.py │ │ ├── __init__.py │ │ ├── plotDataList.pkl │ │ ├── rhMatplotlibWidget.py │ │ ├── rhQuant_matplotlib_show.py │ │ ├── rhQuant_matplotlib_show.ui │ │ └── rhQuant_plotly_show.py │ └── rhQuant.py │ └── runDemo.py ├── LICENSE ├── README.md └── appendix ├── B-CtoPyhtonDemo ├── CMakeLists.txt ├── extension.pro ├── finddialog.cpp ├── finddialog.h ├── main.cpp └── qt_QDialog2.py ├── X ├── MultiWindow.py ├── MultiWindow2.py ├── fundDemo │ ├── Plotly_Qt.py │ ├── combination.py │ ├── combination.ui │ ├── combinationRun.py │ ├── data │ │ ├── fund_data.xlsx │ │ ├── fund_data_new.xlsx │ │ ├── 和聚光明1号_hs300_merge.xlsx │ │ ├── 时时安稳健1号.csv │ │ ├── 昆仑信托-昆仑三十六号.csv │ │ ├── 组合.xlsx │ │ └── 长城国瑞证券恒通23号.csv │ ├── fundFOF.py │ ├── fundFOF.ui │ ├── fundFOFRun.py │ ├── mypyqtgraph.py │ ├── ui_combination.py │ └── ui_fundFOF.py ├── images │ ├── boy.png │ ├── down.png │ ├── left.png │ ├── mask.png │ ├── mask2.png │ ├── right.png │ └── up.png ├── qt_setMask1.py ├── qt_setMask2.py └── testCase │ ├── 2022-03-20-19_43_54HTMLtemplate.html │ ├── HTMLTestRunner.py │ ├── MatrixWinTest.py │ ├── MatrixWinUi.py │ ├── MatrixWinUi.ui │ ├── MatrixWinUiRun.py │ ├── RunTestCase.py │ ├── reportLog.txt │ └── ui_MatrixWinUi.py └── 《PySide6-PyQt6快速开发与实战》附赠电子版.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/ericProject/.eric7project/ericPyQt6.eqj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/.eric7project/ericPyQt6.eqj -------------------------------------------------------------------------------- /Chapter01/ericProject/.eric7project/ericPyQt6.etj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/.eric7project/ericPyQt6.etj -------------------------------------------------------------------------------- /Chapter01/ericProject/.eric7project/ericPySide6.eqj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/.eric7project/ericPySide6.eqj -------------------------------------------------------------------------------- /Chapter01/ericProject/.eric7project/ericPySide6.etj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/.eric7project/ericPySide6.etj -------------------------------------------------------------------------------- /Chapter01/ericProject/.jedi/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/.jedi/project.json -------------------------------------------------------------------------------- /Chapter01/ericProject/Ui_testFirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/Ui_testFirst.py -------------------------------------------------------------------------------- /Chapter01/ericProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter01/ericProject/ericPyQt6.epj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/ericPyQt6.epj -------------------------------------------------------------------------------- /Chapter01/ericProject/ericPySide6.epj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/ericPySide6.epj -------------------------------------------------------------------------------- /Chapter01/ericProject/images/calc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/images/calc.jpg -------------------------------------------------------------------------------- /Chapter01/ericProject/images/close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/images/close.jpg -------------------------------------------------------------------------------- /Chapter01/ericProject/images/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/images/new.jpg -------------------------------------------------------------------------------- /Chapter01/ericProject/images/notepad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/images/notepad.jpg -------------------------------------------------------------------------------- /Chapter01/ericProject/images/open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/images/open.jpg -------------------------------------------------------------------------------- /Chapter01/ericProject/images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/images/python.jpg -------------------------------------------------------------------------------- /Chapter01/ericProject/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/resource.qrc -------------------------------------------------------------------------------- /Chapter01/ericProject/resource_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/resource_rc.py -------------------------------------------------------------------------------- /Chapter01/ericProject/testFirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/testFirst.py -------------------------------------------------------------------------------- /Chapter01/ericProject/testFirst.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/ericProject/testFirst.ui -------------------------------------------------------------------------------- /Chapter01/runDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/runDemo.py -------------------------------------------------------------------------------- /Chapter01/runDemo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/runDemo2.py -------------------------------------------------------------------------------- /Chapter01/testFirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter01/testFirst.py -------------------------------------------------------------------------------- /Chapter02/MainWinMenuToolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinMenuToolbar.py -------------------------------------------------------------------------------- /Chapter02/MainWinMenuToolbar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinMenuToolbar.ui -------------------------------------------------------------------------------- /Chapter02/MainWinMenuToolbarRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinMenuToolbarRun.py -------------------------------------------------------------------------------- /Chapter02/MainWinQrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinQrc.py -------------------------------------------------------------------------------- /Chapter02/MainWinQrc.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinQrc.ui -------------------------------------------------------------------------------- /Chapter02/MainWinQrcRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinQrcRun.py -------------------------------------------------------------------------------- /Chapter02/MainWinSignalSlog1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinSignalSlog1.py -------------------------------------------------------------------------------- /Chapter02/MainWinSignalSlog1.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinSignalSlog1.ui -------------------------------------------------------------------------------- /Chapter02/MainWinSignalSlog1Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/MainWinSignalSlog1Run.py -------------------------------------------------------------------------------- /Chapter02/apprcc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/apprcc.qrc -------------------------------------------------------------------------------- /Chapter02/apprcc_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/apprcc_rc.py -------------------------------------------------------------------------------- /Chapter02/ericProject/.eric7project/ericPyQt6.eqj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/.eric7project/ericPyQt6.eqj -------------------------------------------------------------------------------- /Chapter02/ericProject/.eric7project/ericPyQt6.etj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/.eric7project/ericPyQt6.etj -------------------------------------------------------------------------------- /Chapter02/ericProject/.eric7project/ericPySide6.eqj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/.eric7project/ericPySide6.eqj -------------------------------------------------------------------------------- /Chapter02/ericProject/.eric7project/ericPySide6.etj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/.eric7project/ericPySide6.etj -------------------------------------------------------------------------------- /Chapter02/ericProject/.jedi/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/.jedi/project.json -------------------------------------------------------------------------------- /Chapter02/ericProject/Ui_ericDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/Ui_ericDemo.py -------------------------------------------------------------------------------- /Chapter02/ericProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/ericProject/ericDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/ericDemo.py -------------------------------------------------------------------------------- /Chapter02/ericProject/ericDemo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/ericDemo.ui -------------------------------------------------------------------------------- /Chapter02/ericProject/ericPyQt6.epj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/ericPyQt6.epj -------------------------------------------------------------------------------- /Chapter02/ericProject/ericPySide6.epj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/ericPySide6.epj -------------------------------------------------------------------------------- /Chapter02/ericProject/images/calc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/images/calc.jpg -------------------------------------------------------------------------------- /Chapter02/ericProject/images/close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/images/close.jpg -------------------------------------------------------------------------------- /Chapter02/ericProject/images/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/images/new.jpg -------------------------------------------------------------------------------- /Chapter02/ericProject/images/notepad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/images/notepad.jpg -------------------------------------------------------------------------------- /Chapter02/ericProject/images/open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/images/open.jpg -------------------------------------------------------------------------------- /Chapter02/ericProject/images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/images/python.jpg -------------------------------------------------------------------------------- /Chapter02/ericProject/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/resource.qrc -------------------------------------------------------------------------------- /Chapter02/ericProject/resource_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ericProject/resource_rc.py -------------------------------------------------------------------------------- /Chapter02/firstMainWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/firstMainWin.py -------------------------------------------------------------------------------- /Chapter02/firstMainWin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/firstMainWin.ui -------------------------------------------------------------------------------- /Chapter02/firstMainWinRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/firstMainWinRun.py -------------------------------------------------------------------------------- /Chapter02/images/calc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/images/calc.jpg -------------------------------------------------------------------------------- /Chapter02/images/close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/images/close.jpg -------------------------------------------------------------------------------- /Chapter02/images/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/images/new.jpg -------------------------------------------------------------------------------- /Chapter02/images/notepad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/images/notepad.jpg -------------------------------------------------------------------------------- /Chapter02/images/open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/images/open.jpg -------------------------------------------------------------------------------- /Chapter02/images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/images/python.jpg -------------------------------------------------------------------------------- /Chapter02/layoutContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutContainer.py -------------------------------------------------------------------------------- /Chapter02/layoutContainer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutContainer.ui -------------------------------------------------------------------------------- /Chapter02/layoutFirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutFirst.py -------------------------------------------------------------------------------- /Chapter02/layoutFirst.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutFirst.ui -------------------------------------------------------------------------------- /Chapter02/layoutWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutWin.py -------------------------------------------------------------------------------- /Chapter02/layoutWin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutWin.ui -------------------------------------------------------------------------------- /Chapter02/layoutWin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutWin2.py -------------------------------------------------------------------------------- /Chapter02/layoutWin2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutWin2.ui -------------------------------------------------------------------------------- /Chapter02/layoutWin2Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/layoutWin2Run.py -------------------------------------------------------------------------------- /Chapter02/rc_apprcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/rc_apprcc.py -------------------------------------------------------------------------------- /Chapter02/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/tool.py -------------------------------------------------------------------------------- /Chapter02/ui_MainWinMenuToolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_MainWinMenuToolbar.py -------------------------------------------------------------------------------- /Chapter02/ui_MainWinQrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_MainWinQrc.py -------------------------------------------------------------------------------- /Chapter02/ui_MainWinSignalSlog1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_MainWinSignalSlog1.py -------------------------------------------------------------------------------- /Chapter02/ui_firstMainWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_firstMainWin.py -------------------------------------------------------------------------------- /Chapter02/ui_layoutContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_layoutContainer.py -------------------------------------------------------------------------------- /Chapter02/ui_layoutFirst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_layoutFirst.py -------------------------------------------------------------------------------- /Chapter02/ui_layoutWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_layoutWin.py -------------------------------------------------------------------------------- /Chapter02/ui_layoutWin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter02/ui_layoutWin2.py -------------------------------------------------------------------------------- /Chapter03/MainWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/MainWin.py -------------------------------------------------------------------------------- /Chapter03/images/Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/Bold.png -------------------------------------------------------------------------------- /Chapter03/images/Italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/Italic.png -------------------------------------------------------------------------------- /Chapter03/images/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/boy.png -------------------------------------------------------------------------------- /Chapter03/images/cartoon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon1.ico -------------------------------------------------------------------------------- /Chapter03/images/cartoon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon2.ico -------------------------------------------------------------------------------- /Chapter03/images/cartoon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon3.ico -------------------------------------------------------------------------------- /Chapter03/images/cartoon4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon4.ico -------------------------------------------------------------------------------- /Chapter03/images/cartoon5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon5.ico -------------------------------------------------------------------------------- /Chapter03/images/cartoon6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon6.ico -------------------------------------------------------------------------------- /Chapter03/images/cartoon7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon7.ico -------------------------------------------------------------------------------- /Chapter03/images/cartoon8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/cartoon8.ico -------------------------------------------------------------------------------- /Chapter03/images/close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/close.ico -------------------------------------------------------------------------------- /Chapter03/images/doc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/doc.ico -------------------------------------------------------------------------------- /Chapter03/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/new.png -------------------------------------------------------------------------------- /Chapter03/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/open.png -------------------------------------------------------------------------------- /Chapter03/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/printer.png -------------------------------------------------------------------------------- /Chapter03/images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/python.jpg -------------------------------------------------------------------------------- /Chapter03/images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/python.png -------------------------------------------------------------------------------- /Chapter03/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/save.png -------------------------------------------------------------------------------- /Chapter03/images/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/images/win.png -------------------------------------------------------------------------------- /Chapter03/qt_QCalendarWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QCalendarWidget.py -------------------------------------------------------------------------------- /Chapter03/qt_QCheckbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QCheckbox.py -------------------------------------------------------------------------------- /Chapter03/qt_QComboBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QComboBox.py -------------------------------------------------------------------------------- /Chapter03/qt_QCommandLinkButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QCommandLinkButton.py -------------------------------------------------------------------------------- /Chapter03/qt_QDateTimeEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QDateTimeEdit.py -------------------------------------------------------------------------------- /Chapter03/qt_QDial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QDial.py -------------------------------------------------------------------------------- /Chapter03/qt_QDoubleSpinBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QDoubleSpinBox.py -------------------------------------------------------------------------------- /Chapter03/qt_QFontComboBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QFontComboBox.py -------------------------------------------------------------------------------- /Chapter03/qt_QLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QLabel.py -------------------------------------------------------------------------------- /Chapter03/qt_QLabel2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QLabel2.py -------------------------------------------------------------------------------- /Chapter03/qt_QLineEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QLineEdit.py -------------------------------------------------------------------------------- /Chapter03/qt_QLineEdit_EchoMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QLineEdit_EchoMode.py -------------------------------------------------------------------------------- /Chapter03/qt_QLineEdit_InputMask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QLineEdit_InputMask.py -------------------------------------------------------------------------------- /Chapter03/qt_QLineEdit_QValidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QLineEdit_QValidator.py -------------------------------------------------------------------------------- /Chapter03/qt_QPlainTextEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QPlainTextEdit.py -------------------------------------------------------------------------------- /Chapter03/qt_QPushButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QPushButton.py -------------------------------------------------------------------------------- /Chapter03/qt_QRadioButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QRadioButton.py -------------------------------------------------------------------------------- /Chapter03/qt_QScrollArea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QScrollArea.py -------------------------------------------------------------------------------- /Chapter03/qt_QScrollBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QScrollBar.py -------------------------------------------------------------------------------- /Chapter03/qt_QSlider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QSlider.py -------------------------------------------------------------------------------- /Chapter03/qt_QSpinBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QSpinBox.py -------------------------------------------------------------------------------- /Chapter03/qt_QSpinBox2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QSpinBox2.py -------------------------------------------------------------------------------- /Chapter03/qt_QSyntaxHighlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QSyntaxHighlighter.py -------------------------------------------------------------------------------- /Chapter03/qt_QTextBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QTextBrowser.py -------------------------------------------------------------------------------- /Chapter03/qt_QTextEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QTextEdit.py -------------------------------------------------------------------------------- /Chapter03/qt_QToolButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/qt_QToolButton.py -------------------------------------------------------------------------------- /Chapter03/support/myMarkDown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/support/myMarkDown.md -------------------------------------------------------------------------------- /Chapter03/support/myhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/support/myhtml.html -------------------------------------------------------------------------------- /Chapter03/support/textBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter03/support/textBrowser.html -------------------------------------------------------------------------------- /Chapter04/images/Bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/Bold.png -------------------------------------------------------------------------------- /Chapter04/images/Italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/Italic.png -------------------------------------------------------------------------------- /Chapter04/images/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/ajax-loading.gif -------------------------------------------------------------------------------- /Chapter04/images/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/boy.png -------------------------------------------------------------------------------- /Chapter04/images/cartoon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon1.ico -------------------------------------------------------------------------------- /Chapter04/images/cartoon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon2.ico -------------------------------------------------------------------------------- /Chapter04/images/cartoon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon3.ico -------------------------------------------------------------------------------- /Chapter04/images/cartoon4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon4.ico -------------------------------------------------------------------------------- /Chapter04/images/cartoon5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon5.ico -------------------------------------------------------------------------------- /Chapter04/images/cartoon6.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon6.ico -------------------------------------------------------------------------------- /Chapter04/images/cartoon7.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon7.ico -------------------------------------------------------------------------------- /Chapter04/images/cartoon8.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/cartoon8.ico -------------------------------------------------------------------------------- /Chapter04/images/close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/close.ico -------------------------------------------------------------------------------- /Chapter04/images/doc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/doc.ico -------------------------------------------------------------------------------- /Chapter04/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/down.png -------------------------------------------------------------------------------- /Chapter04/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/left.png -------------------------------------------------------------------------------- /Chapter04/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/mask.png -------------------------------------------------------------------------------- /Chapter04/images/mask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/mask2.png -------------------------------------------------------------------------------- /Chapter04/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/new.png -------------------------------------------------------------------------------- /Chapter04/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/open.png -------------------------------------------------------------------------------- /Chapter04/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/printer.png -------------------------------------------------------------------------------- /Chapter04/images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/python.jpg -------------------------------------------------------------------------------- /Chapter04/images/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/python.png -------------------------------------------------------------------------------- /Chapter04/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/right.png -------------------------------------------------------------------------------- /Chapter04/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/save.png -------------------------------------------------------------------------------- /Chapter04/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/up.png -------------------------------------------------------------------------------- /Chapter04/images/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/images/win.png -------------------------------------------------------------------------------- /Chapter04/painting/basicdrawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/painting/basicdrawing.py -------------------------------------------------------------------------------- /Chapter04/painting/concentriccircles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/painting/concentriccircles.py -------------------------------------------------------------------------------- /Chapter04/painting/images/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/painting/images/brick.png -------------------------------------------------------------------------------- /Chapter04/painting/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/painting/images/qt-logo.png -------------------------------------------------------------------------------- /Chapter04/painting/painter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/painting/painter.py -------------------------------------------------------------------------------- /Chapter04/painting/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/painting/plot.py -------------------------------------------------------------------------------- /Chapter04/qt_QBrush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QBrush.py -------------------------------------------------------------------------------- /Chapter04/qt_QClipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QClipboard.py -------------------------------------------------------------------------------- /Chapter04/qt_QColorDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QColorDialog.py -------------------------------------------------------------------------------- /Chapter04/qt_QDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QDialog.py -------------------------------------------------------------------------------- /Chapter04/qt_QDialog2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QDialog2.py -------------------------------------------------------------------------------- /Chapter04/qt_QDialogButtonBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QDialogButtonBox.py -------------------------------------------------------------------------------- /Chapter04/qt_QDrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QDrag.py -------------------------------------------------------------------------------- /Chapter04/qt_QDrag2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QDrag2.py -------------------------------------------------------------------------------- /Chapter04/qt_QFileDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QFileDialog.py -------------------------------------------------------------------------------- /Chapter04/qt_QFontDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QFontDialog.py -------------------------------------------------------------------------------- /Chapter04/qt_QInputDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QInputDialog.py -------------------------------------------------------------------------------- /Chapter04/qt_QKeySequenceEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QKeySequenceEdit.py -------------------------------------------------------------------------------- /Chapter04/qt_QLCDNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QLCDNumber.py -------------------------------------------------------------------------------- /Chapter04/qt_QMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QMenu.py -------------------------------------------------------------------------------- /Chapter04/qt_QMessageBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QMessageBox.py -------------------------------------------------------------------------------- /Chapter04/qt_QMimeData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QMimeData.py -------------------------------------------------------------------------------- /Chapter04/qt_QPainter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QPainter.py -------------------------------------------------------------------------------- /Chapter04/qt_QPen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QPen.py -------------------------------------------------------------------------------- /Chapter04/qt_QPixmapQImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QPixmapQImage.py -------------------------------------------------------------------------------- /Chapter04/qt_QProgressDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QProgressDialog.py -------------------------------------------------------------------------------- /Chapter04/qt_QShortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QShortcut.py -------------------------------------------------------------------------------- /Chapter04/qt_QStatusBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QStatusBar.py -------------------------------------------------------------------------------- /Chapter04/qt_QToolBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter04/qt_QToolBar.py -------------------------------------------------------------------------------- /Chapter05/db/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/db/database.db -------------------------------------------------------------------------------- /Chapter05/images/IOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/IOS.png -------------------------------------------------------------------------------- /Chapter05/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/android.png -------------------------------------------------------------------------------- /Chapter05/images/bao0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao0.png -------------------------------------------------------------------------------- /Chapter05/images/bao1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao1.png -------------------------------------------------------------------------------- /Chapter05/images/bao10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao10.png -------------------------------------------------------------------------------- /Chapter05/images/bao11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao11.png -------------------------------------------------------------------------------- /Chapter05/images/bao12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao12.png -------------------------------------------------------------------------------- /Chapter05/images/bao13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao13.png -------------------------------------------------------------------------------- /Chapter05/images/bao14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao14.png -------------------------------------------------------------------------------- /Chapter05/images/bao3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao3.png -------------------------------------------------------------------------------- /Chapter05/images/bao4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao4.png -------------------------------------------------------------------------------- /Chapter05/images/bao5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao5.png -------------------------------------------------------------------------------- /Chapter05/images/bao6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao6.png -------------------------------------------------------------------------------- /Chapter05/images/bao8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao8.png -------------------------------------------------------------------------------- /Chapter05/images/bao9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/bao9.png -------------------------------------------------------------------------------- /Chapter05/images/cartoon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/cartoon1.ico -------------------------------------------------------------------------------- /Chapter05/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/close.png -------------------------------------------------------------------------------- /Chapter05/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/copy.png -------------------------------------------------------------------------------- /Chapter05/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/cut.png -------------------------------------------------------------------------------- /Chapter05/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/down.png -------------------------------------------------------------------------------- /Chapter05/images/down3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/down3.png -------------------------------------------------------------------------------- /Chapter05/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/dropdown.png -------------------------------------------------------------------------------- /Chapter05/images/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/flower.png -------------------------------------------------------------------------------- /Chapter05/images/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/go-home.png -------------------------------------------------------------------------------- /Chapter05/images/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/go-next.png -------------------------------------------------------------------------------- /Chapter05/images/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/go-previous.png -------------------------------------------------------------------------------- /Chapter05/images/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/hammer.png -------------------------------------------------------------------------------- /Chapter05/images/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/help.jpg -------------------------------------------------------------------------------- /Chapter05/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/left.png -------------------------------------------------------------------------------- /Chapter05/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/music.png -------------------------------------------------------------------------------- /Chapter05/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/new.png -------------------------------------------------------------------------------- /Chapter05/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/open.png -------------------------------------------------------------------------------- /Chapter05/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/paste.png -------------------------------------------------------------------------------- /Chapter05/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/printer.png -------------------------------------------------------------------------------- /Chapter05/images/qt-creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/qt-creator.png -------------------------------------------------------------------------------- /Chapter05/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/qt-logo.png -------------------------------------------------------------------------------- /Chapter05/images/qt-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/qt-project.png -------------------------------------------------------------------------------- /Chapter05/images/qt-quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/qt-quick.png -------------------------------------------------------------------------------- /Chapter05/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/right.png -------------------------------------------------------------------------------- /Chapter05/images/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/root.png -------------------------------------------------------------------------------- /Chapter05/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/save.png -------------------------------------------------------------------------------- /Chapter05/images/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/screen1.jpg -------------------------------------------------------------------------------- /Chapter05/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/undo.png -------------------------------------------------------------------------------- /Chapter05/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/up.png -------------------------------------------------------------------------------- /Chapter05/images/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/images/view-refresh.png -------------------------------------------------------------------------------- /Chapter05/qt_QDataWidgetMapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QDataWidgetMapper.py -------------------------------------------------------------------------------- /Chapter05/qt_QListView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QListView.py -------------------------------------------------------------------------------- /Chapter05/qt_QListWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QListWidget.py -------------------------------------------------------------------------------- /Chapter05/qt_QSqlCustomModelDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QSqlCustomModelDelegate.py -------------------------------------------------------------------------------- /Chapter05/qt_QSqlQueryModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QSqlQueryModel.py -------------------------------------------------------------------------------- /Chapter05/qt_QSqlRelationalTableModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QSqlRelationalTableModel.py -------------------------------------------------------------------------------- /Chapter05/qt_QSqlTableModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QSqlTableModel.py -------------------------------------------------------------------------------- /Chapter05/qt_QSqlTableModelError.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QSqlTableModelError.py -------------------------------------------------------------------------------- /Chapter05/qt_QTableDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QTableDelegate.py -------------------------------------------------------------------------------- /Chapter05/qt_QTableModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QTableModel.py -------------------------------------------------------------------------------- /Chapter05/qt_QTableView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QTableView.py -------------------------------------------------------------------------------- /Chapter05/qt_QTableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QTableWidget.py -------------------------------------------------------------------------------- /Chapter05/qt_QTreeView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QTreeView.py -------------------------------------------------------------------------------- /Chapter05/qt_QTreeView2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QTreeView2.py -------------------------------------------------------------------------------- /Chapter05/qt_QTreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_QTreeWidget.py -------------------------------------------------------------------------------- /Chapter05/qt_createSql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter05/qt_createSql.py -------------------------------------------------------------------------------- /Chapter06/darkstyleDemo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/darkstyleDemo.ui -------------------------------------------------------------------------------- /Chapter06/darkstyleDemoRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/darkstyleDemoRun.py -------------------------------------------------------------------------------- /Chapter06/darkstyleDemoUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/darkstyleDemoUI.py -------------------------------------------------------------------------------- /Chapter06/images/IOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/IOS.png -------------------------------------------------------------------------------- /Chapter06/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/android.png -------------------------------------------------------------------------------- /Chapter06/images/bao0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao0.png -------------------------------------------------------------------------------- /Chapter06/images/bao1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao1.png -------------------------------------------------------------------------------- /Chapter06/images/bao10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao10.png -------------------------------------------------------------------------------- /Chapter06/images/bao11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao11.png -------------------------------------------------------------------------------- /Chapter06/images/bao12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao12.png -------------------------------------------------------------------------------- /Chapter06/images/bao13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao13.png -------------------------------------------------------------------------------- /Chapter06/images/bao14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao14.png -------------------------------------------------------------------------------- /Chapter06/images/bao2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao2.png -------------------------------------------------------------------------------- /Chapter06/images/bao3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao3.png -------------------------------------------------------------------------------- /Chapter06/images/bao4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao4.png -------------------------------------------------------------------------------- /Chapter06/images/bao5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao5.png -------------------------------------------------------------------------------- /Chapter06/images/bao6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao6.png -------------------------------------------------------------------------------- /Chapter06/images/bao7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao7.png -------------------------------------------------------------------------------- /Chapter06/images/bao8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao8.png -------------------------------------------------------------------------------- /Chapter06/images/bao9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/bao9.png -------------------------------------------------------------------------------- /Chapter06/images/cartoon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/cartoon1.ico -------------------------------------------------------------------------------- /Chapter06/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/close.png -------------------------------------------------------------------------------- /Chapter06/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/copy.png -------------------------------------------------------------------------------- /Chapter06/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/cut.png -------------------------------------------------------------------------------- /Chapter06/images/down3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/down3.png -------------------------------------------------------------------------------- /Chapter06/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/dropdown.png -------------------------------------------------------------------------------- /Chapter06/images/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/flower.png -------------------------------------------------------------------------------- /Chapter06/images/go-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/go-home.png -------------------------------------------------------------------------------- /Chapter06/images/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/go-next.png -------------------------------------------------------------------------------- /Chapter06/images/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/go-previous.png -------------------------------------------------------------------------------- /Chapter06/images/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/hammer.png -------------------------------------------------------------------------------- /Chapter06/images/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/help.jpg -------------------------------------------------------------------------------- /Chapter06/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/left.png -------------------------------------------------------------------------------- /Chapter06/images/left2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/left2.png -------------------------------------------------------------------------------- /Chapter06/images/left3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/left3.png -------------------------------------------------------------------------------- /Chapter06/images/leftHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftHover.png -------------------------------------------------------------------------------- /Chapter06/images/leftPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftPressed.png -------------------------------------------------------------------------------- /Chapter06/images/leftdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftdown.png -------------------------------------------------------------------------------- /Chapter06/images/leftdown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftdown2.png -------------------------------------------------------------------------------- /Chapter06/images/leftdown3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftdown3.png -------------------------------------------------------------------------------- /Chapter06/images/leftup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftup.png -------------------------------------------------------------------------------- /Chapter06/images/leftup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftup2.png -------------------------------------------------------------------------------- /Chapter06/images/leftup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/leftup3.png -------------------------------------------------------------------------------- /Chapter06/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/music.png -------------------------------------------------------------------------------- /Chapter06/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/new.png -------------------------------------------------------------------------------- /Chapter06/images/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/open.png -------------------------------------------------------------------------------- /Chapter06/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/paste.png -------------------------------------------------------------------------------- /Chapter06/images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/printer.png -------------------------------------------------------------------------------- /Chapter06/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/right.png -------------------------------------------------------------------------------- /Chapter06/images/right2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/right2.png -------------------------------------------------------------------------------- /Chapter06/images/right3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/right3.png -------------------------------------------------------------------------------- /Chapter06/images/rightdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/rightdown.png -------------------------------------------------------------------------------- /Chapter06/images/rightdown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/rightdown2.png -------------------------------------------------------------------------------- /Chapter06/images/rightdown3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/rightdown3.png -------------------------------------------------------------------------------- /Chapter06/images/rightup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/rightup.png -------------------------------------------------------------------------------- /Chapter06/images/rightup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/rightup2.png -------------------------------------------------------------------------------- /Chapter06/images/rightup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/rightup3.png -------------------------------------------------------------------------------- /Chapter06/images/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/root.png -------------------------------------------------------------------------------- /Chapter06/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/save.png -------------------------------------------------------------------------------- /Chapter06/images/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/screen1.jpg -------------------------------------------------------------------------------- /Chapter06/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/undo.png -------------------------------------------------------------------------------- /Chapter06/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/up.png -------------------------------------------------------------------------------- /Chapter06/images/up2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/up2.png -------------------------------------------------------------------------------- /Chapter06/images/up3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/up3.png -------------------------------------------------------------------------------- /Chapter06/images/view-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/images/view-refresh.png -------------------------------------------------------------------------------- /Chapter06/qmlDemo/basic/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/basic/basic.py -------------------------------------------------------------------------------- /Chapter06/qmlDemo/basic/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/basic/main.qml -------------------------------------------------------------------------------- /Chapter06/qmlDemo/class-context-property/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/class-context-property/class.py -------------------------------------------------------------------------------- /Chapter06/qmlDemo/class-context-property/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/class-context-property/main.qml -------------------------------------------------------------------------------- /Chapter06/qmlDemo/class-registered-type/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/class-registered-type/class.py -------------------------------------------------------------------------------- /Chapter06/qmlDemo/class-registered-type/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/class-registered-type/main.qml -------------------------------------------------------------------------------- /Chapter06/qmlDemo/model/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/model/main.qml -------------------------------------------------------------------------------- /Chapter06/qmlDemo/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/model/model.py -------------------------------------------------------------------------------- /Chapter06/qmlDemo/property/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/property/main.qml -------------------------------------------------------------------------------- /Chapter06/qmlDemo/property/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qmlDemo/property/property.py -------------------------------------------------------------------------------- /Chapter06/qt_QAxWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QAxWidget.py -------------------------------------------------------------------------------- /Chapter06/qt_QBoxLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QBoxLayout.py -------------------------------------------------------------------------------- /Chapter06/qt_QDockWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QDockWidget.py -------------------------------------------------------------------------------- /Chapter06/qt_QDockWidget2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QDockWidget2.py -------------------------------------------------------------------------------- /Chapter06/qt_QFormLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QFormLayout.py -------------------------------------------------------------------------------- /Chapter06/qt_QGridLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QGridLayout.py -------------------------------------------------------------------------------- /Chapter06/qt_QLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QLayout.py -------------------------------------------------------------------------------- /Chapter06/qt_QMdiAreaQMdiSubWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QMdiAreaQMdiSubWindow.py -------------------------------------------------------------------------------- /Chapter06/qt_QMdiAreaQMdiSubWindow2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QMdiAreaQMdiSubWindow2.py -------------------------------------------------------------------------------- /Chapter06/qt_QSplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QSplitter.py -------------------------------------------------------------------------------- /Chapter06/qt_QStackedLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QStackedLayout.py -------------------------------------------------------------------------------- /Chapter06/qt_QStackedWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QStackedWidget.py -------------------------------------------------------------------------------- /Chapter06/qt_QTabWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QTabWidget.py -------------------------------------------------------------------------------- /Chapter06/qt_QThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QThread.py -------------------------------------------------------------------------------- /Chapter06/qt_QThread2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QThread2.py -------------------------------------------------------------------------------- /Chapter06/qt_QTimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QTimer.py -------------------------------------------------------------------------------- /Chapter06/qt_QToolBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QToolBox.py -------------------------------------------------------------------------------- /Chapter06/qt_QWebEngineView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QWebEngineView.py -------------------------------------------------------------------------------- /Chapter06/qt_QssDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_QssDemo.py -------------------------------------------------------------------------------- /Chapter06/qt_WinStyleDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_WinStyleDemo.py -------------------------------------------------------------------------------- /Chapter06/qt_processEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/qt_processEvents.py -------------------------------------------------------------------------------- /Chapter06/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/style.qss -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/bookmarkwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/bookmarkwidget.py -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/browsertabwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/browsertabwidget.py -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/doc/tabbedbrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/doc/tabbedbrowser.png -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/doc/tabbedbrowser.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/doc/tabbedbrowser.rst -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/downloadwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/downloadwidget.py -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/findtoolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/findtoolbar.py -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/historywindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/historywindow.py -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/main.py -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/tabbedbrowser.pyproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/tabbedbrowser.pyproject -------------------------------------------------------------------------------- /Chapter06/tabbedbrowser/webengineview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/tabbedbrowser/webengineview.py -------------------------------------------------------------------------------- /Chapter06/ui_darkstyleDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter06/ui_darkstyleDemo.py -------------------------------------------------------------------------------- /Chapter07/MainWinSignalSlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/MainWinSignalSlog.py -------------------------------------------------------------------------------- /Chapter07/MainWinSignalSlog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/MainWinSignalSlog.ui -------------------------------------------------------------------------------- /Chapter07/MainWinSignalSlogRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/MainWinSignalSlogRun.py -------------------------------------------------------------------------------- /Chapter07/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/event.py -------------------------------------------------------------------------------- /Chapter07/event_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/event_filter.py -------------------------------------------------------------------------------- /Chapter07/event_filter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/event_filter2.py -------------------------------------------------------------------------------- /Chapter07/images/cartoon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/images/cartoon1.ico -------------------------------------------------------------------------------- /Chapter07/images/cartoon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/images/cartoon2.ico -------------------------------------------------------------------------------- /Chapter07/images/cartoon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/images/cartoon3.ico -------------------------------------------------------------------------------- /Chapter07/images/cartoon4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/images/cartoon4.ico -------------------------------------------------------------------------------- /Chapter07/images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/images/python.jpg -------------------------------------------------------------------------------- /Chapter07/qt_SignalSlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/qt_SignalSlot.py -------------------------------------------------------------------------------- /Chapter07/qt_SignalSlotParam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/qt_SignalSlotParam.py -------------------------------------------------------------------------------- /Chapter07/ui_MainWinSignalSlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter07/ui_MainWinSignalSlog.py -------------------------------------------------------------------------------- /Chapter08/install/colorDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/install/colorDialog.py -------------------------------------------------------------------------------- /Chapter08/matplotlibDemo/MatplotlibWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/matplotlibDemo/MatplotlibWidget.py -------------------------------------------------------------------------------- /Chapter08/matplotlibDemo/Ui_matplotlib_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/matplotlibDemo/Ui_matplotlib_pyqt.py -------------------------------------------------------------------------------- /Chapter08/matplotlibDemo/matplotlibDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/matplotlibDemo/matplotlibDemo.py -------------------------------------------------------------------------------- /Chapter08/matplotlibDemo/matplotlib_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/matplotlibDemo/matplotlib_pyqt.py -------------------------------------------------------------------------------- /Chapter08/matplotlibDemo/matplotlib_pyqt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/matplotlibDemo/matplotlib_pyqt.ui -------------------------------------------------------------------------------- /Chapter08/pandasDemo/BasicExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/BasicExample.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/Ui_pandas_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/Ui_pandas_pyqt.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/data/fund_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/data/fund_data.xlsx -------------------------------------------------------------------------------- /Chapter08/pandasDemo/data/fund_data_new.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/data/fund_data_new.xlsx -------------------------------------------------------------------------------- /Chapter08/pandasDemo/pandas_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/pandas_pyqt.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/pandas_pyqt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/pandas_pyqt.ui -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas.zip -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/_lib/magic/db/magic.mgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/_lib/magic/db/magic.mgc -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/_lib/magic/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/_lib/magic/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/_lib/magic/libmagic-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/_lib/magic/libmagic-1.dll -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/_lib/magic/libregex-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/_lib/magic/libregex-1.dll -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/_lib/magic/magic1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/_lib/magic/magic1.dll -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/_lib/magic/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/_lib/magic/zlib1.dll -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/compat.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/encoding.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/excepthook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/excepthook.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/i18n/de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/i18n/de.qm -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/ColumnDtypeModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/models/ColumnDtypeModel.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/DataFrameModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/models/DataFrameModel.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/DataFrameModelManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/models/DataFrameModelManager.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/DataSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/models/DataSearch.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/ProgressThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/models/ProgressThread.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/SupportedDtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/models/SupportedDtypes.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/models/mime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/models/mime.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/__init__.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/about.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/base_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/base_boxes.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/derived_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/derived_boxes.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/egstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/egstore.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/state.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/text_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/text_box.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/updatable_text_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/updatable_text_box.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/boxes/utils.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/easygui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/ui/fallback/easygui/easygui.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/utils.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/BigIntSpinbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/BigIntSpinbox.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/CSVDialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/CSVDialogs.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/CustomDelegates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/CustomDelegates.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/DataTableView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/DataTableView.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/EditDialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/EditDialogs.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/MultiFileDialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/MultiFileDialogs.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/OverlayProgressView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/OverlayProgressView.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/_ui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandas/views/_ui/icons_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandas/views/_ui/icons_rc.py -------------------------------------------------------------------------------- /Chapter08/pandasDemo/qtpandasDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pandasDemo/qtpandasDemo.py -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/PyQt_plotly_setHtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/PyQt_plotly_setHtml.py -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/Ui_plotly_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/Ui_plotly_pyqt.py -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/dashDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/dashDemo.py -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/demo_plotly_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/demo_plotly_pyqt.py -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/plotlyDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/plotlyDemo.py -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/plotly_html/bWLwgP.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/plotly_html/bWLwgP.css -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/plotly_html/country_indicators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/plotly_html/country_indicators.csv -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/plotly_html/if_hs300_bais.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/plotly_html/if_hs300_bais.html -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/plotly_html/if_index_bais.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/plotly_html/if_index_bais.xlsx -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/plotly_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/plotly_pyqt.py -------------------------------------------------------------------------------- /Chapter08/plotlyDemo/plotly_pyqt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/plotlyDemo/plotly_pyqt.ui -------------------------------------------------------------------------------- /Chapter08/pyqtgraphDemo/Ui_pyqtgraph_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pyqtgraphDemo/Ui_pyqtgraph_pyqt.py -------------------------------------------------------------------------------- /Chapter08/pyqtgraphDemo/pyqtgraphDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pyqtgraphDemo/pyqtgraphDemo.py -------------------------------------------------------------------------------- /Chapter08/pyqtgraphDemo/pyqtgraph_pyqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pyqtgraphDemo/pyqtgraph_pyqt.py -------------------------------------------------------------------------------- /Chapter08/pyqtgraphDemo/pyqtgraph_pyqt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter08/pyqtgraphDemo/pyqtgraph_pyqt.ui -------------------------------------------------------------------------------- /Chapter09/juchao/Ui_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/juchao/Ui_run.py -------------------------------------------------------------------------------- /Chapter09/juchao/craw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/juchao/craw.py -------------------------------------------------------------------------------- /Chapter09/juchao/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/juchao/run.py -------------------------------------------------------------------------------- /Chapter09/juchao/run.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/juchao/run.ui -------------------------------------------------------------------------------- /Chapter09/myQuant/data/TF.CFE_15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/data/TF.CFE_15.csv -------------------------------------------------------------------------------- /Chapter09/myQuant/out/下影线策略_posValDF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/out/下影线策略_posValDF.csv -------------------------------------------------------------------------------- /Chapter09/myQuant/out/下影线策略_tradeFlow.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/out/下影线策略_tradeFlow.csv -------------------------------------------------------------------------------- /Chapter09/myQuant/plotDataList.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/plotDataList.pkl -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/my_talib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/my_talib.py -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhPlot/Ui_rhQuant_matplotlib_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/rhPlot/Ui_rhQuant_matplotlib_show.py -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhPlot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhPlot/plotDataList.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/rhPlot/plotDataList.pkl -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhPlot/rhMatplotlibWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/rhPlot/rhMatplotlibWidget.py -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhPlot/rhQuant_matplotlib_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/rhPlot/rhQuant_matplotlib_show.py -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhPlot/rhQuant_matplotlib_show.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/rhPlot/rhQuant_matplotlib_show.ui -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhPlot/rhQuant_plotly_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/rhPlot/rhQuant_plotly_show.py -------------------------------------------------------------------------------- /Chapter09/myQuant/quant/rhQuant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/quant/rhQuant.py -------------------------------------------------------------------------------- /Chapter09/myQuant/runDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/Chapter09/myQuant/runDemo.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/README.md -------------------------------------------------------------------------------- /appendix/B-CtoPyhtonDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/B-CtoPyhtonDemo/CMakeLists.txt -------------------------------------------------------------------------------- /appendix/B-CtoPyhtonDemo/extension.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/B-CtoPyhtonDemo/extension.pro -------------------------------------------------------------------------------- /appendix/B-CtoPyhtonDemo/finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/B-CtoPyhtonDemo/finddialog.cpp -------------------------------------------------------------------------------- /appendix/B-CtoPyhtonDemo/finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/B-CtoPyhtonDemo/finddialog.h -------------------------------------------------------------------------------- /appendix/B-CtoPyhtonDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/B-CtoPyhtonDemo/main.cpp -------------------------------------------------------------------------------- /appendix/B-CtoPyhtonDemo/qt_QDialog2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/B-CtoPyhtonDemo/qt_QDialog2.py -------------------------------------------------------------------------------- /appendix/X/MultiWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/MultiWindow.py -------------------------------------------------------------------------------- /appendix/X/MultiWindow2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/MultiWindow2.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/Plotly_Qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/Plotly_Qt.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/combination.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/combination.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/combination.ui -------------------------------------------------------------------------------- /appendix/X/fundDemo/combinationRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/combinationRun.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/data/fund_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/data/fund_data.xlsx -------------------------------------------------------------------------------- /appendix/X/fundDemo/data/fund_data_new.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/data/fund_data_new.xlsx -------------------------------------------------------------------------------- /appendix/X/fundDemo/data/和聚光明1号_hs300_merge.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/data/和聚光明1号_hs300_merge.xlsx -------------------------------------------------------------------------------- /appendix/X/fundDemo/data/时时安稳健1号.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/data/时时安稳健1号.csv -------------------------------------------------------------------------------- /appendix/X/fundDemo/data/昆仑信托-昆仑三十六号.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/data/昆仑信托-昆仑三十六号.csv -------------------------------------------------------------------------------- /appendix/X/fundDemo/data/组合.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/data/组合.xlsx -------------------------------------------------------------------------------- /appendix/X/fundDemo/data/长城国瑞证券恒通23号.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/data/长城国瑞证券恒通23号.csv -------------------------------------------------------------------------------- /appendix/X/fundDemo/fundFOF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/fundFOF.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/fundFOF.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/fundFOF.ui -------------------------------------------------------------------------------- /appendix/X/fundDemo/fundFOFRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/fundFOFRun.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/mypyqtgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/mypyqtgraph.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/ui_combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/ui_combination.py -------------------------------------------------------------------------------- /appendix/X/fundDemo/ui_fundFOF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/fundDemo/ui_fundFOF.py -------------------------------------------------------------------------------- /appendix/X/images/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/images/boy.png -------------------------------------------------------------------------------- /appendix/X/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/images/down.png -------------------------------------------------------------------------------- /appendix/X/images/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/images/left.png -------------------------------------------------------------------------------- /appendix/X/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/images/mask.png -------------------------------------------------------------------------------- /appendix/X/images/mask2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/images/mask2.png -------------------------------------------------------------------------------- /appendix/X/images/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/images/right.png -------------------------------------------------------------------------------- /appendix/X/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/images/up.png -------------------------------------------------------------------------------- /appendix/X/qt_setMask1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/qt_setMask1.py -------------------------------------------------------------------------------- /appendix/X/qt_setMask2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/qt_setMask2.py -------------------------------------------------------------------------------- /appendix/X/testCase/2022-03-20-19_43_54HTMLtemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/2022-03-20-19_43_54HTMLtemplate.html -------------------------------------------------------------------------------- /appendix/X/testCase/HTMLTestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/HTMLTestRunner.py -------------------------------------------------------------------------------- /appendix/X/testCase/MatrixWinTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/MatrixWinTest.py -------------------------------------------------------------------------------- /appendix/X/testCase/MatrixWinUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/MatrixWinUi.py -------------------------------------------------------------------------------- /appendix/X/testCase/MatrixWinUi.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/MatrixWinUi.ui -------------------------------------------------------------------------------- /appendix/X/testCase/MatrixWinUiRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/MatrixWinUiRun.py -------------------------------------------------------------------------------- /appendix/X/testCase/RunTestCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/RunTestCase.py -------------------------------------------------------------------------------- /appendix/X/testCase/reportLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/reportLog.txt -------------------------------------------------------------------------------- /appendix/X/testCase/ui_MatrixWinUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/X/testCase/ui_MatrixWinUi.py -------------------------------------------------------------------------------- /appendix/《PySide6-PyQt6快速开发与实战》附赠电子版.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunshe35/PySide6-codes/HEAD/appendix/《PySide6-PyQt6快速开发与实战》附赠电子版.pdf --------------------------------------------------------------------------------