File: inline-style.js

package info (click to toggle)
gnome-shell 43.9-0%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,540 kB
  • sloc: ansic: 59,716; javascript: 57,588; xml: 1,632; python: 437; sh: 410; makefile: 29; perl: 13
file content (46 lines) | stat: -rw-r--r-- 1,120 bytes parent folder | download | duplicates (2)
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
// -*- 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();
    UI.init(stage);

    let vbox = new St.BoxLayout({ vertical: true,
                                  width: stage.width,
                                  height: stage.height });
    stage.add_actor(vbox);

    let hbox = new St.BoxLayout({ style: 'spacing: 12px;' });
    vbox.add(hbox);

    let text = new St.Label({ text: "Styled Text" });
    vbox.add (text);

    let size = 24;
    function update_size() {
        text.style = 'font-size: ' + size + 'pt';
    }
    update_size();

    let button;

    button = new St.Button ({ label: 'Smaller', style_class: 'push-button' });
    hbox.add (button);
    button.connect('clicked', () => {
        size /= 1.2;
        update_size ();
    });

    button = new St.Button ({ label: 'Bigger', style_class: 'push-button' });
    hbox.add (button);
    button.connect('clicked', () => {
        size *= 1.2;
        update_size ();
    });

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