PyQt6-Graphs 6.8.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- PyQt6_Graphs-6.8.0/ChangeLog +45 -0
- PyQt6_Graphs-6.8.0/LICENSE +674 -0
- PyQt6_Graphs-6.8.0/NEWS +2 -0
- PyQt6_Graphs-6.8.0/PKG-INFO +49 -0
- PyQt6_Graphs-6.8.0/README.md +39 -0
- PyQt6_Graphs-6.8.0/pyproject.toml +33 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/QtGraphsmod.sip +102 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/q3dscene.sip +60 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qabstract3daxis.sip +83 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qabstract3dseries.sip +106 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qabstractaxis.sip +80 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qabstractdataproxy.sip +106 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qabstractseries.sip +85 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qareaseries.sip +59 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qbar3dseries.sip +59 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qbarcategoryaxis.sip +55 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qbardataitem.sip +37 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qbardataproxy.sip +73 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qbarmodelmapper.sip +55 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qbarseries.sip +110 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qbarset.sip +95 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qcategory3daxis.sip +38 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qcustom3ditem.sip +64 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qcustom3dlabel.sip +56 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qcustom3dvolume.sip +245 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qdatetimeaxis.sip +50 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qgraphs3dnamespace.sip +112 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qgraphstheme.sip +185 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qheightmapsurfacedataproxy.sip +64 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qitemmodelbardataproxy.sip +108 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qitemmodelscatterdataproxy.sip +77 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qitemmodelsurfacedataproxy.sip +117 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qlineseries.sip +44 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qlist.sip +186 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qlogvalue3daxisformatter.sip +50 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qpiemodelmapper.sip +55 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qpieseries.sip +82 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qpieslice.sip +86 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qscatter3dseries.sip +49 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qscatterdataitem.sip +44 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qscatterdataproxy.sip +55 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qscatterseries.sip +36 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qsplineseries.sip +44 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qsurface3dseries.sip +79 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qsurfacedataitem.sip +41 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qsurfacedataproxy.sip +62 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qutils.sip +27 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qvalue3daxis.sip +49 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qvalue3daxisformatter.sip +56 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qvalueaxis.sip +57 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qxymodelmapper.sip +55 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphs/qxyseries.sip +78 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphsWidgets/QtGraphsWidgetsmod.sip +53 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphsWidgets/q3dbarswidgetitem.sip +76 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphsWidgets/q3dgraphswidgetitem.sip +213 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphsWidgets/q3dscatterwidgetitem.sip +54 -0
- PyQt6_Graphs-6.8.0/sip/QtGraphsWidgets/q3dsurfacewidgetitem.sip +57 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
2024-12-04 Phil Thompson <phil@riverbankcomputing.com>
|
|
2
|
+
|
|
3
|
+
* sip/QtGraphs/qlist.sip, sip/qlist.sip:
|
|
4
|
+
Move the handwritten .sip file to the right place.
|
|
5
|
+
[d840faece602] [6.8.0]
|
|
6
|
+
|
|
7
|
+
* NEWS, PyQt6-Graphs.msp:
|
|
8
|
+
Added the sub-class convertor code.
|
|
9
|
+
[9398259ac6fa]
|
|
10
|
+
|
|
11
|
+
2024-11-28 Phil Thompson <phil@riverbankcomputing.com>
|
|
12
|
+
|
|
13
|
+
* PyQt6-Graphs.msp, sip/qlist.sip:
|
|
14
|
+
Fixes so the project builds.
|
|
15
|
+
[d83fc982f2de]
|
|
16
|
+
|
|
17
|
+
* PyQt6-Graphs.msp:
|
|
18
|
+
Fixes so that the code is generated.
|
|
19
|
+
[2c69c42a2fb0]
|
|
20
|
+
|
|
21
|
+
* PyQt6-Graphs.msp:
|
|
22
|
+
Completed the initial QtGraphsWidgets bindings.
|
|
23
|
+
[e6b41c1d0466]
|
|
24
|
+
|
|
25
|
+
* NEWS, PyQt6-Graphs.msp, sip/qlist.sip:
|
|
26
|
+
Completed the initial wrapping of QtGraphs.
|
|
27
|
+
[371ad894a38f]
|
|
28
|
+
|
|
29
|
+
2024-10-28 Phil Thompson <phil@riverbankcomputing.com>
|
|
30
|
+
|
|
31
|
+
* PyQt6-Graphs.msp:
|
|
32
|
+
Work in progress.
|
|
33
|
+
[c1235c9e3f3f]
|
|
34
|
+
|
|
35
|
+
2024-10-25 Phil Thompson <phil@riverbankcomputing.com>
|
|
36
|
+
|
|
37
|
+
* PyQt6-Graphs.msp, sip/qlist.sip:
|
|
38
|
+
Work in progress.
|
|
39
|
+
[172cd83b7199]
|
|
40
|
+
|
|
41
|
+
2024-10-24 Phil Thompson <phil@riverbankcomputing.com>
|
|
42
|
+
|
|
43
|
+
* .hgignore, NEWS, PyQt6-Graphs.msp, README.md, pyproject.toml:
|
|
44
|
+
Initial commit of the project.
|
|
45
|
+
[3e47a0be3b32]
|