summaryrefslogtreecommitdiff
path: root/gtk/gtkspinner.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated GtkSpinner style propertiesMatthias Clasen2011-01-051-37/+0
|
* Fix abi check after recent mergesMatthias Clasen2010-12-051-4/+4
|
* GtkSpinner: Use style context for rendering.Carlos Garnacho2010-12-041-135/+22
| | | | | Animation is now handled by the theming layer, a looping animation has been defined in the default CSS to handle active spinners.
* gtkspinner: don't setup the timeout twice (#636129)Guillaume Desmottes2010-11-301-1/+2
|
* a11y: Use ATK macros and clean up/2 - GtkSpinnerEmmanuele Bassi2010-11-301-129/+71
| | | | | | | | | | | ATK provides macros to the same effect as G_DEFINE_TYPE; using these macros has the advantage of removing tons of duplicated code and reducing the maintainership burden. The widgets with inline accessibility implementation should switch to these macros, and clean up the code. https://bugzilla.gnome.org/show_bug.cgi?id=636060
* Move GtkSizeRequest into GtkWidgetBenjamin Otte2010-09-261-19/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | It doesn't make sense to keep them separate as GtkSizeRequest requires a GtkWidget and GtkWidget implements GtkSizeRequest, so you can never have one without the other. It also makes the code a lot easier because no casts are required when calling functions. Also, the names would translate to gtk_widget_get_width() and people agreed that this would be a too generic name, so a "preferred" was added to the names. So this patch moves the functions: gtk_size_request_get_request_mode() => gtk_widget_get_request_mode() gtk_size_request_get_width() => gtk_widget_get_preferred_width() gtk_size_request_get_height() => gtk_widget_get_preferred_height() gtk_size_request_get_size() => gtk_widget_get_preferred_size() gtk_size_request_get_width_for_height() => gtk_widget_get_preferred_width_for_height() gtk_size_request_get_height_for_width() => gtk_widget_get_preferred_height_for_width() ... and moves the corresponding vfuncs to the GtkWidgetClass. The patch also renames the implementations of the vfuncs in widgets to include the word "preferrred".
* API: Rename gtk_cairo_paint_*() to gtk_paint_*()Benjamin Otte2010-09-261-1/+1
| | | | | | Large patch, but just renaming. Indentation should still mostly be correct because I took care of keeping the indentation for this function name.
* spinner: Port to draw vfuncBenjamin Otte2010-09-261-16/+10
|
* spinner: We're a no-window widget, so setting a colormap does nothingBenjamin Otte2010-09-261-23/+0
|
* spinner: timeout should add/remove in map/unmap, not realize/unrealize.Javier Jardón2010-09-151-18/+14
| | | | Otherwise hiding the spinner won't stop it
* spinner: Don't inherit from drawing areaBenjamin Otte2010-09-141-1/+1
| | | | | A drawing area is not meant to be subclassed from. It also doesn't provide any feature a spinner would need either.
* spinner: Implement the size request interfaceBenjamin Otte2010-09-141-4/+37
| | | | Doing size requests in expose is broken.
* spinner: Move G_DEFINE_TYPE() below function definitionsBenjamin Otte2010-09-141-4/+2
| | | | Also remove redundant double definition.
* spinner: Define desired size at top of fileBenjamin Otte2010-09-141-2/+4
| | | | No magic numbers in the code please
* Remove a duplicate variableMike Gorse2010-09-081-1/+0
| | | | Bug#629110: gtk_spinner_accessible_get_type always returns null
* gtk/gtkspinner.c: use accessor functions to access GtkWidgetJavier Jardón2010-08-221-6/+10
|
* spinner: We want the default colormap, not the RGB colormapBenjamin Otte2010-07-261-1/+1
| | | | GtkSpinner doesn't use GdkRGB
* gtkspinner: Remove GET_PRIVATE macroJavier Jardón2010-07-131-3/+3
|
* Use accessor functions to access GtkAccesible variablesJavier Jardón2010-07-131-1/+1
|
* gtk/: fully remove gtkalias hacksJavier Jardón2010-07-101-4/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=623845
* Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_NO_WINDOW)Javier Jardón2010-03-061-1/+1
| | | | | | Use new API instead: gtk_widget_set_has_window () https://bugzilla.gnome.org/show_bug.cgi?id=69872
* Deprecate widget flag: GTK_WIDGET_REALIZEDJavier Jardón2010-03-031-1/+1
| | | | | | Use gtk_widget_get_realized() instead https://bugzilla.gnome.org/show_bug.cgi?id=69872
* Deprecate widget flag: GTK_WIDGET_IS_SENSITIVEJavier Jardón2010-03-011-1/+1
| | | | | | Use gtk_widget_is_sensitive() instead https://bugzilla.gnome.org/show_bug.cgi?id=69872
* Add customary args to gtk_style_paint_spinner()Matthias Clasen2009-11-271-1/+5
| | | | ...and adjust all callers.
* Improve accessibility context and description of the spinnerChristian Dywan2009-11-061-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=598758
* Use "Since: 2.x" instead "Since 2.x"Javier Jardón2009-10-301-1/+1
|
* Do not assign the parent class twiceXan Lopez2009-10-151-2/+0
| | | | | | | G_DEFINE_TYPE already does this for us, no need to do it again in class_init https://bugzilla.gnome.org/show_bug.cgi?id=598515
* Notify the "active" property of the spinner only when neededPaolo Borelli2009-10-151-56/+78
| | | | Notify spinner::active only if it really changed an other cosmetic fixes
* Fix GtkSpinner using style before it's setBastien Nocera2009-10-151-4/+45
| | | | | | | | Fix a possible division by zero when the spinner is started before it's realized (eg. before it has a style set). https://bugzilla.gnome.org/show_bug.cgi?id=598496
* Fix property links in GtkSpinnerBastien Nocera2009-10-141-2/+2
|
* Add GtkSpinner::animation-duration style propertyBastien Nocera2009-10-141-3/+22
|
* Documentation and stylistic fixupsMatthias Clasen2009-10-141-40/+57
|
* Fix "active" property not being notifiedBastien Nocera2009-10-141-1/+6
| | | | | And setting it FALSE starting the spinning when it should stop it.
* Capitalise a11y description for GtkSpinnerBastien Nocera2009-10-141-2/+2
|
* Bug 319607 – Add a throbber (activity widget) to GTK+Bastien Nocera2009-10-141-0/+525
Add GtkSpinner activity throbber, as well as a cell renderer.