wxEVT_GRID_CELL_CHANGE

Post here wxCrafter related issues / features / bugs
coder99
CodeLite Expert
Posts: 167
Joined: Wed Oct 22, 2008 6:50 am
Contact:

wxEVT_GRID_CELL_CHANGE

Post by coder99 »

My current project uses several wxGrid controls and I am trying to use the wxEVT_DGRID_CELL_CHANGED event, but can only find wxEVT_GRID_CELL_CHANGE (from wxWidgets 2.8.xx I believe), instead of the two events I was expecting for wxWidgets 2.9.xx

wxEVT_GRID_CELL_CHANGING &
wxEVT_GRID_CELL_CHANGED

IOW, wxCrafter does not seem to fully support 2.9 even though, some of the controls seem to be only supported as part of 2.9+ unless I am mistaken.

Win 10/11 64-bit, MSVC 2019/2022, wxWidgets 3.2.1, CodeLite 17.0 Mint 21.2

User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: wxEVT_GRID_CELL_CHANGE

Post by eranif »

coder99 wrote:My current project uses several wxGrid controls and I am trying to use the wxEVT_DGRID_CELL_CHANGED event, but can only find wxEVT_GRID_CELL_CHANGE (from wxWidgets 2.8.xx I believe), instead of the two events I was expecting for wxWidgets 2.9.xx

wxEVT_GRID_CELL_CHANGING &
wxEVT_GRID_CELL_CHANGED
Thanks for pointing this out. I have updated the wxGrid events table to support all the events in wx3.0
coder99 wrote:IOW, wxCrafter does not seem to fully support 2.9 even though, some of the controls seem to be only supported as part of 2.9+ unless I am mistaken.
There is no difference between wx2.9.5 and wx3.0 (wx2.9.5 was renamed to 3.0)
wxCrafter supports the majority controls of wx3.0 - if you find anything is missing or still using old events, please let me know and I will fix this


FYI: we plan on releasing codelite 5.4 + wxCrafter in a week or two (probably 2)

Eran
Make sure you have read the HOW TO POST thread
coder99
CodeLite Expert
Posts: 167
Joined: Wed Oct 22, 2008 6:50 am
Contact:

Re: wxEVT_GRID_CELL_CHANGE

Post by coder99 »

eranif wrote:wxCrafter supports the majority controls of wx3.0 - if you find anything is missing or still using old events, please let me know and I will fix this
One thing I just ran across are the styles
wxSTB_SHOW_TIPS
wxSTB_ELLIPSIZE_START
wxSTB_ELLIPSIZE_MIDDLE
wxSTB_ELLIPSIZE_END

for the status bars :-)

Win 10/11 64-bit, MSVC 2019/2022, wxWidgets 3.2.1, CodeLite 17.0 Mint 21.2

User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: wxEVT_GRID_CELL_CHANGE

Post by eranif »

coder99 wrote:wxSTB_SHOW_TIPS
wxSTB_ELLIPSIZE_START
wxSTB_ELLIPSIZE_MIDDLE
wxSTB_ELLIPSIZE_END
Good thing you posted it now... as I am going to release wxCrafter tomorrow :D
I Will make sure it will be included

Thanks
Eran
Make sure you have read the HOW TO POST thread
Post Reply