File: borders.js

package info (click to toggle)
cinnamon 3.2.7-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,624 kB
  • sloc: ansic: 33,269; python: 18,048; xml: 1,504; makefile: 780; sh: 90; cpp: 54
file content (135 lines) | stat: -rw-r--r-- 6,698 bytes parent folder | download | duplicates (9)
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
135
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-

const Clutter = imports.gi.Clutter;
const St = imports.gi.St;

const UI = imports.testcommon.ui;

UI.init();
let stage = Clutter.Stage.get_default();
stage.width = 640;
stage.height = 480;

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);

box.add(new St.Label({ text: "Hello World",
                       style: 'border: 1px solid black; '
                              + 'padding: 5px;' }));

box.add(new St.Label({ text: "Hello Round World",
                       style: 'border: 3px solid green; '
                              + 'border-radius: 8px; '
                              + 'padding: 5px;' }));

box.add(new St.Label({ text: "Hello Background",
                       style: 'border: 3px solid green; '
                              + 'border-radius: 8px; '
                              + 'background: white; '
                              + 'padding: 5px;' }));

box.add(new St.Label({ text: "Hello Translucent Black Border",
                       style: 'border: 3px solid rgba(0, 0, 0, 0.4); '
                              + 'background: white; ' }));

box.add(new St.Label({ text: "Hello Translucent Background",
                       style: 'background: rgba(255, 255, 255, 0.3);' }));

box.add(new St.Label({ text: "Border, Padding, Content: 20px" }));

let b1 = new St.BoxLayout({ vertical: true,
                            style: 'border: 20px solid black; '
                                   + 'background: white; '
                                   + 'padding: 20px;' });
box.add(b1);

b1.add(new St.BoxLayout({ width: 20, height: 20,
                          style: 'background: black' }));

box.add(new St.Label({ text: "Translucent big blue border, with rounding",
                       style: 'border: 20px solid rgba(0, 0, 255, 0.2); '
                              + 'border-radius: 10px; '
                              + 'background: white; '
                              + 'padding: 10px;' }));

box.add(new St.Label({ text: "Transparent border",
                       style: 'border: 20px solid transparent; '
                              + 'background: white; '
                              + 'padding: 10px;' }));

box.add(new St.Label({ text: "Border Image",
                       style_class: "border-image",
                       style: "padding: 10px;" }));

box.add(new St.Label({ text: "Border Image with Gradient",
                       style_class: 'border-image-with-background-gradient',
                       style: "padding: 10px;"
                              + 'background-gradient-direction: vertical;' }));

box.add(new St.Label({ text: "Rounded, framed, shadowed gradients" }));

let framedGradients = new St.BoxLayout({ vertical: false,
                                         style: 'padding: 10px; spacing: 12px;' });
box.add(framedGradients);

function addGradientCase(direction, borderWidth, borderRadius, extra) {
    let gradientBox = new St.BoxLayout({ style_class: 'background-gradient',
                                         style: 'border: ' + borderWidth + 'px solid #8b0000;'
                                                + 'border-radius: ' + borderRadius + 'px;'
                                                + 'background-gradient-direction: ' + direction + ';'
                                                + 'width: 32px;'
                                                + 'height: 32px;'
                                                + extra });
    framedGradients.add(gradientBox, { x_fill: false, y_fill: false } );
}

addGradientCase ('horizontal', 0, 5,  'box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);');
addGradientCase ('horizontal', 2, 5,  'box-shadow: 0px 2px 0px 0px rgba(0,255,0,0.5);');
addGradientCase ('horizontal', 5, 2,  'box-shadow: 2px 0px 0px 0px rgba(0,0,255,0.5);');
addGradientCase ('horizontal', 5, 20, 'box-shadow: 0px 0px 4px 0px rgba(255,0,0,0.5);');
addGradientCase ('vertical', 0, 5,    'box-shadow: 0px 0px 0px 4px rgba(0,0,0,0.5);');
addGradientCase ('vertical', 2, 5,    'box-shadow: 0px 0px 4px 4px rgba(0,0,0,0.5);');
addGradientCase ('vertical', 5, 2,    'box-shadow: -2px -2px 6px 0px rgba(0,0,0,0.5);');
addGradientCase ('vertical', 5, 20,   'box-shadow: -2px -2px 0px 6px rgba(0,0,0,0.5);');

box.add(new St.Label({ text: "Rounded, framed, shadowed images" }));

let framedImages = new St.BoxLayout({ vertical: false,
                                      style: 'padding: 10px; spacing: 6px;' });
box.add(framedImages);

function addBackgroundImageCase(borderWidth, borderRadius, width, height, extra) {
    let imageBox = new St.BoxLayout({ style_class: 'background-image',
                                      style: 'border: ' + borderWidth + 'px solid #8b8b8b;'
                                             + 'border-radius: ' + borderRadius + 'px;'
                                             + 'width: ' + width + 'px;'
                                             + 'height: ' + height + 'px;'
                                             + extra });
    framedImages.add(imageBox, { x_fill: false, y_fill: false } );
}

addBackgroundImageCase (0, 0, 32, 32, 'background-position: 2px 5px');
addBackgroundImageCase (0, 0, 16, 16, '-st-background-image-shadow: 1px 1px 4px 0px rgba(0,0,0,0.5); background-color: rgba(0,0,0,0)');
addBackgroundImageCase (0, 5, 32, 32, '-st-background-image-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);');
addBackgroundImageCase (2, 5, 32, 32, '-st-background-image-shadow: 0px 2px 0px 0px rgba(0,255,0,0.5);');
addBackgroundImageCase (5, 2, 32, 32, '-st-background-image-shadow: 2px 0px 0px 0px rgba(0,0,255,0.5);');
addBackgroundImageCase (5, 20, 32, 32, '-st-background-image-shadow: 0px 0px 4px 0px rgba(255,0,0,0.5);');
addBackgroundImageCase (0, 5, 48, 48, '-st-background-image-shadow: 0px 0px 0px 4px rgba(0,0,0,0.5);');
addBackgroundImageCase (5, 5, 48, 48, '-st-background-image-shadow: 0px 0px 4px 4px rgba(0,0,0,0.5);');
addBackgroundImageCase (0, 5, 64, 64, '-st-background-image-shadow: -2px -2px 6px 0px rgba(0,0,0,0.5);');
addBackgroundImageCase (5, 5, 64, 64, '-st-background-image-shadow: -2px -2px 0px 6px rgba(0,0,0,0.5);');
addBackgroundImageCase (0, 5, 32, 32, 'background-position: 2px 5px');

stage.show();
Clutter.main();
stage.destroy();