aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorokan2014-09-10 20:30:38 +0000
committerokan2014-09-10 20:30:38 +0000
commit35e6d634ac0dcf08d9b4ae737ee7b053e316298a (patch)
tree65e6cc1787af74a7f7e6f500d6bd06860816c7f8 /client.c
parentbbf203a8387ca3e0b0a93c08aa89d543fc56ebc2 (diff)
downloadcwm-35e6d634ac0dcf08d9b4ae737ee7b053e316298a.tar.gz
fold in 'active' into 'flags'
Diffstat (limited to 'client.c')
-rw-r--r--client.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/client.c b/client.c
index 64c8d08..1f5c0b6 100644
--- a/client.c
+++ b/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: client.c,v 1.181 2014/09/08 21:24:27 okan Exp $
+ * $OpenBSD: client.c,v 1.182 2014/09/10 20:30:38 okan Exp $
*/
#include <sys/param.h>
@@ -195,7 +195,7 @@ client_setactive(struct client_ctx *cc)
client_msg(cc, cwmh[WM_TAKE_FOCUS], Last_Event_Time);
if ((oldcc = client_current())) {
- oldcc->active = 0;
+ oldcc->flags &= ~CLIENT_ACTIVE;
client_draw_border(oldcc);
}
@@ -204,7 +204,7 @@ client_setactive(struct client_ctx *cc)
client_mtf(cc);
curcc = cc;
- cc->active = 1;
+ cc->flags |= CLIENT_ACTIVE;
cc->flags &= ~CLIENT_URGENCY;
client_draw_border(cc);
conf_grab_mouse(cc->win);
@@ -485,7 +485,7 @@ client_hide(struct client_ctx *cc)
XUnmapWindow(X_Dpy, cc->win);
- cc->active = 0;
+ cc->flags &= ~CLIENT_ACTIVE;
cc->flags |= CLIENT_HIDDEN;
client_set_wm_state(cc, IconicState);
@@ -509,7 +509,7 @@ client_unhide(struct client_ctx *cc)
void
client_urgency(struct client_ctx *cc)
{
- if (!cc->active)
+ if (!(cc->flags & CLIENT_ACTIVE))
cc->flags |= CLIENT_URGENCY;
}
@@ -519,7 +519,7 @@ client_draw_border(struct client_ctx *cc)
struct screen_ctx *sc = cc->sc;
unsigned long pixel;
- if (cc->active)
+ if (cc->flags & CLIENT_ACTIVE)
switch (cc->flags & CLIENT_HIGHLIGHT) {
case CLIENT_GROUP:
pixel = sc->xftcolor[CWM_COLOR_BORDER_GROUP].pixel;