2012-07-28 04:36:20 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2017-02-14 19:43:09 -05:00
|
|
|
const UI = imports.testcommon.ui;
|
|
|
|
|
2019-02-08 22:21:36 -05:00
|
|
|
const { Clutter, St } = imports.gi;
|
2012-07-28 04:36:20 -04:00
|
|
|
|
|
|
|
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 });
|
|
|
|
scroll.add_actor(box);
|
|
|
|
|
|
|
|
let contents = new St.Widget({ width: 1000, height: 1000,
|
|
|
|
style_class: 'background-image background-repeat' });
|
|
|
|
box.add_actor(contents);
|
|
|
|
|
|
|
|
UI.main(stage);
|
|
|
|
}
|
|
|
|
test();
|