Copy wxPerl notes from the LaTeX documentation.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2009-10-18 17:47:01 +00:00
parent c06957daf1
commit 1058f65203
33 changed files with 606 additions and 4 deletions

View File

@@ -645,6 +645,12 @@ public:
when connecting an event generated by one object to a member
function of a different object. If it is omitted, @c this is used.
@beginWxPerlOnly
In wxPerl this function takes 4 arguments: @a id, @a lastid,
@a type, @a method; if @a method is undef, the handler is
disconnected.}
@endWxPerlOnly
@see Bind<>()
*/
void Connect(int id, int lastId, wxEventType eventType,
@@ -664,6 +670,10 @@ public:
wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(MyFrame::OnQuit) );
@endcode
@beginWxPerlOnly
Not supported by wxPerl.
@endWxPerlOnly
*/
void Connect(int id, wxEventType eventType,
wxObjectEventFunction function,
@@ -676,6 +686,10 @@ public:
This overload will connect the given event handler so that regardless of the
ID of the event source, the handler will be called.
@beginWxPerlOnly
Not supported by wxPerl.
@endWxPerlOnly
*/
void Connect(wxEventType eventType,
wxObjectEventFunction function,
@@ -699,6 +713,10 @@ public:
Data associated with the event table entry.
@param eventSink
Object whose member function should be called.
@beginWxPerlOnly
Not supported by wxPerl.
@endWxPerlOnly
*/
bool Disconnect(wxEventType eventType,
wxObjectEventFunction function,
@@ -710,6 +728,10 @@ public:
overload for more info.
This overload takes the additional @a id parameter.
@beginWxPerlOnly
Not supported by wxPerl.
@endWxPerlOnly
*/
bool Disconnect(int id = wxID_ANY,
wxEventType eventType = wxEVT_NULL,
@@ -722,6 +744,11 @@ public:
overload for more info.
This overload takes an additional range of source IDs.
@beginWxPerlOnly
In wxPerl this function takes 3 arguments: @a id,
@a lastid, @a type.
@endWxPerlOnly
*/
bool Disconnect(int id, int lastId,
wxEventType eventType,