gnome-shell:shell-toolkit

Last commit made on 2009-09-30
Get this branch:
git clone -b shell-toolkit https://git.launchpad.net/gnome-shell

Branch merges

Branch information

Name:
shell-toolkit
Repository:
lp:gnome-shell

Recent commits

83f37da... by Owen Taylor

[StBoxLayout] initialize variable

Fix a missing initialization of 'i' when iterating over children.

https://bugzilla.gnome.org/show_bug.cgi?id=595995
http://bugzilla.moblin.org/show_bug.cgi?id=6311

c2706ad... by Owen Taylor

StButton: Fix property enumeration names

Property enumeration names should correspond exactly to the property names;
in particular the ACTIVE vs :checked disparity was confusing reading the
code.

http://bugzilla.moblin.org/show_bug.cgi?id=6504

0a187b7... by Owen Taylor

testcommon.css: Don't theme all buttons

StButton is used for many things - scrollbar steppers, etc. Theming
all buttons to look like push-buttons breaks that. So in testcommon.css
just theme a .push-button class to look vaguely button-like.

https://bugzilla.gnome.org/show_bug.cgi?id=596432

3abe92d... by Owen Taylor

Port StTable to StThemeNode

Convert the StTable code from StStylable to StThemeNode. The
:row-spacing and :col-spacing GObject properties are converted
into spacing-rows and spacing-columns style properties.

A new interactive test is added for StTable.

https://bugzilla.gnome.org/show_bug.cgi?id=596811

45b4d03... by Owen Taylor

Handle adding children to StTable from Javascript

Remove the StTable specific methods to add actors:

 st_table_add_actor()
 st_table_add_actor_with_properties()

Since they shadow the generic ClutterContainer add_actor() method,
and patch in our add() convenience function as we do for
StBoxLayout.

https://bugzilla.gnome.org/show_bug.cgi?id=596811

083eed1... by Owen Taylor

Import MxTable as StTable

Import table code from Mx library

https://bugzilla.gnome.org/show_bug.cgi?id=596811

1283f0b... by Owen Taylor

Turn StBoxLayout:spacing into a style property

Remove the StBoxLayout:spacing GObject property, and instead make
BoxLayout look up the spacing from the CSS style. This makes it
consistent with padding and will allow the use of units. (The
removal of the GObject property entirely instead of making it an
override is consistent with how we handle color, font, padding, etc.)

https://bugzilla.gnome.org/show_bug.cgi?id=596803

3bbdc1e... by Owen Taylor

lookingGlass: Get font from GConf

Instead of using "Monospace", pick the users configured monospace font
name up from GConf. (This is a nice touch, but is more done here to
demonstrate that we can do it rather than for any great utility.)

https://bugzilla.gnome.org/show_bug.cgi?id=591245

25f1246... by Owen Taylor

Port LookingGlass console to ST widgets

* Style aspects like colors and fonts are moved into gnome-shell.css.
* Scrolling is adding using StScrollView.

Based on a patch from Colin Walters
https://bugzilla.gnome.org/show_bug.cgi?id=591245

a37c866... by Owen Taylor

Add clutter-text properties to StEntry and StLabel

Add clutter-text properties to allow getting access to the underlying
ClutterText actor. This corresponds to the get_clutter_text() methods.

The PROP_LABEL and PROP_ENTRY enum values are renamed to PROP_TEXT to
match the names of the properties that they correspond to, and the
properties of StEntry are reordered into alphabetical order.

Based on a patch from Colin Walters
https://bugzilla.gnome.org/show_bug.cgi?id=591245
http://bugzilla.moblin.org/show_bug.cgi?id=6313