Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-26 | wx: Add wxLocale class | Dan Gudmundsson | |
2014-03-25 | wx: Added misc functions | Dan Gudmundsson | |
Nice to have functionality | |||
2014-03-20 | wx: Fix listCtrl sort callback | Dan Gudmundsson | |
2014-02-14 | Merge branch 'dgud/wx/fix-cb-cleanup/OTP-11699' | Dan Gudmundsson | |
* dgud/wx/fix-cb-cleanup/OTP-11699: wx: Test fixes compilation warning wx: Do not warn for our own deprecated functions wx: Rewrite eventhandling again | |||
2014-02-13 | wx: Do not warn for our own deprecated functions | Dan Gudmundsson | |
2014-02-13 | wx: Rewrite eventhandling again | Dan Gudmundsson | |
Remove the extra wxEvtListener that only caused confusion, now everything is automatically cleaned up by the destructors and event sent to erlang when it becomes delete for all cases. | |||
2014-02-07 | Merge branch 'hsv/using_lists_droplast' | Henrik Nord | |
* hsv/using_lists_droplast: lib/mnesia/test/ - Replace reverse(tl(reverse(L))) with lists:droplast/1 lib/ssh - Replace reverse(tl(reverse(L))) with lists:droplast/1 lib/wx - Replace reverse(tl(reverse(L))) with lists:droplast/1 Use lists:droplast/1 in orber/orber_interceptors.erl Import and use lists:droplast/1 in v3_core/v3_kernel OTP-11678 OTP-11677 | |||
2014-01-24 | lib/wx - Replace reverse(tl(reverse(L))) with lists:droplast/1 | Hans Svensson | |
2014-01-23 | wx: Delay all deletes if recursed in event loop | Dan Gudmundsson | |
Avoids crashes. | |||
2014-01-21 | wx: Add init_dialog event | Dan Gudmundsson | |
It was missing. | |||
2014-01-21 | Merge branch 'maint' | Dan Gudmundsson | |
2014-01-14 | wx: Fix crash when garbage collect event handlers (debugger caused seg fault) | Dan Gudmundsson | |
wxStyledTextCtrl had no wrapper class so, because it was not detected that it had virtual destructors, thus references to it was not cleaned up on destruction. When a process dies and wx cleans up the event handlers access was made to the deleted object and caused a seg fault. Added a testcase which I thought could provoke the bug but didn't. | |||
2013-12-02 | Merge branch 'maint' | Dan Gudmundsson | |
2013-11-21 | wx: Update documentation links to wxWidgets | Dan Gudmundsson | |
2013-11-21 | wx: wxListBox::Set crashes on wxWidgets 3.0 with NULL argument | Sergei Golovan | |
2013-10-30 | wx: Fix compiler warnings | Dan Gudmundsson | |
2013-10-30 | wx: Fix cleanup of event handlers | Dan Gudmundsson | |
Event handlers was not removed after objects/process had been delete/died, which causes memory leakage and that fun's was kept in the wx_server process. Code that might be purged and the server died. | |||
2013-08-29 | Merge branch 'maint' | Dan Gudmundsson | |
2013-08-23 | wx: Add wxPanel:setFocusIgnoringChildren/1 | Dan Gudmundsson | |
It was missing and needed | |||
2013-08-22 | wx: Add wxClipboardTextEvent | Dan Gudmundsson | |
2013-08-21 | wx: Fix bug in wxStatusBar:getFieldRect/2 | Dan Gudmundsson | |
2013-08-20 | wx: Fix api generator | Dan Gudmundsson | |
Be usable with doxygen 1.8.3 | |||
2013-04-19 | Remove the "coding: utf-8" comment from all Erlang source files | Hans Bolinder | |
2013-01-25 | Merge branch 'dgud/wx/depr-driver-if' | Dan Gudmundsson | |
* dgud/wx/depr-driver-if: Document howto build wxWidgets on mac wx: Fix crash in glu tesselate wx: Remove deprecated driver_send_term usage wx: Removed wx internal event | |||
2013-01-23 | wx: Add wxTreeCtrl:isTreeItemIdOk/1 | Dan Gudmundsson | |
Since I have replaced the wxTreeItemIdClass with integers, there is no way to verify that it is a valid wxTreeItemId that is returned from the wxTreeCtrl:getItem* functions. Still the check is that is non null so beware don't construct your own id's. | |||
2013-01-23 | wx: Fix wxTreeCtrl return values | Dan Gudmundsson | |
Fixes wxTreeCtrl:getBoundingRect/2 and wxTreeCtrl:hitTest/1. wxTreeCtrl:hitTest now returns a tuple, i.e. not bug compatible with previous releases but needed to know if the returned wxTreeItemId is valid or not. | |||
2013-01-16 | wx: Remove deprecated driver_send_term usage | Dan Gudmundsson | |
2013-01-09 | wx: Fix comments | Dan Gudmundsson | |
Fix utf-8 code generation for opengl docs | |||
2013-01-09 | wx: Remove unnecessary casts | Dan Gudmundsson | |
2013-01-09 | wx: Fix changed getfunctions | Dan Gudmundsson | |
wx-2.9 have changed some functions from returning references to objects to returning objects instead | |||
2013-01-09 | wx: Fix int to enum | Dan Gudmundsson | |
In 2.9 several functions takes enum's instead of int as arguments, remove dirty -fpermissive fix and fix it correctly instead. | |||
2013-01-09 | wx: Deprecate functions not available in wxWidgets-2.9 | Dan Gudmundsson | |
Prepare to remove functionality which is not available in coming wxWidgets versions. | |||
2013-01-09 | wx: Fixes more changed/removed functionality in 2.9 | Dan Gudmundsson | |
2013-01-09 | wx: Ifdef changed/removed functionality in wxWidgets-2.9.x | Dan Gudmundsson | |
2013-01-09 | wx: Fix code generation bugs | Dan Gudmundsson | |
Removed defines that is void, i.e. -defined(FOO, ?NEVER_DEFINED_VALUE). Also removed wxSTC:sendMsg/[2|3] which was wrong before and breaks code generation with new doxygen. | |||
2013-01-09 | wx: Fix xml-parsing with new doxygen version | Dan Gudmundsson | |
2012-06-28 | [wx] Add callback option to event handler spec | Dan Gudmundsson | |
2012-03-29 | [wx] Fix list in list in list specs | Dan Gudmundsson | |
To many lists | |||
2012-03-16 | [wx] Fix listctrl issues | Dan Gudmundsson | |
Wrong arguments / return values in: hitTest getItemPosition and getItemRect | |||
2012-03-06 | [wx] Fix bad defines | Dan Gudmundsson | |
Reported by Vlad Dumitrescu. | |||
2012-03-01 | [wx] Fix bad type references | Dan Gudmundsson | |
2012-02-24 | [wx] Add missing stc function | Dan Gudmundsson | |
wxSTC:SetEdgeMode was missing for some reason. | |||
2012-02-24 | [wx] Add wxTaskBarIcon class | Dan Gudmundsson | |
2012-02-24 | [wx] Doc overloaded functions | Dan Gudmundsson | |
edoc do not handle overloaded type-specs, so doc them manually | |||
2012-02-22 | [wx] Fix spec errors | Dan Gudmundsson | |
2012-02-20 | [wx] Fix api bugs in wxDC | Dan Gudmundsson | |
Some out arguments was in args. | |||
2012-02-17 | [wx] Fix wxGraphicContext bugs | Dan Gudmundsson | |
* Lines had wrong arguments * Change float() to number in guards, when packing arguments integers are converted floats to automaticly anyway. | |||
2012-02-16 | [wx] Generated types for all wx classes | Dan Gudmundsson | |
2012-02-16 | [wx] Generate GL api from latest version | Dan Gudmundsson | |
- Remove edoc types in gl - Add OpenGL documentation | |||
2012-02-09 | [wx] Cleanup Makefiles | Dan Gudmundsson | |
Remove old "outside" otp building support. |