summaryrefslogtreecommitdiff
path: root/gtk/gtkspinbutton.c
Commit message (Collapse)AuthorAgeFilesLines
...
* gesture: Simplify gesture/widget interaction public APICarlos Garnacho2014-05-231-12/+4
| | | | | | | | | | | The propagation phase property/methods in GtkEventController are gone, This is now set directly on the GtkWidget add/remove controller API, which has been made private. The only public bit now are the new functions gtk_gesture_attach() and gtk_gesture_detach() that will use the private API underneath. All callers have been updated.
* GtkSpinButton: Don't leak the gesturesMatthias Clasen2014-05-231-0/+8
|
* spinbutton: increase/decrease value on upwards/downwards touch swipesCarlos Garnacho2014-05-231-2/+93
| | | | | This is somewhat analogous to scroll events on pointer devices, the greater the velocity, the faster the spinbutton spins.
* spinbutton: remove unused codeCosimo Cecchi2014-05-091-8/+0
|
* spinbutton: remove unused codeCosimo Cecchi2014-05-091-2/+0
|
* docs: use Returns: consistentlyWilliam Jon McCann2014-02-191-8/+8
| | | | Instead of Return value:
* Docs: use // for comments in examplesMatthias Clasen2014-02-141-10/+7
| | | | | Without sgml mode, we can't escape /* as /* anymore, so just switch to // for comments in examples.
* docs: use proper apostropheWilliam Jon McCann2014-02-071-5/+5
| | | | https://wiki.gnome.org/Design/OS/Typography
* docs: replace all <examples> with markdown headingsWilliam Jon McCann2014-02-041-6/+4
|
* docs: Identify examples that are C codeWilliam Jon McCann2014-01-291-3/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=723119
* docs: use |[ ]| instead of <programlisting></programlisting>William Jon McCann2014-01-291-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=723119
* all: Add names to timeoutsBastien Nocera2013-10-231-0/+2
| | | | | | | Add names to every timeout we setup, so it's easier to track their usage, and debug possible misbehaviour. https://bugzilla.gnome.org/show_bug.cgi?id=710651
* Drop some unnecessary includesMatthias Clasen2013-07-191-1/+0
| | | | | Drop includes of deprecated headers where they are no longer needed.
* 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
* Deprecate and ignore the timeout-initial and timeout-repeat settingsWilliam Jon McCann2013-07-111-13/+4
|
* gtk: Use new macros for defining private dataEmmanuele Bassi2013-07-091-5/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=702996
* spinbutton: set the window on the icon helperAlexander Larsson2013-07-031-0/+1
|
* GtkSpinButton: don't constantly recreate style contexts for buttonsOwen W. Taylor2013-04-231-10/+48
| | | | | | | | | Cache the style contexts for the up and down panels, instead of recreating them each time they are drawn or size requested. GtkSpinButtons were many times slower to draw than other widgets because of the constant style matching. https://bugzilla.gnome.org/show_bug.cgi?id=698682
* GtkSpinButton: Support baseline alignmentAlexander Larsson2013-04-231-4/+30
|
* Fix the buildMatthias Clasen2013-03-081-1/+1
| | | | This was broken in commit 5bbbc47a4c306653e8347f7afb85a940a503f755
* spinbutton: don't override initial text in non-numeric-only spin buttonsAleksander Morgado2013-03-081-1/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=695312
* docs: correct various spelling and grammar errorsWill Thompson2013-03-041-1/+1
| | | | | I noticed a few cases of "wether", and while fixing them noticed a few "its" which should be "it's". It all went downhill from there.
* Add gtk_widget_(un)register_windowAlexander Larsson2013-02-071-4/+4
| | | | | | | | | | | | This replaces the previously hardcoded calls to gdk_window_set_user_data, and also lets us track which windows are a part of a widget. Old code should continue working as is, but new features that require the windows may not work perfectly. We need this for the transparent widget support to work, as we need to specially mark the windows of child widgets. https://bugzilla.gnome.org/show_bug.cgi?id=687842
* spinbutton: fix style context path for internal buttonsCosimo Cecchi2012-09-191-8/+2
| | | | | | | We were adding one child too much to the style context path when generating it for the internal buttons, which in turn caused sibling selectors from the theme such as :first-child to apply to both buttons under certain circumstances. Spotted by Lapo Calamandrei.
* entry: fix requisition width/height to use the current pango layoutCosimo Cecchi2012-09-031-46/+35
| | | | | | | This way, we can ensure that width/height changes due to the use of gtk_entry_set_attributes() are correctly reflected in the size request. https://bugzilla.gnome.org/show_bug.cgi?id=683168
* Make spinbutton orientablePaolo Borelli2012-09-031-53/+210
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=683168
* spinbutton: fix a typoCosimo Cecchi2012-06-121-2/+2
| | | | GTK_STATE_* -> GTK_STATE_FLAG_*
* spinbutton: port to GtkIconHelperCosimo Cecchi2012-04-261-52/+21
| | | | | | | | Instead of doing our own lookup for symbolic icons and rendering the pixbuf, use GtkIconHelper as other widgets do, which saves a bunch of code. https://bugzilla.gnome.org/show_bug.cgi?id=674807
* widget: Don't cache widget paths all the timeBenjamin Otte2012-04-171-1/+2
| | | | | | Add an internal API that allows GtkStyleContext to create a widget path for the widget and with that bypassing gtk_widget_get_path() and that function caching the path.
* gtk: Get gtkwidgetpath.h includes out of the public headersBenjamin Otte2012-03-191-2/+3
| | | | and include them in the C files instead.
* types: Move GtkAdustment declaration to gtktypes.hBenjamin Otte2012-03-031-1/+3
| | | | | ... and make all the headers to not include gtkadjustment.h anymore. Of course, also include it in the source files instead.
* spinbutton: Set GDK_SCROLL_MASK explicitlyCarlos Garnacho2012-03-011-0/+2
| | | | | selecting for button press/release doesn't suffice anymore to get scroll events.
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* gtkspinbutton: Fix compilation warningJavier Jardón2012-01-311-1/+0
|
* entry: don't consider inner-border for allocation and layoutCosimo Cecchi2012-01-311-3/+1
| | | | | We want to deprecate the inner-border property and use the standard CSS border/padding properties. Start with replacing its uses in GtkEntry.
* entry: change _gtk_entry_get_borders() to return a GtkBorderCosimo Cecchi2012-01-311-3/+3
|
* gtkspinbutton: Use symbolic names for button numbersCarlos Garcia Campos2012-01-271-3/+3
|
* Fall back to the builtin icons for spinbutton +/-Matthias Clasen2012-01-091-1/+2
| | | | | We do have list-add/-remove icons in the builtin icon theme, so why not use them ?
* spinbutton: Pass the right sizeBenjamin Otte2012-01-091-1/+1
| | | | | We need a better diffrentiation between icon sizes - ie GtkIconSize vs pixel size. Or more CSS.
* spinbutton: Use the widget state flags as a base for drawingRui Matos2012-01-091-11/+13
|
* gtkspinbutton: Don't hilight buttons when !editableZeeshan Ali (Khattak)2012-01-061-1/+2
| | | | | | | Don't hilight the buttons on mouse over when 'editable' property is set to 'FALSE. https://bugzilla.gnome.org/show_bug.cgi?id=667229
* gtkspinbutton: Ignore keynav when !editableZeeshan Ali (Khattak)2012-01-061-5/+6
| | | | | | | Don't allow changing of value through keyboard when 'editable' property is set to 'FALSE. https://bugzilla.gnome.org/show_bug.cgi?id=667229
* gtkspinbutton: Respect value of inherited 'editable' propertyZeeshan Ali (Khattak)2012-01-041-7/+9
| | | | | | | When this property is set to 'FALSE', user's click on the buttons should not actually update the value but rather result in error bell. https://bugzilla.gnome.org/show_bug.cgi?id=667229
* gtk/gtkspinbutton.c: Remove lingering ';'Chun-wei Fan2011-12-301-1/+1
| | | | ...so that C89 compilers will not complain
* spinbutton: redesign to use an horizontal layoutCosimo Cecchi2011-11-281-403/+405
| | | | | | | | | | | Rewrite GtkSpinButton to use a touchscreen friendly horizontal layout. Other features include: - support for theming buttons with nth-child - full support for RTL - use + and - symbolic icons instead of arrows - general streamlining and cleanup of a lot of related code https://bugzilla.gnome.org/show_bug.cgi?id=663359
* Set top/bottom style classes on spinbutton buttonsAlexander Larsson2011-11-171-0/+4
|
* GtkSpinButton: Clarify clamping behavior in gtk_spin_button_set_range docStef Walter2011-11-151-0/+3
| | | | | | | * If the current value is outside the range, it will be adjusted to fit within the range, otherwise it will remain unchanged. https://bugzilla.gnome.org/show_bug.cgi?id=664021
* gtk: move _gtk_modules_has_mixed_deps() to gtkmodlesprivate.hMichael Natterer2011-10-231-1/+0
| | | | and remove gtkmainprivate.h completely.
* Fix entry drawing in the presence of marginsMatthias Clasen2011-08-091-11/+23
| | | | | Margins need to be taken into account when comparing requisitions and allocations, which GtkEntry (and subclasses) do for some reason.
* First cut at GailEntry -> GtkEntryAccessibleMatthias Clasen2011-07-051-0/+4
| | | | | | Replace the factory for entry and spin button with gtk_widget_class_set_accessible_type() calls, and move then to the GtkAccessible namespace.