2010-09-30 21:58:59 -04:00
|
|
|
/* -*- mode: js2; js2-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
|
|
|
|
const Clutter = imports.gi.Clutter;
|
|
|
|
const St = imports.gi.St;
|
|
|
|
|
|
|
|
const UI = imports.testcommon.ui;
|
|
|
|
|
|
|
|
UI.init();
|
|
|
|
let stage = Clutter.Stage.get_default();
|
|
|
|
stage.width = 640;
|
|
|
|
stage.height = 480;
|
|
|
|
|
2010-12-09 07:20:09 -05:00
|
|
|
let vbox = new St.BoxLayout({ width: stage.width,
|
2010-09-30 21:58:59 -04:00
|
|
|
height: stage.height,
|
2010-12-09 07:20:09 -05:00
|
|
|
style: 'background: #ffee88;' });
|
|
|
|
stage.add_actor(vbox);
|
|
|
|
|
2010-09-30 21:58:59 -04:00
|
|
|
let scroll = new St.ScrollView();
|
2010-12-09 07:20:09 -05:00
|
|
|
vbox.add(scroll, { expand: true });
|
|
|
|
|
|
|
|
let box = new St.BoxLayout({ vertical: true,
|
|
|
|
style: 'padding: 10px;'
|
|
|
|
+ 'spacing: 20px;' });
|
|
|
|
scroll.add_actor(box);
|
2010-09-30 21:58:59 -04:00
|
|
|
|
|
|
|
function addTestCase(radii, useGradient) {
|
|
|
|
let background;
|
|
|
|
if (useGradient)
|
|
|
|
background = 'background-gradient-direction: vertical;'
|
|
|
|
+ 'background-gradient-start: white;'
|
|
|
|
+ 'background-gradient-end: gray;';
|
|
|
|
else
|
|
|
|
background = 'background: white;';
|
|
|
|
|
2010-12-09 07:20:09 -05:00
|
|
|
box.add(new St.Label({ text: "border-radius: " + radii + ";",
|
|
|
|
style: 'border: 1px solid black; '
|
|
|
|
+ 'border-radius: ' + radii + ';'
|
|
|
|
+ 'padding: 5px;' + background }),
|
|
|
|
{ x_fill: false });
|
2010-09-30 21:58:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// uniform backgrounds
|
|
|
|
addTestCase(" 0px 5px 10px 15px", false);
|
|
|
|
addTestCase(" 5px 10px 15px 0px", false);
|
|
|
|
addTestCase("10px 15px 0px 5px", false);
|
|
|
|
addTestCase("15px 0px 5px 10px", false);
|
|
|
|
|
|
|
|
// gradient backgrounds
|
|
|
|
addTestCase(" 0px 5px 10px 15px", true);
|
|
|
|
addTestCase(" 5px 10px 15px 0px", true);
|
|
|
|
addTestCase("10px 15px 0px 5px", true);
|
|
|
|
addTestCase("15px 0px 5px 10px", true);
|
|
|
|
|
|
|
|
stage.show();
|
|
|
|
Clutter.main();
|
|
|
|
stage.destroy();
|