]>
Dogcows Code - chaz/openbox/blob - scripts/motion.py
1 ############################################################################
2 ### Functions that provide callbacks for motion events to move and ###
4 ############################################################################
6 #############################################################################
7 ### Options that can be modified to change the functions' behaviors. ###
9 # move_popup - display a coordinates popup when moving windows. ###
12 # NOT IMPLEMENTED (yet?) ###
13 # move_rubberband - display an outline while moving instead of moving the ###
14 ### actual window, until the move is completed. Good for ###
15 ### slower systems. ###
16 move_rubberband
= 0 ###
18 # resize_popup - display a size popup when resizing windows. ###
21 # NOT IMPLEMENTED (yet?) ###
22 # resize_rubberband - display an outline while resizing instead of ###
23 ### resizing the actual window, until the resize is ###
24 ### completed. Good for slower systems. ###
25 resize_rubberband
= 0 ###
27 # resize_nearest - 1 to resize from the corner nearest where the mouse ###
28 ### is, 0 to resize always from the bottom right corner. ###
29 resize_nearest
= 1 ###
31 #############################################################################
57 def _motion_grab(data
):
58 global _motion_mask
, _inmove
, _inresize
;
60 if data
.action
== ob
.KeyAction
.Release
:
61 # have all the modifiers this started with been released?
62 if not _motion_mask
& data
.state
:
71 global _screen
, _client
, _cx
, _cy
, _dx
, _dy
76 global move_rubberband
78 # draw the outline ...
85 global _popwidget
, _poplabel
86 style
= ob
.openbox
.screen(_screen
).style()
87 font
= style
.labelFont()
88 text
= "X: " + str(x
) + " Y: " + str(y
)
89 length
= font
.measureString(text
)
91 _popwidget
= otk
.Widget(ob
.openbox
, style
,
92 otk
.Widget
.Horizontal
, 0,
93 style
.bevelWidth(), 1)
94 _popwidget
.setTexture(style
.titlebarFocusBackground())
95 _poplabel
= otk
.Label(_popwidget
)
96 _poplabel
.setTexture(style
.labelFocusBackground())
98 _poplabel
.resize(length
, font
.height())
99 _poplabel
.setText(text
)
100 area
= otk
.display
.screenInfo(_screen
).rect()
102 _popwidget
.move(area
.x() + (area
.width() -
103 _popwidget
.width()) / 2,
104 area
.y() + (area
.height() -
105 _popwidget
.height()) / 2)
108 """Moves the window interactively. This should only be used with
109 MouseMotion events. If move_popup or move_rubberband is enabled, then
110 the end_move function needs to be bound as well."""
111 if not data
.client
: return
113 # not-normal windows dont get moved
114 if not data
.client
.normal(): return
116 global _screen
, _client
, _cx
, _cy
, _dx
, _dy
117 _screen
= data
.screen
118 _client
= data
.client
119 _cx
= data
.press_clientx
120 _cy
= data
.press_clienty
121 _dx
= data
.xroot
- data
.pressx
122 _dy
= data
.yroot
- data
.pressy
126 ob
.kgrab(_screen
, _motion_grab
)
131 """Complete the interactive move of a window."""
132 global move_rubberband
, _inmove
133 global _popwidget
, _poplabel
146 global _screen
, _client
, _cx
, _cy
, _cw
, _ch
, _px
, _py
, _dx
, _dy
148 # pick a corner to anchor
149 if not (resize_nearest
or _context
== ob
.MouseContext
.Grip
):
150 corner
= ob
.Client
.TopLeft
156 corner
= ob
.Client
.BottomRight
159 corner
= ob
.Client
.BottomLeft
163 corner
= ob
.Client
.TopRight
166 corner
= ob
.Client
.TopLeft
172 if resize_rubberband
:
173 # draw the outline ...
176 _client
.resize(corner
, w
, h
)
180 global _popwidget
, _poplabel
181 style
= ob
.openbox
.screen(_screen
).style()
182 ls
= _client
.logicalSize()
183 text
= "W: " + str(ls
.x()) + " H: " + str(ls
.y())
185 _popwidget
= otk
.Widget(ob
.openbox
, style
,
186 otk
.Widget
.Horizontal
, 0,
187 style
.bevelWidth(), 1)
188 _popwidget
.setTexture(style
.titlebarFocusBackground())
189 _poplabel
= otk
.Label(_popwidget
)
190 _poplabel
.setTexture(style
.labelFocusBackground())
192 _poplabel
.fitString(text
)
193 _poplabel
.setText(text
)
194 area
= otk
.display
.screenInfo(_screen
).rect()
196 _popwidget
.move(area
.x() + (area
.width() -
197 _popwidget
.width()) / 2,
198 area
.y() + (area
.height() -
199 _popwidget
.height()) / 2)
202 """Resizes the window interactively. This should only be used with
203 MouseMotion events"""
204 if not data
.client
: return
206 # not-normal windows dont get resized
207 if not data
.client
.normal(): return
209 global _screen
, _client
, _cx
, _cy
, _cw
, _ch
, _px
, _py
, _dx
, _dy
210 _screen
= data
.screen
211 _client
= data
.client
212 _cx
= data
.press_clientx
213 _cy
= data
.press_clienty
214 _cw
= data
.press_clientwidth
215 _ch
= data
.press_clientheight
218 _dx
= data
.xroot
- _px
219 _dy
= data
.yroot
- _py
223 ob
.kgrab(_screen
, _motion_grab
)
226 def end_resize(data
):
227 """Complete the interactive resize of a window."""
228 global resize_rubberband
, _inresize
229 global _popwidget
, _poplabel
231 r
= resize_rubberband
232 resize_rubberband
= 0
234 resize_rubberband
= r
This page took 0.058205 seconds and 5 git commands to generate.