Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-02 | wx: Fix wxAuiManager:getAllPanes/1 | Dan Gudmundsson | |
It was broken. | |||
2015-08-28 | wx: Add missing aui functionality | Dan Gudmundsson | |
2015-07-01 | wx: Make wxLANGUAGE_ variable | Dan Gudmundsson | |
So they work on both wxWidgets-2.8 and 3.0 | |||
2015-06-30 | wx: Add mouse_capture_lost event | Dan Gudmundsson | |
Needed to avoid asserts when capturing mouse on Windows. | |||
2015-06-30 | wx: Fix code generator | Dan Gudmundsson | |
I had changed the (generatade) code without updating the code generator in commit 38cb91a9. Fixed now, and also fixed a typo in the generated licence code. | |||
2015-06-18 | Change license text to APLv2 | Bruce Yinhe | |
2015-05-05 | wx: Add missing data in events | Dan Gudmundsson | |
Some events where missing useful information. May require user code recompilation, since some records in wx.hrl have chnaged it's definition. | |||
2015-03-27 | wx: Fix variable cursor constants | Dan Gudmundsson | |
Fix cursor constants that changes with OS and wxWidgets releases. | |||
2014-05-22 | wx: Add wxPopup(Transient)Window | Dan Gudmundsson | |
Useful class though not documented in wxWidgets-2.8 | |||
2014-05-13 | wx: Fix non constant define (wxSL_LABELS) | Dan Gudmundsson | |
wxSL_LABELS have changed constant value in 3.0, make version agnostic by doing a lookup during runtime instead of constant. Thanks Enrique Fernández (efcasado) | |||
2014-04-16 | wx: Add wxActivateEvent | Dan Gudmundsson | |
2014-04-16 | wx: Add missing wxTextCtrl:changeValue | Dan Gudmundsson | |
It was missing. | |||
2014-03-26 | wx: Add wxLocale class | Dan Gudmundsson | |
2014-03-25 | wx: Added misc functions | Dan Gudmundsson | |
Nice to have functionality | |||
2014-01-21 | wx: Add init_dialog event | Dan Gudmundsson | |
It was missing. | |||
2013-11-21 | wx: wxListBox::Set crashes on wxWidgets 3.0 with NULL argument | Sergei Golovan | |
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-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 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. | |||
2012-03-16 | [wx] Fix listctrl issues | Dan Gudmundsson | |
Wrong arguments / return values in: hitTest getItemPosition and getItemRect | |||
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-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. | |||
2011-11-10 | [wx] Add wxSystemOptions | Dan Gudmundsson | |
Needed on mac | |||
2011-07-07 | Fix documentation and callback options in wxListCtrl:create/3 | Dan Gudmundsson | |
2011-07-07 | Add wxListItemAttr | Dan Gudmundsson | |
Needed in virtual listctrls. | |||
2011-07-07 | Add support for virtual listctrls | Dan Gudmundsson | |
2010-11-15 | Initilize opengl after setCurrent | Dan Gudmundsson | |
No rendering context is available until setCurrent is called the first time, opengl extensions can not be loaded before the rendering context is created. | |||
2010-11-15 | Windows and Mac build issues | Dan Gudmundsson | |
2010-11-15 | Split opengl functionality into separate dynamic library | Dan Gudmundsson | |
The idea is to build a separate opengl library which can be reused by other erlang applications. | |||
2010-08-19 | Added missing wxTextCtrl:editLabel/2. | Dan Gudmundsson | |
Reported by akorosmezey. | |||
2010-07-14 | Implemented wxSystemSettings class. | Dan Gudmundsson | |
It was missing as Doug Edmunds pointed out. | |||
2010-03-12 | Fixed code generation from newer doxygen versions. | Dan Gudmundsson | |
Also changed the wx.hrl output order. Tried to get it to work with both doxygen-1.4.6 and doxygen-1.6.3. Minor problems still exists with doxygen-1.6.3. | |||
2010-02-02 | Added wxListCtrl:getEditCtrl (not available on Mac) | Dan Gudmundsson | |
2010-01-19 | wx: Improved wxTreeCtrl. | Dan Gudmundsson | |
Changed representation of wxTreeItem to be int. This saves memory, where the driver don't need to keep a reference map for every tree item. And added getFirstChild and getNextChild to wxTreeCtrl. | |||
2009-12-04 | Fixed generation of wxFileDialog:getPaths/1. | Dan Gudmundsson | |
2009-11-20 | The R13B03 release.OTP_R13B03 | Erlang/OTP | |