wmclockmon: update change-log
[dockapps.git] / wmget / dockapp / da_mouse.h
blob6f439c57827ab5d6df0d00661e1753ff413b9562
1 #ifndef I_DOCKAPP_DA_MOUSE_H
2 #define I_DOCKAPP_DA_MOUSE_H
3 /*
4 wmget - A background download manager as a Window Maker dock app
5 Copyright (c) 2001-2003 Aaron Trickey <aaron@amtrickey.net>
7 Permission is hereby granted, free of charge, to any person
8 obtaining a copy of this software and associated documentation files
9 (the "Software"), to deal in the Software without restriction,
10 including without limitation the rights to use, copy, modify, merge,
11 publish, distribute, sublicense, and/or sell copies of the Software,
12 and to permit persons to whom the Software is furnished to do so,
13 subject to the following conditions:
15 The above copyright notice and this permission notice shall be
16 included in all copies or substantial portions of the Software.
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
22 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 ********************************************************************
27 dockapp/da_mouse.h - Mouse/clickregion handling defs
29 Private header file.
32 #ifndef DOCKAPP_EXPOSE_INTERNALS
33 # error da_mouse.h #included... this is internal to the dockapp lib...
34 #endif
36 void da_mouse_button_down (
37 int xpos,
38 int ypos,
39 int state);
41 dockapp_rv_t da_mouse_button_up (
42 int xpos,
43 int ypos,
44 int state);
47 #endif /* I_DOCKAPP_DA_MOUSE_H */