diff options
Diffstat (limited to 'lib/wx/doc')
-rw-r--r-- | lib/wx/doc/src/notes.xml | 8 | ||||
-rw-r--r-- | lib/wx/doc/src/wxEvtHandler.xml | 4 | ||||
-rw-r--r-- | lib/wx/doc/src/wxMouseEvent.xml | 44 |
3 files changed, 49 insertions, 7 deletions
diff --git a/lib/wx/doc/src/notes.xml b/lib/wx/doc/src/notes.xml index 786412a44f..5a9632cd01 100644 --- a/lib/wx/doc/src/notes.xml +++ b/lib/wx/doc/src/notes.xml @@ -4,7 +4,7 @@ <chapter> <header> <copyright> - <year>2009</year><year>2021</year> + <year>2009</year><year>2022</year> <holder>Ericsson AB. All Rights Reserved.</holder> </copyright> <legalnotice> @@ -253,7 +253,7 @@ <item> <p> Fixed wx initialization on mac, top level menus did not - always work on newer MacOS versions. The menues will not + always work on newer MacOS versions. The menus will not work until wxWidgets-3.1.5 is released and used on these MacOS versions.</p> <p> @@ -1033,7 +1033,7 @@ <item> <p> Wx on MacOS X generated complains on stderr about certain - cocoa functions not beeing called from the "Main thread". + cocoa functions not being called from the "Main thread". This is now corrected.</p> <p> Own Id: OTP-9081</p> @@ -1211,7 +1211,7 @@ <list> <item> <p>wxHtmlWindow class implemented.</p> <p>All exceptions - from callbacks are now catched and written to the + from callbacks are now caught and written to the log.</p> <p>Some defines where wrong in 'wx.hrl'.</p> <p><c>wx:batch/1</c> and friends could hang forever if for instance a breakpoint was set inside the fun. That diff --git a/lib/wx/doc/src/wxEvtHandler.xml b/lib/wx/doc/src/wxEvtHandler.xml index c38da3e127..fdc96971ca 100644 --- a/lib/wx/doc/src/wxEvtHandler.xml +++ b/lib/wx/doc/src/wxEvtHandler.xml @@ -7,7 +7,7 @@ <erlref> <header> <copyright> - <year>2020</year><year>2021</year> + <year>2020</year><year>2022</year> <holder>wxWidgets team.</holder></copyright> <legalnotice>Licensed under the wxWindows Free Documentation Licence, Version 3 </legalnotice> @@ -48,7 +48,7 @@ </p><p>id:<c>{id, integer()} </c> The identifier (or first of the identifier range) to be associated with this event handler. Default is ?wxID_ANY </p><p>lastid:<c>{lastId,integer()} </c> The second part of the identifier range. If used 'id' must be set as the starting identifier range. Default is ?wxID_ANY </p><p>skip:<c>{skip,boolean()} </c> If skip is true further event_handlers will be called. This is not used if the 'callback' option is used. Default is <c>false</c>. - </p><p>callback:<c>{callback,function()} </c> Use a callback<c>fun(EventRecord::wx(),EventObject::wxObject()) </c> to process the event. Default not specfied i.e. a message will be delivered to the process calling this function. + </p><p>callback:<c>{callback,function()} </c> Use a callback<c>fun(EventRecord::wx(),EventObject::wxObject()) </c> to process the event. Default not specified i.e. a message will be delivered to the process calling this function. </p><p>userData:<c>{userData,term()} </c> An erlang term that will be sent with the event. Default: []. </p></desc> </func> diff --git a/lib/wx/doc/src/wxMouseEvent.xml b/lib/wx/doc/src/wxMouseEvent.xml index 5c690102e4..2f9297be83 100644 --- a/lib/wx/doc/src/wxMouseEvent.xml +++ b/lib/wx/doc/src/wxMouseEvent.xml @@ -7,7 +7,7 @@ <erlref> <header> <copyright> - <year>2020</year><year>2021</year> + <year>2020</year><year>2022</year> <holder>wxWidgets team.</holder></copyright> <legalnotice>Licensed under the wxWindows Free Documentation Licence, Version 3 </legalnotice> @@ -322,5 +322,47 @@ </p><p>Notice that before wxWidgets 2.9.4 this method returned <c>int</c>. </p></desc> </func> + + <func> + <name name="aux1DClick" arity="1" clause_i="1" since=""/> + <fsummary>Returns true if the event was a first extra button double click. </fsummary> + <desc><p>Returns true if the event was a first extra button double click. + </p></desc> + </func> + + <func> + <name name="aux1Down" arity="1" clause_i="1" since=""/> + <fsummary>Returns true if the first extra button mouse button changed to down. </fsummary> + <desc><p>Returns true if the first extra button mouse button changed to down. + </p></desc> + </func> + + <func> + <name name="aux1Up" arity="1" clause_i="1" since=""/> + <fsummary>Returns true if the first extra button mouse button changed to up. </fsummary> + <desc><p>Returns true if the first extra button mouse button changed to up. + </p></desc> + </func> + + <func> + <name name="aux2DClick" arity="1" clause_i="1" since=""/> + <fsummary>Returns true if the event was a second extra button double click. </fsummary> + <desc><p>Returns true if the event was a second extra button double click. + </p></desc> + </func> + + <func> + <name name="aux2Down" arity="1" clause_i="1" since=""/> + <fsummary>Returns true if the second extra button mouse button changed to down. </fsummary> + <desc><p>Returns true if the second extra button mouse button changed to down. + </p></desc> + </func> + + <func> + <name name="aux2Up" arity="1" clause_i="1" since=""/> + <fsummary>Returns true if the second extra button mouse button changed to up. </fsummary> + <desc><p>Returns true if the second extra button mouse button changed to up. + </p></desc> + </func> </funcs> </erlref> |