.gitlab
.gitlab-ci
.settings
data
docs
js
lint
man
meson
po
src
subprojects
tests
interactive
background-repeat.js
background-size.js
border-radius.js
border-width.js
borders.js
box-layout.js
box-shadow-animated.js
box-shadows.js
calendar.js
css-fonts.js
entry.js
gapplication.js
icons.js
inline-style.js
scroll-view-sizing.js
scrolling.js
test-title.js
transitions.js
testcommon
unit
meson.build
run-test.sh.in
tools
.eslintrc.yml
.gitignore
.gitlab-ci.yml
.gitmodules
.jscheckignore
COPYING
HACKING.md
NEWS
README.md
config.h.meson
gnome-shell.doap
meson.build
meson_options.txt

This is *much* nicer than repetitive "imports.gi" lines ... https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/399
29 lines
815 B
JavaScript
29 lines
815 B
JavaScript
// -*- 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: 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();
|