aboutsummaryrefslogtreecommitdiffstats
path: root/group.c
diff options
context:
space:
mode:
authorokan2008-07-11 14:21:28 +0000
committerokan2008-07-11 14:21:28 +0000
commita3e52a291110ce7b866a0d11eeda1619d25f952b (patch)
tree781c99337b95a8386d0e787a95a49bf97148621c /group.c
parentdc3045573c35f2ee31dc1c012da1ff4408b6f264 (diff)
downloadcwm-a3e52a291110ce7b866a0d11eeda1619d25f952b.tar.gz
spacing, declaration lineup to be consistent throughout cwm,
readability, and a bit of knf. ok oga@
Diffstat (limited to 'group.c')
-rw-r--r--group.c39
1 files changed, 20 insertions, 19 deletions
diff --git a/group.c b/group.c
index 1be7cd1..1950b0c 100644
--- a/group.c
+++ b/group.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: group.c,v 1.17 2008/05/21 14:11:19 oga Exp $
+ * $Id: group.c,v 1.18 2008/07/11 14:21:28 okan Exp $
*/
#include "headers.h"
@@ -58,7 +58,7 @@ _group_remove(struct client_ctx *cc)
static void
_group_hide(struct group_ctx *gc)
{
- struct client_ctx *cc;
+ struct client_ctx *cc;
screen_updatestackingorder();
@@ -76,10 +76,10 @@ _group_hide(struct group_ctx *gc)
static void
_group_show(struct group_ctx *gc)
{
- struct client_ctx *cc;
- Window *winlist;
- u_int i;
- int lastempty = -1;
+ struct client_ctx *cc;
+ Window *winlist;
+ u_int i;
+ int lastempty = -1;
winlist = (Window *) xcalloc(sizeof(*winlist), (gc->highstack + 1));
@@ -113,7 +113,7 @@ _group_show(struct group_ctx *gc)
void
group_init(void)
{
- int i;
+ int i;
TAILQ_INIT(&Groupq);
@@ -133,7 +133,9 @@ group_init(void)
void
group_sticky_toggle_enter(struct client_ctx *cc)
{
- struct group_ctx *gc = Group_active;
+ struct group_ctx *gc;
+
+ gc = Group_active;
if (gc == cc->group) {
_group_remove(cc);
@@ -162,8 +164,8 @@ group_sticky_toggle_exit(struct client_ctx *cc)
void
_group_fix_hidden_state(struct group_ctx *gc)
{
- struct client_ctx *cc;
- int same = 0;
+ struct client_ctx *cc;
+ int same = 0;
TAILQ_FOREACH(cc, &gc->clients, group_entry) {
if (gc->hidden == ((cc->flags & CLIENT_HIDDEN) ? 1 : 0))
@@ -177,7 +179,7 @@ _group_fix_hidden_state(struct group_ctx *gc)
void
group_hidetoggle(int idx)
{
- struct group_ctx *gc;
+ struct group_ctx *gc;
if (idx < 0 || idx >= CALMWM_NGROUPS)
err(1, "group_hidetoggle: index out of range (%d)", idx);
@@ -201,11 +203,10 @@ group_hidetoggle(int idx)
void
group_cycle(int reverse)
{
- struct group_ctx *gc, *showgroup = NULL;
+ struct group_ctx *gc, *showgroup = NULL;
assert(Group_active != NULL);
- gc = Group_active;
for (;;) {
gc = reverse ? TAILQ_PREV(gc, group_ctx_q, entry) :
TAILQ_NEXT(gc, entry);
@@ -246,10 +247,10 @@ group_client_delete(struct client_ctx *cc)
void
group_menu(XButtonEvent *e)
{
- struct menu_q menuq;
+ struct group_ctx *gc;
struct menu *mi;
+ struct menu_q menuq;
int i;
- struct group_ctx *gc;
TAILQ_INIT(&menuq);
@@ -295,7 +296,7 @@ cleanup:
void
group_alltoggle(void)
{
- int i;
+ int i;
for (i = 0; i < CALMWM_NGROUPS; i++) {
if (Grouphideall)
@@ -313,9 +314,9 @@ group_alltoggle(void)
void
group_autogroup(struct client_ctx *cc)
{
- struct autogroupwin *aw;
- struct group_ctx *gc;
- char group[CALMWM_MAXNAMELEN];
+ struct autogroupwin *aw;
+ struct group_ctx *gc;
+ char group[CALMWM_MAXNAMELEN];
if (cc->app_class == NULL || cc->app_name == NULL)
return;