~ubuntu-branches/ubuntu/maverick/wxwidgets2.8/maverick-proposed

« back to all changes in this revision

Viewing changes to docs/latex/wx/tevent.tex

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2007-11-06 18:25:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071106182513-809agqds6igh7mqo
Tags: 2.8.6.1-0ubuntu1
* New upstream version, based on the upstream tarball
  wxPython-src-2.8.6.1.tar.bz2, renamed debian to debian-upstream.
* Provide a get-orig-source target to do the repackaging.
* Fix "substvar-source-version-is-deprecated" lintian warnings.
* Remove duplicate Description field in debian/control.
* Add "\" at the end of line 8 in debian/python-wxtools.menu to fix
  "bad-test-in-menu-item" lintian error.
* Provide .xpm icons to fix "menu-icon-not-in-xpm-format" lintian errors,
  changed Icon field in debian/python-wxtools.menu.
* Fix "wrong-name-for-upstream-changelog" lintian warnings.
* Remove "Application;" from Categories field in debian/pycrust.desktop,
  debian/pyshell.desktop, debian/xrced.desktop.
* Switch "Apps" to "Applications" in debian/python-wxtools.menu to fix
  "menu-item-uses-apps-section" lintian warnings.
* Drop the icon extension from debian/pycrust.desktop,
  debian/pyshell.desktop, debian/xrced.desktop.
* Add dpatch support.
* Add "WX_CONFIG" patch.
* debian/rules:
  - added .xpm icons to install-gtk-py-tools target
  - added "docs/changes.txt" to dh_installchangelogs in binary-common target
  - added "\" at the end of "install-examples install-msw-dev
    install-msw-dbg install-headers-msw" line in .PHONY

Show diffs side-by-side

added added

removed removed

Lines of Context:
268
268
\rtfsp\helpref{wxWindow::SetEventHandler}{wxwindowseteventhandler} (or, preferably,
269
269
\rtfsp\helpref{wxWindow::PushEventHandler}{wxwindowpusheventhandler}) to make this
270
270
event handler the object that responds to events. This way, you can avoid
271
 
a lot of class derivation, and use the same event handler object to
272
 
handle events from instances of different classes. If you ever have to call a window's event handler
 
271
a lot of class derivation, and use instances of the same event handler class (but different
 
272
objects as the same event handler object shouldn't be used more than once) to
 
273
handle events from instances of different widget classes. If you ever have to call a window's event handler
273
274
manually, use the GetEventHandler function to retrieve the window's event handler and use that
274
275
to call the member function. By default, GetEventHandler returns a pointer to the window itself
275
276
unless an application has redirected event handling using SetEventHandler or PushEventHandler.
551
552
    wxPlotCurve   *m_curve;
552
553
};
553
554
 
554
 
DECLARE_EVENT_MACRO( wxEVT_PLOT_ACTION, -1 )
 
555
DECLARE_EVENT_TYPE( wxEVT_PLOT_ACTION, -1 )
555
556
 
556
557
typedef void (wxEvtHandler::*wxPlotEventFunction)(wxPlotEvent&);
557
558