summaryrefslogtreecommitdiff
path: root/lib/wx/doc
Commit message (Collapse)AuthorAgeFilesLines
* Prepare releaseErlang/OTP2023-05-151-0/+23
|
* Prepare releaseErlang/OTP2023-04-251-0/+16
|
* Update copyright yearErlang/OTP2023-04-251-1/+1
|
* gl: Fix glDebugMessage functionalityDan Gudmundsson2023-04-241-8/+5
| | | | | gl:getDebugMessageLog returned one list instead of several, and gl:debugMessageInsert had an unused lenght parameter.
* Fix wx-3.2 macros and OpenGL supportDan Gudmundsson2023-04-242-3/+27
| | | | | | Some changed macros in 3.2. Also add support function for OpenGL contexts.
* Prepare releaseErlang/OTP2022-12-121-0/+17
|
* Prepare releaseErlang/OTP2022-05-171-0/+32
|
* Merge branch 'maint' into masterLukas Larsson2022-05-031-0/+28
|\ | | | | | | | | | | | | * maint: Updated OTP version Prepare release Update copyright year
| * Prepare releaseErlang/OTP2022-05-021-0/+28
| |
* | wx: Document `wx:subscribe_events/0`Wojtek Mach2022-04-191-1/+42
| |
* | Revert "Prepare release"Henrik Nord2022-04-131-32/+0
| | | | | | | | This reverts commit a2c8df222e6d02fa518d5d6cbbea75a9dd720d30.
* | Prepare releaseErlang/OTP2022-04-111-0/+32
| |
* | Merge pull request #5816 from wojtekmach/wm-wx-MacGetCommonMenuBarDan Gudmundsson2022-03-301-1/+18
|\ \ | | | | | | | | | wx: Add MacGetCommonMenuBar and MacSetCommonMenuBar OTP-18008
| * | wx: Add MacGetCommonMenuBar and MacSetCommonMenuBarWojtek Mach2022-03-251-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is especially useful for apps that manage multiple wxFrames where we can close the last window but want the application to keep running. Before this patch we'd be stuck with the default menu bar, created in `wxe_impl.cpp`, that we cannot interact with. After this patch we can, which means we can add new menu items, subscribe to events, etc. Example: wx:new(), MB = wxMenuBar:macGetCommonMenuBar(), M = wxMenuBar:oSXGetAppleMenu(MB), wxMenu:setTitle(M, "Test").
* | | Merge branch 'maint' into masterRickard Green2022-03-291-0/+16
|\ \ \ | |/ / |/| / | |/ | | | | | | * maint: Updated OTP version Prepare release Update copyright year
| * Prepare releaseErlang/OTP2022-03-291-0/+16
| |
* | Revert "Prepare release"Henrik Nord2022-03-241-26/+0
| | | | | | | | This reverts commit 435bc5e68dd45ff6f7992077998930519208e910.
* | Prepare releaseErlang/OTP2022-03-231-0/+26
| |
* | Merge branch 'dgud/wx/mouse_event_aux/OTP-17950'Dan Gudmundsson2022-03-182-3/+45
|\ \
| * | wx: Add aux1 and aux2 fields to the wxMouseState recordDan Gudmundsson2022-02-182-3/+45
| | | | | | | | | | | | | | | Don't add it to the event record, you can already subscribe to events of aux1 and aux2 so I don't want make the event record larger and incompatible.
* | | Merge branch 'maint' into masterHenrik Nord2022-03-102-1/+22
|\ \ \ | |/ / |/| / | |/ | | | | | | * maint: Updated OTP version Prepare release Update copyright year
| * Prepare releaseErlang/OTP2022-03-091-0/+21
| |
| * Update copyright yearErlang/OTP2022-03-091-1/+1
| |
* | Merge branch 'maint'Dan Gudmundsson2022-02-171-46/+5
|\ \ | |/
| * wx: Remove static_data from wxImage functionsDan Gudmundsson2022-02-081-46/+5
| | | | | | | | | | | | | | | | Only a few functions where correct and even they will cause crashes if the original binary is garbage collected. Instead remove the option and always copy the data and let wxWidgets free it when done.
* | Revert "Prepare release"Henrik Nord2022-02-161-16/+0
| | | | | | | | This reverts commit 95f5a792610ed4c87457863cb03b047414ad4a14.
* | Prepare releaseErlang/OTP2022-02-151-0/+16
| |
* | Update copyright yearErlang/OTP2022-02-151-1/+1
| |
* | Fix typos in lib/wxKian-Meng Ang2022-01-191-3/+3
|/
* Prepare releaseErlang/OTP2021-12-141-0/+16
|
* Update copyright yearRickard Green2021-12-13237-237/+237
|
* wx: Improve opengl doc generationDan Gudmundsson2021-11-151-813/+205
| | | | | To many function where not found when generating doc, make more special cases and exceptions.
* Prepare releaseErlang/OTP2021-09-171-0/+42
|
* wx: add some font functions to wxtextattrDan Gudmundsson2021-08-251-0/+105
| | | | | | The functions was missing, other functions are missing too, but they seems to be for wxRichtext which is not yet implemented/supported.
* wx: Check wxColour type harderDan Gudmundsson2021-08-241-2/+2
| | | | | | | | | Can't check that argument is a tuple of size 4 is a color, since it could also be an object_ref and make the clause match stuff the shouldn't be matched. Also make color to have a seperate type footprint to discover those cases.
* Merge branch 'maint-22' into maintRickard Green2021-05-201-0/+15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * maint-22: Updated OTP version Prepare release # Conflicts: # OTP_VERSION # erts/doc/src/notes.xml # erts/vsn.mk # lib/common_test/doc/src/notes.xml # lib/common_test/vsn.mk # lib/crypto/doc/src/notes.xml # lib/crypto/vsn.mk # lib/erl_interface/doc/src/notes.xml # lib/erl_interface/vsn.mk # lib/megaco/doc/src/notes.xml # lib/megaco/vsn.mk # lib/odbc/doc/src/notes.xml # lib/odbc/vsn.mk # lib/snmp/doc/src/notes.xml # lib/snmp/vsn.mk # lib/wx/doc/src/notes.xml # lib/wx/vsn.mk # make/otp_version_tickets # otp_versions.table
| * Prepare releaseErlang/OTP2021-05-201-0/+15
| |
* | Merge branch 'maint-23' into maintRickard Green2021-05-201-1/+15
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * maint-23: Updated OTP version Prepare release # Conflicts: # OTP_VERSION # erts/doc/src/notes.xml # erts/vsn.mk # lib/common_test/doc/src/notes.xml # lib/common_test/vsn.mk # lib/crypto/doc/src/notes.xml # lib/crypto/vsn.mk # lib/erl_interface/doc/src/notes.xml # lib/erl_interface/vsn.mk # lib/megaco/doc/src/notes.xml # lib/megaco/vsn.mk # lib/odbc/doc/src/notes.xml # lib/odbc/vsn.mk # lib/snmp/doc/src/notes.xml # lib/snmp/vsn.mk # lib/ssh/doc/src/notes.xml # lib/ssh/vsn.mk # lib/wx/doc/src/notes.xml # lib/wx/vsn.mk # make/otp_version_tickets # otp_versions.table
| * | Prepare releaseErlang/OTP2021-05-201-0/+15
| | |
* | | Prepare releaseErlang/OTP2021-05-201-0/+22
| | |
* | | Prepare releaseErlang/OTP2021-05-101-0/+82
| | |
* | | Correct licenseDan Gudmundsson2021-04-28234-3276/+468
| | | | | | | | | | | | The docs is generated from wxWidgets docs and should have wxWidgets copyright.
* | | Improve doc generationDan Gudmundsson2021-04-2819-19/+18
| | |
* | | Revert "Prepare release"Henrik Nord2021-04-211-82/+0
| | | | | | | | | | | | This reverts commit 221e41bd32e433f6e08bbfedb013fc49c9aa1283.
* | | Prepare releaseErlang/OTP2021-04-191-0/+82
| | |
* | | Revert "Prepare release"Henrik Nord2021-03-261-82/+0
| | | | | | | | | | | | This reverts commit 1cc1d15c4e54c1d9d8c34a4c66193a95b10c479a.
* | | Prepare releaseErlang/OTP2021-03-251-0/+82
| | |
* | | Merge branch 'maint'Henrik Nord2021-03-241-0/+18
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | * maint: Updated OTP version Prepare release # Conflicts: # OTP_VERSION
| * | Prepare releaseErlang/OTP2021-03-221-0/+18
| | |
* | | Merge pull request #4566 from diodechain/letz/wxNotificationMessageDan Gudmundsson2021-03-151-1/+26
|\ \ \ | | | | | | | | wxNotificationMessage macos & win polish