summaryrefslogtreecommitdiff
path: root/gtk/gtkswitch.h
Commit message (Collapse)AuthorAgeFilesLines
* Add missing docsMatthias Clasen2014-11-301-0/+1
| | | | Document GtkSwitch::state_set.
* switch: Add a delayed state capabilityMatthias Clasen2014-04-061-1/+7
| | | | | | | | This commit makes it possible for GtkSwitch to indicate when the underlying state changes with a delay, causing the switch to temporarily go 'out of sync' with the underlying change. https://bugzilla.gnome.org/show_bug.cgi?id=725648
* docs: use #*-struct instead of <structname>William Jon McCann2014-01-271-1/+1
|
* docs: add Gtk*Class docsWilliam Jon McCann2014-01-201-4/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=81006
* Add annotations to gtk headersMatthias Clasen2013-05-051-0/+4
| | | | 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
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* GtkSwitch: use regular activationMatthias Clasen2011-02-251-1/+2
| | | | | | | GtkSwitch was listening for Space/Enter keyreleases itself, instead of providing an 'activate' action signal, like e.g GtkButton. As a side-effect, this fixes https://bugzilla.gnome.org/show_bug.cgi?id=643321
* switch: Fix the attribution lineEmmanuele Bassi2010-11-301-2/+1
| | | | | | | | | | | | Thomas Wood pointed out that the original MxGtkLightSwitch widget upon which I based the behaviour of GtkSwitch was not written by him; the original authors are: Joshua Lock Robert Staudinger Jussi Kukkonen My apologies to all of them.
* Add GtkSwitch, a "light-switch" like widgetEmmanuele Bassi2010-11-291-0/+95
The GtkSwitch widget is a simple UI control that has two states: on and off. Toggling between the states is possible by clicking the widget or by dragging the handle. https://bugzilla.gnome.org/show_bug.cgi?id=634987