summaryrefslogtreecommitdiff
path: root/src/tabs.c
blob: 5e2d212a2e668d23760eb97ca23ba739268a6e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
 * Copyright (c) 2010-2012 Stefan Bolte <portix@gmx.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "dwb.h"
#include "tabs.h"

#define TAB_VISIBLE(gl) (VIEW((gl))->status->group & dwb.state.current_groups)

static gint 
count_visible() {
  int n=0;
  for (GList *gl = dwb.state.views; gl; gl=gl->next) {
    if (TAB_VISIBLE(gl))
      n++;
  }
  return n;
}
GList *
tab_next(GList *gl, gint steps, gboolean skip)
{
    g_return_val_if_fail(gl != NULL, dwb.state.fview);

    GList *n, *last = gl;
    gint l, i;

    if (!dwb.state.views->next)
        return gl;

    l = count_visible(dwb.state.views);
    steps %= l;

    for (i=0, n=gl->next; i<steps && n; n=n->prev)
    {
        if (n == gl)
            return gl;
        if (n == NULL) 
        {
            if (skip)
                n = dwb.state.views;
            else 
                return last;
        }
        if (TAB_VISIBLE(n)) {
            i++;
            last = n;
        }
    }
    return n;
}
GList *
tab_prev(GList *gl, gint steps, gboolean skip)
{
    g_return_val_if_fail(gl != NULL, dwb.state.fview);

    GList *p, *last = gl;
    gint l, i;

    if (!dwb.state.views->next)
        return gl;

    l = count_visible(dwb.state.views);
    steps %= l;

    for (i=0, p=gl->prev; i<steps && p; p=p->prev)
    {
        if (p == gl)
            return gl;
        if (p == NULL) 
        {
            if (skip) 
                p = g_list_last(dwb.state.views);
            else 
                return last;
        }
        if (TAB_VISIBLE(p)) 
        {
            i++;
            last = p;
        }
    }

    return p;
}
int 
tab_position(GList *gl)
{
    int n=0;

    if (dwb.state.current_groups == 0)
        return g_list_position(dwb.state.views, gl);

    for (GList *l = dwb.state.views; l; l=l->next) 
    {
        if (TAB_VISIBLE(l)) 
        {
            if (l == gl)
                return n;
            n++;
        }
    }
    return -1;
}
void 
tab_update(GList *gl)
{
    if (TAB_VISIBLE(gl))
        tab_show(gl);
    else 
        tab_hide(gl);
}
void 
tab_show(GList *gl)
{

}
void 
tab_hide(GList *gl)
{
}