]> Dogcows Code - chaz/openbox/commitdiff
add focus actions
authorDana Jansens <danakj@orodu.net>
Wed, 19 Mar 2003 06:01:06 +0000 (06:01 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 19 Mar 2003 06:01:06 +0000 (06:01 +0000)
openbox/action.c
openbox/action.h

index b976a84d09da68e2ee50230b585049e388d759b1..dfcd8d7e0634edf8ddb500fee7d4934eece1fe3b 100644 (file)
@@ -36,6 +36,16 @@ void action_execute(union ActionData *data)
     }
 }
 
+void action_focus(union ActionData *data)
+{
+    client_focus(data->client.c);
+}
+
+void action_unfocus (union ActionData *data)
+{
+    client_unfocus(data->client.c);
+}
+
 void action_iconify(union ActionData *data)
 {
     client_iconify(data->client.c, TRUE, TRUE);
index 10fa177906ce8d5d5e467bd6124ce14c8b85db15..0f277fa84e5eae9881df81e1276393ad637eb4dc 100644 (file)
@@ -90,6 +90,10 @@ void action_free(Action *a);
 /* Execute */
 void action_execute(union ActionData *data);
 /* ClientAction */
+void action_focus(union ActionData *data);
+/* ClientAction */
+void action_unfocus(union ActionData *data);
+/* ClientAction */
 void action_iconify(union ActionData *data);
 /* ClientAction */
 void action_raise(union ActionData *data);
This page took 0.029276 seconds and 4 git commands to generate.