]>
Dogcows Code - chaz/openbox/blob - openbox/actions/moveresizeto.c
1 #include "openbox/actions.h"
2 #include "openbox/client.h"
3 #include "openbox/screen.h"
4 #include "openbox/frame.h"
5 #include <stdlib.h> /* for atoi */
26 static gpointer
setup_func(xmlNodePtr node
);
27 static gboolean
run_func(ObActionsData
*data
, gpointer options
);
28 /* 3.4-compatibility */
29 static gpointer
setup_center_func(xmlNodePtr node
);
31 void action_moveresizeto_startup(void)
33 actions_register("MoveResizeTo", setup_func
, g_free
, run_func
);
34 /* 3.4-compatibility */
35 actions_register("MoveToCenter", setup_center_func
, g_free
, run_func
);
38 static void parse_coord(xmlNodePtr n
, gint
*pos
,
39 gboolean
*opposite
, gboolean
*center
)
41 gchar
*s
= obt_parse_node_string(n
);
42 if (g_ascii_strcasecmp(s
, "current") != 0) {
43 if (!g_ascii_strcasecmp(s
, "center"))
48 if (s
[0] == '-' || s
[0] == '+')
57 static gpointer
setup_func(xmlNodePtr node
)
62 o
= g_new0(Options
, 1);
67 o
->monitor
= CURRENT_MONITOR
;
69 if ((n
= obt_parse_find_node(node
, "x")))
70 parse_coord(n
, &o
->x
, &o
->xopposite
, &o
->xcenter
);
72 if ((n
= obt_parse_find_node(node
, "y")))
73 parse_coord(n
, &o
->y
, &o
->yopposite
, &o
->ycenter
);
75 if ((n
= obt_parse_find_node(node
, "width"))) {
76 gchar
*s
= obt_parse_node_string(n
);
77 if (g_ascii_strcasecmp(s
, "current") != 0)
78 o
->w
= obt_parse_node_int(n
);
81 if ((n
= obt_parse_find_node(node
, "height"))) {
82 gchar
*s
= obt_parse_node_string(n
);
83 if (g_ascii_strcasecmp(s
, "current") != 0)
84 o
->h
= obt_parse_node_int(n
);
88 if ((n
= obt_parse_find_node(node
, "monitor"))) {
89 gchar
*s
= obt_parse_node_string(n
);
90 if (g_ascii_strcasecmp(s
, "current") != 0) {
91 if (!g_ascii_strcasecmp(s
, "all"))
92 o
->monitor
= ALL_MONITORS
;
93 else if(!g_ascii_strcasecmp(s
, "next"))
94 o
->monitor
= NEXT_MONITOR
;
95 else if(!g_ascii_strcasecmp(s
, "prev"))
96 o
->monitor
= PREV_MONITOR
;
98 o
->monitor
= obt_parse_node_int(n
) - 1;
106 /* Always return FALSE because its not interactive */
107 static gboolean
run_func(ObActionsData
*data
, gpointer options
)
109 Options
*o
= options
;
115 gint x
, y
, lw
, lh
, w
, h
;
119 cmon
= client_monitor(c
);
121 case CURRENT_MONITOR
:
124 mon
= SCREEN_AREA_ALL_MONITORS
; break;
126 mon
= (cmon
+ 1 > screen_num_monitors
- 1) ? 0 : (cmon
+ 1); break;
128 mon
= (cmon
== 0) ? (screen_num_monitors
- 1) : (cmon
- 1); break;
130 g_assert_not_reached();
133 area
= screen_area(c
->desktop
, mon
, NULL
);
134 carea
= screen_area(c
->desktop
, cmon
, NULL
);
137 if (w
== G_MININT
) w
= c
->area
.width
;
140 if (h
== G_MININT
) h
= c
->area
.height
;
142 /* it might not be able to resize how they requested, so find out what
143 it will actually be resized to */
146 client_try_configure(c
, &x
, &y
, &w
, &h
, &lw
, &lh
, TRUE
);
148 /* get the frame's size */
149 w
+= c
->frame
->size
.left
+ c
->frame
->size
.right
;
150 h
+= c
->frame
->size
.top
+ c
->frame
->size
.bottom
;
153 if (o
->xcenter
) x
= (area
->width
- w
) / 2;
154 else if (x
== G_MININT
) x
= c
->frame
->area
.x
- carea
->x
;
155 else if (o
->xopposite
) x
= area
->width
- w
- x
;
159 if (o
->ycenter
) y
= (area
->height
- h
) / 2;
160 else if (y
== G_MININT
) y
= c
->frame
->area
.y
- carea
->y
;
161 else if (o
->yopposite
) y
= area
->height
- h
- y
;
164 /* get the client's size back */
165 w
-= c
->frame
->size
.left
+ c
->frame
->size
.right
;
166 h
-= c
->frame
->size
.top
+ c
->frame
->size
.bottom
;
168 frame_frame_gravity(c
->frame
, &x
, &y
); /* get the client coords */
169 client_try_configure(c
, &x
, &y
, &w
, &h
, &lw
, &lh
, TRUE
);
170 /* force it on screen if its moving to another monitor */
171 client_find_onscreen(c
, &x
, &y
, w
, h
, mon
!= cmon
);
173 actions_client_move(data
, TRUE
);
174 client_configure(c
, x
, y
, w
, h
, TRUE
, TRUE
, FALSE
);
175 actions_client_move(data
, FALSE
);
184 /* 3.4-compatibility */
185 static gpointer
setup_center_func(xmlNodePtr node
)
189 o
= g_new0(Options
, 1);
This page took 0.046806 seconds and 4 git commands to generate.