Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | css: Pass property_id to compute function | Benjamin Otte | 2012-08-28 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | This is a reorganization of how value computing should be done. Previously the GtkCssStyleProperty.compute vfunc was supposed to take care of special cases when it needed those for computation. However, this proved to be very complicated in cases where values were nested and only the last value (of a common type) needed to be special cased. A common example for this was the fallback handling for unresolvable colors. Now, we pass the property's ID along with all compute functions so we can do the special casing where it's necessary. Note that no actual changes happen in this commit. This will happen in follow-ups. | ||||
* | css: Introduce _gtk_css_value_compute() | Benjamin Otte | 2012-08-28 | 1 | -0/+8 |
| | | | | | | | This commit is essentially a large reorganization. Instead of all value subtypes having their own compute function, there is the general _gtk_css_value_compute() function that then calls a vfunc on the subtype. | ||||
* | gtk/gtkcsseasevalue.c: Remove C99ism | Chun-wei Fan | 2012-06-23 | 1 | -2/+2 |
| | |||||
* | cssvalue: Add GtkCssEaseValue | Benjamin Otte | 2012-04-17 | 1 | -0/+370 |
This is supposed to hold the transition-easing-function and animation-easing-function values. |