Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-16 | Merge branch 'maint' | Dan Gudmundsson | |
2014-05-28 | Add synchronous stop function to wx_object | Siri Hansen | |
2014-05-22 | wx: Add wxPopup(Transient)Window | Dan Gudmundsson | |
Useful class though not documented in wxWidgets-2.8 | |||
2014-03-28 | Merge branch 'dgud/wx/fix-wx3-windows64' | Dan Gudmundsson | |
* dgud/wx/fix-wx3-windows64: wx: Send destroy message direct wx: Add wxLocale class wx: Added misc functions wx: Fix memory garbage collector wx: Fix possibility to fetch early open msgs on mac wx: Fix listCtrl sort callback wx: Fix configure for win64 with wxWidgets-3.0 | |||
2014-03-28 | wx: loosen testcase | Dan Gudmundsson | |
2014-03-20 | wx: Fix listCtrl sort callback | Dan Gudmundsson | |
2014-02-24 | Add test suites performing app and appup file checks | Tobias Schlager | |
Add the mentioned test suites for *all* library and touched non-library applications. | |||
2014-02-13 | wx: Test fixes compilation warning | Dan Gudmundsson | |
and more dbg info | |||
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-01-22 | wx: Delay memory cleanup until safe | Dan Gudmundsson | |
Previously we could do a cleanup while we where recursed down and thus delete the objects we where invoking. | |||
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-14 | wx: Fix crash in wxe_server cleanup | Dan Gudmundsson | |
Do not use disconnect event listener when we are exiting the port, it may interfere with window destructions and cause a crash. | |||
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-27 | wx: Add toolbar testcase | Dan Gudmundsson | |
2013-08-27 | wx: Add character event test/example | Dan Gudmundsson | |
2013-04-19 | Remove the "coding: utf-8" comment from all Erlang source files | Hans Bolinder | |
2013-02-26 | wx: Fix failing testcases | Dan Gudmundsson | |
Fix bad hit test. Fix timing issue in test. | |||
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-09 | wx: Fix demo and tests | Dan Gudmundsson | |
Added debugging and workarounds for wx-2.9 on Mac | |||
2013-01-09 | wx: Modify tests so they work on wxWidgets-2.9 | Dan Gudmundsson | |
Things have changed in 2.9 modify tests so they are still valid for both 2.8 and 2.9 branches, so far only tested on linux. | |||
2013-01-09 | Prepare OTP files for Unicode as default encoding | Hans Bolinder | |
2012-11-19 | Enable silent start of wx | Håkan Mattsson | |
Add {silent_start, boolean()} option to wx:new/1 in order to be able to suppress error messages during startup of wx. | |||
2012-06-05 | Update to work with whitespace in exec path | Lukas Larsson | |
OTP-10106 OTP-10107 | |||
2012-02-27 | [wx] Add simple taskbaricon test | Dan Gudmundsson | |
2012-02-09 | [wx] Cleanup Makefiles | Dan Gudmundsson | |
Remove old "outside" otp building support. | |||
2011-12-06 | [wx] Avoid deadlock in handle_sync_event | Dan Gudmundsson | |
Avoid sending cb messages to the wx_object, since it may deadlock. Instead send it to the wxe_server which reads the state from the wx_object's process_dictionary. Ugly but it's the only way I can avoid the deadlock. | |||
2011-11-16 | [wx] Fix deadlock in callback handling | Dan Gudmundsson | |
New testcase showcase the deadlock | |||
2011-09-29 | Update copyright years | Björn-Egil Dahlberg | |
2011-09-21 | [wx] Test colors in textctrl | Dan Gudmundsson | |
2011-09-21 | Merge branch 'dgud/wx/virtual-listctrl/OTP-9415' into dev | Dan Gudmundsson | |
* dgud/wx/virtual-listctrl/OTP-9415: Handle overloading callbacks the same as events Fix documentation and callback options in wxListCtrl:create/3 Add example and testcase Add wxListItemAttr Generated code of previous commit Add support for virtual listctrls Re-generated with new doxygen | |||
2011-07-14 | Handle overloading callbacks the same as events | Dan Gudmundsson | |
Previously other process wx calls where allowed to execute in the callback code, but that lead to a deadlock if for example a dialog was created. | |||
2011-07-07 | Add example and testcase | Dan Gudmundsson | |
2011-06-30 | wx: fix obsolete guard warning (list/1) | Tuncer Ayaz | |
2011-03-11 | Update copyright years | Björn-Egil Dahlberg | |
2011-02-17 | Rename Suite Callback to Common Test Hook | Lukas Larsson | |
2011-02-17 | Update and add cover spec files to work with common_test | Lukas Larsson | |
2011-02-17 | Update all test specs | Lukas Larsson | |
2011-02-17 | Fix formatting for wx | Lukas Larsson | |
2011-02-17 | Add init_per_suite and end_per_suite | Lukas Larsson | |
2011-02-17 | Add ts_install_scb to suite/0 | Lukas Larsson | |
2011-02-17 | Update wx tests to conform with common_test standard | Lukas Larsson | |
2011-02-17 | Update all fin_per_testcase to end_per_testcase. | Lukas Larsson | |
2011-02-17 | Update tests to work with ts -> ct migrations script. | Lukas Larsson | |
2010-11-26 | Merge branch 'dgud/wx/misc-bugs/OTP-8951' into dev | Dan Gudmundsson | |
* dgud/wx/misc-bugs/OTP-8951: Add wxSystemSettings Avoid eternal loops when quiting | |||
2010-11-19 | Fix non available opengl functions | Dan Gudmundsson | |
Opengl functions are loaded at runtime and differ with drivers and cards. |