summaryrefslogtreecommitdiffstats
path: root/tests/interactive/box-shadows.js
blob: c9c677c97f629a2f5f746099bc83d6af3017cd61 (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
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-

const UI = imports.testcommon.ui;

const { Clutter, St } = imports.gi;

function test() {
    let stage = new Clutter.Stage({ width: 640, height: 480 });
    UI.init(stage);

    let vbox = new St.BoxLayout({ width: stage.width,
                                  height: stage.height,
                                  style: 'background: #ffee88;' });
    stage.add_actor(vbox);

    let scroll = new St.ScrollView();
    vbox.add(scroll, { expand: true });

    let box = new St.BoxLayout({ vertical: true,
                                 style: 'padding: 10px;'
                                 + 'spacing: 20px;' });
    scroll.add_actor(box);


    function addTestCase(inset, offsetX, offsetY, blur, spread) {
        let shadowStyle = 'box-shadow: ' + (inset ? 'inset ' : '') +
            offsetX + 'px ' + offsetY + 'px ' + blur + 'px ' +
            (spread > 0 ? (' ' + spread + 'px ') : '') +
            'rgba(0,0,0,0.5);';
        let label = new St.Label({ style: 'border: 4px solid black;' +
                                   'border-radius: 5px;' +
                                   'background-color: white; ' +
                                   'padding: 5px;' +
                                   shadowStyle,
                                   text: shadowStyle });
        box.add(label, { x_fill: false, y_fill: false } );
    }

    addTestCase (false, 3, 4, 0, 0);
    addTestCase (false, 3, 4, 0, 4);
    addTestCase (false, 3, 4, 4, 0);
    addTestCase (false, 3, 4, 4, 4);
    addTestCase (false, -3, -4, 4, 0);
    addTestCase (false, 0, 0, 0, 4);
    addTestCase (false, 0, 0, 4, 0);
    addTestCase (true, 3, 4, 0, 0);
    addTestCase (true, 3, 4, 0, 4);
    addTestCase (true, 3, 4, 4, 0);
    addTestCase (true, 3, 4, 4, 4);
    addTestCase (true, -3, -4, 4, 0);
    addTestCase (true, 0, 0, 0, 4);
    addTestCase (true, 0, 0, 4, 0);

    UI.main(stage);
}
test();