summaryrefslogtreecommitdiff
path: root/gtk/gtkcssstylechange.c
Commit message (Collapse)AuthorAgeFilesLines
* cssstylechange: Add helper function to print changeTimm Bäder2016-02-071-0/+44
| | | | | So I don't have to print both styles to the console, paste them both into a file and then run diff on the 2 files anymore.
* stylechange: Do the right thing when old and new style are equalBenjamin Otte2016-01-161-0/+4
| | | | | We don't need to compare all their CSS values to figure out that nothing changed. We know that.
* widget: Pass a GtkCssStyleChange instead of a bitmaskBenjamin Otte2015-12-131-3/+14
|
* cssnode: Change style-changed signalBenjamin Otte2015-12-121-0/+97
Instead of having old and new style, now have a GtkCssStyleChange opaque object that will compute the changes you are interested in for you. This simplifies change signal handlers quite a bit and avoids lots of repeated computation in every signal handler.