2009-09-19 22:56:09 -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();
|
|
|
|
|
|
|
|
let vbox = new St.BoxLayout({ vertical: true,
|
|
|
|
width: stage.width,
|
|
|
|
height: stage.height });
|
|
|
|
stage.add_actor(vbox);
|
|
|
|
|
2009-09-29 23:03:41 -04:00
|
|
|
let hbox = new St.BoxLayout({ style: 'spacing: 12px;' });
|
2009-09-19 22:56:09 -04:00
|
|
|
vbox.add(hbox);
|
|
|
|
|
|
|
|
let text = new St.Label({ text: "Styled Text" });
|
|
|
|
vbox.add (text);
|
|
|
|
|
|
|
|
let size = 24;
|
|
|
|
function update_size() {
|
|
|
|
text.style = 'font-size: ' + size + 'pt';
|
|
|
|
}
|
|
|
|
update_size();
|
|
|
|
|
2009-09-20 16:21:47 -04:00
|
|
|
let button;
|
|
|
|
|
2009-09-30 09:50:37 -04:00
|
|
|
button = new St.Button ({ label: 'Smaller', style_class: 'push-button' });
|
2009-09-19 22:56:09 -04:00
|
|
|
hbox.add (button);
|
|
|
|
button.connect('clicked', function() {
|
|
|
|
size /= 1.2;
|
|
|
|
update_size ();
|
|
|
|
});
|
|
|
|
|
2009-09-30 09:50:37 -04:00
|
|
|
button = new St.Button ({ label: 'Bigger', style_class: 'push-button' });
|
2009-09-19 22:56:09 -04:00
|
|
|
hbox.add (button);
|
|
|
|
button.connect('clicked', function() {
|
|
|
|
size *= 1.2;
|
|
|
|
update_size ();
|
|
|
|
});
|
|
|
|
|
|
|
|
stage.show();
|
|
|
|
Clutter.main();
|
|
|
|
stage.destroy();
|
|
|
|
|