summaryrefslogtreecommitdiffstats
path: root/tests/interactive/test-title.js
blob: 0a468ddd506fe44d2bc9fc1b2dde7df4b76c08b6 (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
#!/usr/bin/env gjs

imports.gi.versions.Gtk = '3.0';

const { GLib, Gtk } = imports.gi;

function nextTitle() {
    let length = Math.random() * 20;
    let str = '';

    for (let i = 0; i < length; i++) {
        // 97 == 'a'
        str += String.fromCharCode(97 + Math.random() * 26);
    }

    return str;
}

function main() {
    Gtk.init(null);

    let win = new Gtk.Window({ title: nextTitle() });
    win.connect('destroy', () => {
        Gtk.main_quit();
    });
    win.present();

    GLib.timeout_add(GLib.PRIORITY_DEFAULT, 5000, function() {
        win.title = nextTitle();
        return true;
    });

    Gtk.main();
}

main();