2 * mouse.c - mouse managing
4 * Copyright © 2007 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 #include "layouts/floating.h"
33 #include "layouts/tile.h"
35 extern AwesomeConf globalconf
;
37 /** Move client with mouse
38 * \param screen Screen ID
40 * \ingroup ui_callback
43 uicb_client_movemouse(int screen
, char *arg
__attribute__ ((unused
)))
45 int x1
, y
, ocx
, ocy
, di
, phys_screen
;
50 Client
*c
= globalconf
.focus
->client
;
51 Tag
**curtags
= get_current_tags(screen
);
56 if((curtags
[0]->layout
->arrange
!= layout_floating
)
58 uicb_client_togglefloating(screen
, (char *) "be nice");
64 area
= get_screen_area(c
->screen
,
65 globalconf
.screens
[screen
].statusbar
,
66 &globalconf
.screens
[screen
].padding
);
68 ocx
= geometry
.x
= c
->geometry
.x
;
69 ocy
= geometry
.y
= c
->geometry
.y
;
70 phys_screen
= get_phys_screen(c
->screen
);
71 if(XGrabPointer(globalconf
.display
,
72 RootWindow(globalconf
.display
, phys_screen
),
73 False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
74 None
, globalconf
.cursor
[CurMove
], CurrentTime
) != GrabSuccess
)
76 XQueryPointer(globalconf
.display
,
77 RootWindow(globalconf
.display
, phys_screen
),
78 &dummy
, &dummy
, &x1
, &y
, &di
, &di
, &dui
);
82 XMaskEvent(globalconf
.display
, MOUSEMASK
| ExposureMask
| SubstructureRedirectMask
, &ev
);
86 XUngrabPointer(globalconf
.display
, CurrentTime
);
88 case ConfigureRequest
:
89 handle_event_configurerequest(&ev
);
92 handle_event_expose(&ev
);
95 handle_event_maprequest(&ev
);
98 geometry
.x
= ocx
+ (ev
.xmotion
.x
- x1
);
99 geometry
.y
= ocy
+ (ev
.xmotion
.y
- y
);
100 if(abs(geometry
.x
) < globalconf
.screens
[screen
].snap
+ area
.x
&& geometry
.x
> area
.x
)
102 else if(abs((area
.x
+ area
.width
) - (geometry
.x
+ c
->geometry
.width
+ 2 * c
->border
)) < globalconf
.screens
[screen
].snap
)
103 geometry
.x
= area
.x
+ area
.width
- c
->geometry
.width
- 2 * c
->border
;
104 if(abs(geometry
.y
) < globalconf
.screens
[screen
].snap
+ area
.y
&& geometry
.y
> area
.y
)
106 else if(abs((area
.y
+ area
.height
) - (geometry
.y
+ c
->geometry
.height
+ 2 * c
->border
)) < globalconf
.screens
[screen
].snap
)
107 geometry
.y
= area
.y
+ area
.height
- c
->geometry
.height
- 2 * c
->border
;
108 geometry
.width
= c
->geometry
.width
;
109 geometry
.height
= c
->geometry
.height
;
110 client_resize(c
, geometry
, False
);
111 while(XCheckMaskEvent(globalconf
.display
, PointerMotionMask
, &ev
));
117 /** Resize client with mouse
118 * \param screen Screen ID
120 * \ingroup ui_callback
123 uicb_client_resizemouse(int screen
, char *arg
__attribute__ ((unused
)))
125 int ocx
= 0, ocy
= 0, n
;
127 Client
*c
= globalconf
.focus
->client
;
128 Tag
**curtags
= get_current_tags(screen
);
129 Area area
= { 0, 0, 0, 0 }, geometry
;
132 /* only handle floating and tiled layouts */
135 if((curtags
[0]->layout
->arrange
== layout_floating
) || c
->isfloating
)
142 else if (curtags
[0]->layout
->arrange
== layout_tile
143 || curtags
[0]->layout
->arrange
== layout_tileleft
)
145 for(n
= 0, c
= globalconf
.clients
; c
; c
= c
->next
)
146 if(IS_TILED(c
, screen
))
149 if(n
<= curtags
[0]->nmaster
) return;
151 for(c
= globalconf
.clients
; c
&& !IS_TILED(c
, screen
); c
= c
->next
);
154 area
= get_screen_area(screen
,
155 globalconf
.screens
[c
->screen
].statusbar
,
156 &globalconf
.screens
[c
->screen
].padding
);
162 if(XGrabPointer(globalconf
.display
, RootWindow(globalconf
.display
,
163 get_phys_screen(c
->screen
)),
164 False
, MOUSEMASK
, GrabModeAsync
, GrabModeAsync
,
165 None
, globalconf
.cursor
[CurResize
], CurrentTime
) != GrabSuccess
)
168 if(curtags
[0]->layout
->arrange
== layout_tileleft
)
169 XWarpPointer(globalconf
.display
, None
, c
->win
, 0, 0, 0, 0, 0, c
->geometry
.height
+ c
->border
- 1);
171 XWarpPointer(globalconf
.display
, None
, c
->win
, 0, 0, 0, 0, c
->geometry
.width
+ c
->border
- 1, c
->geometry
.height
+ c
->border
- 1);
175 XMaskEvent(globalconf
.display
, MOUSEMASK
| ExposureMask
| SubstructureRedirectMask
, &ev
);
179 XUngrabPointer(globalconf
.display
, CurrentTime
);
180 while(XCheckMaskEvent(globalconf
.display
, EnterWindowMask
, &ev
));
182 case ConfigureRequest
:
183 handle_event_configurerequest(&ev
);
186 handle_event_expose(&ev
);
189 handle_event_maprequest(&ev
);
192 if(curtags
[0]->layout
->arrange
== layout_floating
|| c
->isfloating
)
194 if((geometry
.width
= ev
.xmotion
.x
- ocx
- 2 * c
->border
+ 1) <= 0)
196 if((geometry
.height
= ev
.xmotion
.y
- ocy
- 2 * c
->border
+ 1) <= 0)
198 geometry
.x
= c
->geometry
.x
;
199 geometry
.y
= c
->geometry
.y
;
200 client_resize(c
, geometry
, True
);
202 else if(curtags
[0]->layout
->arrange
== layout_tile
203 || curtags
[0]->layout
->arrange
== layout_tileleft
)
205 if(curtags
[0]->layout
->arrange
== layout_tile
)
206 mwfact
= (double) (ev
.xmotion
.x
- area
.x
) / area
.width
;
208 mwfact
= 1 - (double) (ev
.xmotion
.x
- area
.x
) / area
.width
;
209 if(mwfact
< 0.1) mwfact
= 0.1;
210 else if(mwfact
> 0.9) mwfact
= 0.9;
211 if(fabs(curtags
[0]->mwfact
- mwfact
) >= 0.05)
213 curtags
[0]->mwfact
= mwfact
;
215 /* drop possibly arrived events while we where arrange()ing */
216 while(XCheckMaskEvent(globalconf
.display
, PointerMotionMask
, &ev
));
226 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80