Skip to main content

A tiny library for simple and convenient matplotlib event handling

Project description

mpl-events

mpl-events is a tiny library for simple and convenient matplotlib event handling with minimum boilerplate code. In other words, the library provides high level API for using matplotlib event system.

Pros and cons

Pros:

  • We do not use raw strings for event names. Intstead, we use MplEvent enum class for all events.
  • We do not use integer id for connection. Instead, connection between event and handler incapsulated via class MplEventConnection
  • mpl-events objects do not own figures and do not create additional references to figures
  • mpl-events provides convenient base class MplEventDispatcher and handlers API for handling all mpl events inside one class without boilerplate code
  • mpl-events provides high level API, auto disconnecting and cleanup

Cons:

  • Additional level of abstraction (if this can be considered a disadvantage)
  • Additional dependency in your project

Installation

Python 3.6 or newer is supported.

You can use pip to install mpl-events:

pip install mpl-events

or from github repo:

pip install git+https://github.com/espdev/mpl-events.git

Usage

Event dispatchers

Custom event dispatcher class might be created to handle some matplotlib events just inheriting MplEventDispatcher class and implementing the required event handlers.

The following example shows how we can create the dispatcher for handling all mouse events:

from matplotlib import pyplot as plt
from mpl_events import MplEventDispatcher, mpl

class MouseEventDispatcher(MplEventDispatcher):

    def on_mouse_button_press(self, event: mpl.MouseEvent):
        print(f'mouse button {event.button} pressed')

    def on_mouse_button_release(self, event: mpl.MouseEvent):
        print(f'mouse button {event.button} released')

    def on_mouse_move(self, event: mpl.MouseEvent):
        print(f'mouse moved')

    def on_mouse_wheel_scroll(self, event: mpl.MouseEvent):
        print(f'mouse wheel scroll {event.step}')

figure = plt.figure()

# setup figure and make plots is here ...

mouse_dispatcher = MouseEventDispatcher(figure)
mouse_dispatcher.mpl_connect()

plt.show()

MplEventDispatcher class provides API (handler methods interface) for all matplotlib events. You may override and implement some of these methods for handling corresponding events.

The dispatcher might be connected to a canvas using mpl objects figure or axes (or canvas). In general, we do not need to think about it. We just pass figure instance to constructor usually.

We calls method mpl_connect() and it is all. We do not need to worry about connecting/disconnecting or remember mpl event names.

If we want to use another methods (not MplEventDispatcher API) for handling events we can use mpl_event_handler decorator inside our dispatcher class.

from mpl_events import MplEventDispatcher, MplEvent, mpl_event_handler, mpl

class MyDrawEventDispatcher(MplEventDispatcher):

    @mpl_event_handler(MplEvent.FIGURE_CLOSE)
    def _close_event_handler(self, event: mpl.CloseEvent):
        print(f'figure {event.canvas.figure} closing')

Also we can create event dispatchers hierarchies:

from mpl_events import MplEventDispatcher, mpl

class MyEventDispatcherBase(MplEventDispatcher):
    def on_figure_close(self, event: mpl.CloseEvent):
        print('figure closing from MyEventDispatcherBase')

class MyEventDispatcher(MyEventDispatcherBase):

    def on_figure_close(self, event: mpl.CloseEvent):
        super().on_figure_close(event)
        print('figure closing from MyEventDispatcher')

    def on_figure_resize(self, event: mpl.ResizeEvent):
        print('figure resizing')

Event connections

The connection between event and handler incapsulated in MplEventConnection class. This class is high level wrapper for figure.canvas.mpl_connect/figure.canvas.mpl_disconnect mpl API.

MplEventConnection can be used if we want to handle events and do not use event dispatcher interface.

In this case we just create instance of MplEventConnection class and pass mpl object for connecting (figure, axes or canvas), event type as MplEvent enum and handler as callable.

from matplotlib import pyplot as plt
from mpl_events import MplEventConnection, MplEvent, mpl

def close_handler(event: mpl.CloseEvent):
    print('figure closing')

figure = plt.figure()

conn = MplEventConnection(figure, MplEvent.FIGURE_CLOSE, close_handler)

print(conn)
# MplEventConnection(event=<FIGURE_CLOSE:close_event>, handler=<function close_handler at 0x0000013FD1002E18>, id=5)

plt.show()

Disable default key press event handler

Matplotlib figures usually contain navigation bar for some interactions with axes and this navigation bar handles key presses. By default key press handler is connected in FigureManagerBase mpl class. mpl-events provides disable_default_key_press_handler function to disconnect the default key press handler.

Here is a simple example:

from matplotlib import pyplot as plt
from mpl_events import MplEventDispatcher, disable_default_key_press_handler, mpl

class KeyEventDispatcher(MplEventDispatcher):

    def __init__(self, mpl_obj):
        super().__init__(mpl_obj)
        disable_default_key_press_handler(mpl_obj)

    def on_key_press(self, event: mpl.KeyEvent):
        print(f'Pressed key {event.key}')

    def on_key_release(self, event: mpl.KeyEvent):
        print(f'Released key {event.key}')

figure = plt.figure()

dispatcher = KeyEventDispatcher(figure)
dispatcher.mpl_connect()

plt.show()

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpl-events-0.0.2.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

mpl_events-0.0.2-py3-none-any.whl (8.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page