all repos — openbox @ 24bb21a124a088008524184add2e152501f3c554

openbox fork - make it a bit more like ryudo

obrender/button.c (raw)

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
/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-

   button.c for the Openbox window manager
   Copyright (c) 2012        Mikael Magnusson
   Copyright (c) 2012        Dana Jansens

   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 2 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.

   See the COPYING file for a copy of the GNU General Public License.
*/

#include "render.h"
#include "instance.h"
#include "mask.h"

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <string.h>

RrButton *RrButtonNew (const RrInstance *inst)
{
    RrButton *out = NULL;

    /* no need to alloc colors and masks, set them null (for freeing later) */
    out = g_new0(RrButton, 1);
    out->inst = inst;

    /* allocate appearances */
    out->a_focused_unpressed = RrAppearanceNew(inst, 1);
    out->a_unfocused_unpressed = RrAppearanceNew(inst, 1);
    out->a_focused_pressed = RrAppearanceNew(inst, 1);
    out->a_unfocused_pressed = RrAppearanceNew(inst, 1);
    out->a_focused_disabled = RrAppearanceNew(inst, 1);
    out->a_unfocused_disabled = RrAppearanceNew(inst, 1);
    out->a_focused_hover = RrAppearanceNew(inst, 1);
    out->a_unfocused_hover = RrAppearanceNew(inst, 1);
    out->a_focused_unpressed_toggled = RrAppearanceNew(inst, 1);
    out->a_unfocused_unpressed_toggled = RrAppearanceNew(inst, 1);
    out->a_focused_pressed_toggled = RrAppearanceNew(inst, 1);
    out->a_unfocused_pressed_toggled = RrAppearanceNew(inst, 1);
    out->a_focused_hover_toggled = RrAppearanceNew(inst, 1);
    out->a_unfocused_hover_toggled = RrAppearanceNew(inst, 1);

    return out;
}

void RrButtonFree(RrButton *b)
{
    /* colors */
    RrColorFree(b->focused_unpressed_color);
    RrColorFree(b->unfocused_unpressed_color);
    RrColorFree(b->focused_pressed_color);
    RrColorFree(b->unfocused_pressed_color);
    RrColorFree(b->focused_disabled_color);
    RrColorFree(b->unfocused_disabled_color);
    RrColorFree(b->focused_hover_color);
    RrColorFree(b->unfocused_hover_color);
    RrColorFree(b->focused_hover_toggled_color);
    RrColorFree(b->unfocused_hover_toggled_color);
    RrColorFree(b->focused_pressed_toggled_color);
    RrColorFree(b->unfocused_pressed_toggled_color);
    RrColorFree(b->focused_unpressed_toggled_color);
    RrColorFree(b->unfocused_unpressed_toggled_color);

    /* masks */
    RrPixmapMaskFree(b->unpressed_mask);
    RrPixmapMaskFree(b->pressed_mask);
    RrPixmapMaskFree(b->disabled_mask);
    RrPixmapMaskFree(b->hover_mask);
    RrPixmapMaskFree(b->unpressed_toggled_mask);
    RrPixmapMaskFree(b->hover_toggled_mask);
    RrPixmapMaskFree(b->pressed_toggled_mask);

    /* appearances */
    RrAppearanceFree(b->a_focused_unpressed);
    RrAppearanceFree(b->a_unfocused_unpressed);
    RrAppearanceFree(b->a_focused_pressed);
    RrAppearanceFree(b->a_unfocused_pressed);
    RrAppearanceFree(b->a_focused_disabled);
    RrAppearanceFree(b->a_unfocused_disabled);
    RrAppearanceFree(b->a_focused_hover);
    RrAppearanceFree(b->a_unfocused_hover);
    RrAppearanceFree(b->a_focused_unpressed_toggled);
    RrAppearanceFree(b->a_unfocused_unpressed_toggled);
    RrAppearanceFree(b->a_focused_pressed_toggled);
    RrAppearanceFree(b->a_unfocused_pressed_toggled);
    RrAppearanceFree(b->a_focused_hover_toggled);
    RrAppearanceFree(b->a_unfocused_hover_toggled);
}