]> icculus.org git repositories - mikachu/openbox.git/blob - scripts/clicks.py
typo
[mikachu/openbox.git] / scripts / clicks.py
1 def def_click_client(action, win, type, modifiers, button, time):
2         client = Openbox_findClient(openbox, win)
3         if not client: return
4
5         if button == Button1 and type == Type_CloseButton:
6                 OBClient_close(client)
7         elif button <= Button3 and type == Type_MaximizeButton:
8                 print "OBClient_maximize(client)"
9         elif button == Button1 and type == Type_IconifyButton:
10                 print "OBClient_iconify(client)"
11         elif button == Button1 and type == Type_StickyButton:
12                 print "OBClient_sendtodesktop(client, 0xffffffff)"
13         elif type == Type_Titlebar or type == Type_CloseButton or \
14              type == Type_MaximizeButton or type == Type_IconifyButton or \
15              type == Type_StickyButton or type == Type_Label:
16                 if button == Button4:
17                         print "OBClient_shade(client)"
18                 elif button == Button5:
19                         print "OBClient_unshade(client)"
20
21 def def_press_model(action, win, type, modifiers, button, xroot, yroot, time):
22         if button != Button1: return
23         client = Openbox_findClient(openbox, win)
24         if not client or (type == Type_StickyButton or
25                           type == Type_IconifyButton or
26                           type == Type_MaximizeButton or
27                           type == Type_CloseButton):
28                 return
29         if click_focus != 0:
30                 OBClient_focus(client)
31         print "OBClient_raise(client)"
32
33 def def_click_root(action, win, type, modifiers, button, time):
34         if type == Type_Root:
35                 if button == Button1:
36                         print "nothing probly.."
37                         client = Openbox_focusedClient(openbox)
38                         if client: OBClient_unfocus(client)
39                 elif button == Button2:
40                         print "workspace menu"
41                 elif button == Button3:
42                         print "root menu"
43                 elif button == Button4:
44                         print "next workspace"
45                 elif button == Button5:
46                         print "previous workspace"
47
48 def def_doubleclick_client(action, win, type, modifiers, button, time):
49         client = Openbox_findClient(openbox, win)
50         if not client: return
51
52         if button == Button1 and (type == Type_Titlebar or type == Type_Label):
53                 print "OBClient_toggleshade(client)"
54
55
56 preregister(Action_ButtonPress, def_press_model)
57 register(Action_Click, def_click_client)
58 register(Action_Click, def_click_root)
59 register(Action_DoubleClick, def_doubleclick_client)
60
61 print "Loaded clicks.py"