summaryrefslogtreecommitdiff
path: root/gtk/gtkstyleprovider.h
Commit message (Collapse)AuthorAgeFilesLines
* styleproperties: Move into deprecated directoryBenjamin Otte2014-10-241-1/+1
|
* Improve the GTK_STYLE_PROVIDER_PRIORITY_FALLBACK docsMatthias Clasen2014-05-131-0/+5
| | | | Explain possible gotcha with catch-all rules.
* docs: use markdown instead of <filename> tagsWilliam Jon McCann2014-02-041-1/+1
|
* docs: mark base interface as privateWilliam Jon McCann2014-01-211-0/+3
|
* Move wholly deprecated classes to gtk/deprecated/Matthias Clasen2013-07-191-1/+1
| | | | | | | | | | | | | | | | | | We've recently a number of classes wholly. For these cases, move the headers and sources to gtk/deprecated/ and adjust Makefiles and includes accordingly. Affected classes: GtkAction GtkActionGroup GtkActivatable GtkIconFactory GtkImageMenuItem GtkRadioAction GtkRecentAction GtkStock GtkToggleAction GtkUIManager
* Add annotations to gtk headersMatthias Clasen2013-05-051-0/+2
| | | | Add annotations to all exported functions in GTK+ headers.
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-3/+3
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* styleprovider: Deprecate two non-working functionsBenjamin Otte2012-11-241-0/+2
| | | | | | Both of them weren't used inside GTK. And apparently they weren't used outside of GTK either, as alex recently mentioned them being severly broken.
* Fix malformed doc commentsMatthias Clasen2012-04-121-1/+1
| | | | | Most of these are forgotten :'s and similar details which gtk-doc now warns about.
* gtk: Get gtkwidgetpath.h includes out of the public headersBenjamin Otte2012-03-191-2/+2
| | | | and include them in the C files instead.
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* Move gtkstyle and gtkrc to deprecated/Matthias Clasen2011-11-021-4/+4
| | | | | | This required a somewhat more substantial include reshuffling. Some typedefs have been moved to gtkiconfactory.h and to gtksettings.h.
* Block direct #including in style headersCarlos Garnacho2010-12-041-1/+5
|
* Parse user CSS from $XDG_CONFIG_HOME/gtk-3.0/gtk.cssCarlos Garnacho2010-12-041-1/+1
|
* Fix docs typo.Carlos Garnacho2010-12-041-1/+1
|
* GtkStyleProvider: Add GtkStateFlags parameter to get_style_property().Carlos Garnacho2010-12-041-0/+2
| | | | | Widget style properties can now have different values depending on the current state.
* Document predefined style provider prioritesMatthias Clasen2010-12-041-1/+41
| | | | | Also, rename GTK_STYLE_PROVIDER_PRIORITY_DEFAULT to _THEME and use it for themes.
* GtkStyleProvider: Pass a GParamSpec in get_style_property().Carlos Garnacho2010-12-041-2/+2
| | | | | This is so we can know the owner type of the property, and matching with the stored strings in GtkCssProvider is direct.
* s/GtkStyleSet/GtkStyleProperties/Carlos Garnacho2010-12-041-5/+5
| | | | | The former name had oddities such as gtk_style_set_set() and such, so the new name is nicer in that regard and not much longer.
* Add theming docsCarlos Garnacho2010-12-041-4/+10
| | | | | Both API and file format is documented, there's still missing a migration doc though.
* GtkSettings: implement GtkStyleProviderCarlos Garnacho2010-12-041-2/+3
|
* GtkStyleProvider: Add gtk_style_provider_get_icon_factory().Carlos Garnacho2010-12-041-0/+7
| | | | With this, style providers have a way to override default icon theme.
* GtkStyleProvider: Add method to get widget style properties.Carlos Garnacho2010-12-041-7/+9
|
* GtkStyleProvider: Add defines for most common priorities.Carlos Garnacho2010-12-041-0/+5
|
* Add GtkWidgetPath parameter to gtk_style_provider_get_style().Carlos Garnacho2010-12-041-2/+5
|
* Add GtkStyleProvider, an interface to provide style details.Carlos Garnacho2010-12-041-0/+58
The get_style() function isn't final yet, further parameters should be added to query details based on the widget hierarchy, name, etc.