PChemGuy

Results 27 issues of PChemGuy

**Windows 10 wxPython 4.2.0 pypi Python 3.10.5 anaconda** **Description of the problem**: Demo module *demo/AUI_DockingWindowMgr.py* has a typo in a method name (.SetColor instead of .SetColour).

Replaced a TreeListCtrl to wx.gizmos, and updated and uncommented the associated code (also changed AppendColumn to AddColumn). Note, this code does not work as is with wx.dataview.TreeListCtrl. Fixes #2275

**Windows 10 wxPython 4.2.0 pypi Python 3.10.5 anaconda** **Description of the problem**: TreeListCtrl demo in the module *demo\TreeMixin.py* module has an outdated reference and is commented out. The wx.adv reference...

Used DC.DrawXXX functions expect integer coordinates, but this module freely mixes both float and integer values. A quick fix is to add explicit type casting in all DC.DrawXXX calls (this...

Used DC.DrawXXX functions expect integer coordinates, but demo\Joystick.py module freely mixes both float and integer values. A quick fix is to add explicit type casting in all DC.DrawXXX calls (this...

**Windows 10 wxPython 4.2.0 pypi Python 3.10.5 anaconda** **Description of the problem**: The module *demo\Joystick.py* needs explicit sip.voidptr "to int" type casting in dc.DrawXXX calls.

The module wx\lib\wxcairo\wx_pycairo.py needs explicit sip.voidptr to int type casting. Fixes #2263

**Windows 10 wxPython 4.2.0 pypi Python 3.10.5 anaconda** **Description of the problem**: The module *wx\lib\wxcairo\wx_pycairo.py* needs explicit sip.voidptr to int type casting on line 115.

**Windows 10 wxPython 4.2.0 pypi Python 3.10.5 anaconda** **Description of the problem**: The module *wx\lib\printout.py* mixes int and float types in calls to DC.DrawXXX methods, which require integer input.

Fixes missing type casting in the OwnerDrawnComboBox.py demo module. Fixes #2259