summaryrefslogtreecommitdiffstats
path: root/tests/interactive/calendar.js
blob: d1d435a528b8847bb21f73f74a743d06ffdb8eb7 (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
// -*- 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: 400, height: 400 });
    UI.init(stage);

    let vbox = new St.BoxLayout({ vertical: true,
                                  width: stage.width,
                                  height: stage.height,
                                  style: 'padding: 10px; spacing: 10px; font: 15px sans-serif;' });
    stage.add_actor(vbox);

    // Calendar can only be imported after Environment.init()
    const Calendar = imports.ui.calendar;
    let calendar = new Calendar.Calendar();
    vbox.add(calendar,
             { expand: true,
               x_fill: false, x_align: St.Align.MIDDLE,
               y_fill: false, y_align: St.Align.START });
    calendar.setEventSource(new Calendar.EmptyEventSource());

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