diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-31 06:00:30 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-31 06:00:30 +0000 |
| commit | 05aad313ee969cae900b587941f47673029f41ef (patch) | |
| tree | cebc450b0199d91b95b26cb61b6714796529b296 /scripts | |
| parent | 3afcc0bbf048878003303a67faa656a216618513 (diff) | |
doc the functions at the top
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/motion.py | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/scripts/motion.py b/scripts/motion.py index b5cc279f..84547678 100644 --- a/scripts/motion.py +++ b/scripts/motion.py @@ -1,6 +1,6 @@ ############################################################################ -### Functions that provide callbacks for motion events to move and ### -### windows. ### +### Functions that provide callbacks for motion events to move and ### +### resize windows. ### ############################################################################ ############################################################################# @@ -28,6 +28,20 @@ resize_rubberband = 0 ### ### is, 0 to resize always from the bottom right corner. ### resize_nearest = 1 ### ### ### +### ### +# Provides: ### +# def move(data): ### +# """Moves the window interactively. This should only be used with ### +# MouseMotion events. If move_popup or move_rubberband is enabled, ### +# then the end_move function needs to be bound as well.""" ### +# def end_move(data): ### +# """Complete the interactive move of a window.""" ### +# def resize(data): ### +# """Resizes the window interactively. This should only be used with ### +# MouseMotion events""" ### +# def end_resize(data): ### +# """Complete the interactive resize of a window.""" ### +### ### ############################################################################# import ob |
