File: __init__.py

package info (click to toggle)
keybinder 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,488 kB
  • ctags: 158
  • sloc: sh: 10,224; ansic: 520; makefile: 105; python: 10
file content (26 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""
``keybinder`` is a python module for registering global key bindings,
for gtk-based applications.

This module originates in `Tomboy`_ and has been widely reused without
having a separate release. This package has taken the python module
for Tomboy's keybinder from the `Deskbar Applet`_ project, and broken
it out to a standalone module.

The module is licenced under the GNU General Public License v2 (or at
your option, any later version), see the included file COPYING for
details.

.. _Tomboy:            http://projects.gnome.org/tomboy/
.. _`Deskbar Applet`:  http://projects.gnome.org/deskbar-applet/

Homepage: http://kaizer.se/wiki/python-keybinder/
"""

__version__ = "0.2.2"

# gtk has to be setup
# this is to avoid warning spew if you plainly
# import keybinder; normally applications always use gtk themselves
import gtk
from _keybinder import *