Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Revert c00b85bf3f9cb1dc77dd22f138eb53048eb355b7 | Matthias Clasen | 2010-11-29 | 1 | -3/+3 |
| | | | | | | | This needs more work, currently we do dupe targets when copying target entries in various places, and consequently free them later. To do this correctly, the strings need to be interned or something like that. | ||||
* | Re-add some conditionals to symbols files | Matthias Clasen | 2010-11-29 | 2 | -2/+8 |
| | | | | We need to keep the ifdefs for platform abi differences. | ||||
* | remove some duplicate symbols | Matthias Clasen | 2010-11-29 | 1 | -3/+0 |
| | |||||
* | Small doc fixup | Matthias Clasen | 2010-11-29 | 1 | -0/+1 |
| | |||||
* | switch: Use ATK macros to reduce the amount of code | Emmanuele Bassi | 2010-11-29 | 1 | -46/+14 |
| | | | | | | And the insanity. Reviewed-by: Christian Persch <chpe@gnome.org> | ||||
* | switch: Use the right value for comparison | Emmanuele Bassi | 2010-11-29 | 1 | -1/+1 |
| | |||||
* | switch: Add accessibility implementation | Emmanuele Bassi | 2010-11-29 | 1 | -3/+163 |
| | | | | | | Modelled on GailToggleButton. https://bugzilla.gnome.org/show_bug.cgi?id=634987 | ||||
* | Add GtkSwitch, a "light-switch" like widget | Emmanuele Bassi | 2010-11-29 | 5 | -0/+966 |
| | | | | | | | | 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 | ||||
* | rgba: Invert the arguments and improve bindability | Emmanuele Bassi | 2010-11-28 | 3 | -4/+4 |
| | | | | | | | | Since parse() is a method of the Gdk.RGBA class, the GdkRGBA pointer should be the first argument, and the string the second one, to allow a more natural binding. https://bugzilla.gnome.org/show_bug.cgi?id=635879 | ||||
* | Fix recursion in the GtkIconView accessible initialization | Matthias Clasen | 2010-11-27 | 1 | -26/+19 |
| | | | | Fixes https://bugzilla.gnome.org/show_bug.cgi?id=634474 | ||||
* | Changing GtkBox:fill child property default back to TRUE. | Tristan Van Berkom | 2010-11-25 | 1 | -6/+2 |
| | | | | | | | | | Since Havoc's patches introducing the GtkWidget halign/valign properties, fill should always be TRUE. If the widget should not fill its allocated space then it should set the halign or valign properties for that purpose. This also consequently fixes bug 634592. | ||||
* | Fixed GtkMenuShell to deactivate itself at dispose time | Tristan Van Berkom | 2010-11-25 | 2 | -2/+17 |
| | | | | | | Since GdkDevice stuff, it seems that destroying an active menu doesnt get rid of all the device grabery, this fixes bug 635693. | ||||
* | Bug 565665 - GtkTargetEntry member target should be const char * | Michael Natterer | 2010-11-24 | 1 | -4/+5 |
| | |||||
* | gtk: Remove GtkRuler | Benjamin Otte | 2010-11-24 | 12 | -1404/+0 |
| | | | | | | | | | | It is really bad code, mostly unused and no one stepped up to fix it. Note that Gtk developers do not object to a ruler widget in priciple, just to the current implementation. If someone wants to propose a sane version, please don't hesitate. https://bugzilla.gnome.org/show_bug.cgi?id=613942 | ||||
* | gtk: Remove unused variables from build scripts | Benjamin Otte | 2010-11-24 | 3 | -3/+3 |
| | | | | ALL_FILES and INCLUDE_VARIABLES are unused | ||||
* | gtk: Uncruftify gtk.symbols | Benjamin Otte | 2010-11-24 | 1 | -2144/+1031 |
| | |||||
* | No fsync on Windows | Tor Lillqvist | 2010-11-24 | 1 | -0/+2 |
| | |||||
* | Move all GdkDevice members to private and add one missing accessor | Michael Natterer | 2010-11-23 | 13 | -14/+14 |
| | |||||
* | iconcache: Ensure we don't lose data on power loss | Colin Walters | 2010-11-22 | 1 | -7/+35 |
| | | | | | | | fsync() should ensure our data hits disk; since corrupt icon caches break all apps, we need to ensure it's valid. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=635307 | ||||
* | [gi] add array annotations for DnD related methods | John (J5) Palmieri | 2010-11-19 | 2 | -3/+3 |
| | |||||
* | gtk: remove GtkWidget::size-request | Michael Natterer | 2010-11-19 | 3 | -74/+3 |
| | | | | Fixes Bug 633324 - Stop invoking size-request completely | ||||
* | GtkRadioButtons: Mark group arguments as "allow-none" | Martin Pitt | 2010-11-19 | 1 | -6/+7 |
| | | | | | | | | | | | | | | | In the current introspection data, the various gtk_radio_button_new_* constructors take an existing group or widget. These all allow passing a NULL widget or group list, so that it becomes easy to build a radio button list in a loop (pass in None the first time, and the previously created button in all other iterations). Add the missing "allow-none" tag to the introspection data, so that this will also eventually work for GIR users. NB that it does not actually work for some constructors yet (like new_with_label_from_widget()) due to https://bugzilla.gnome.org/show_bug.cgi?id=561264. https://bugzilla.gnome.org/show_bug.cgi?id=635253 | ||||
* | gtk: draw the frame around the spinbutton's buttons conditionally | Michael Natterer | 2010-11-19 | 1 | -6/+7 |
| | | | | (depending on GtkEntry::has-frame) | ||||
* | gtkcombobox: Use accessor functions to access GtkTreeViewColumn | Javier Jardón | 2010-11-19 | 2 | -8/+8 |
| | |||||
* | gtktreeview: Use accessor functions to access GtkTreeViewColumn | Javier Jardón | 2010-11-19 | 1 | -115/+153 |
| | |||||
* | gtkentry: move public members to private structure | Javier Jardón | 2010-11-19 | 2 | -646/+757 |
| | |||||
* | Add _gtk_entry_get_im_context() internal accessor | Javier Jardón | 2010-11-19 | 3 | -1/+10 |
| | | | | It's needed by gtktreeview | ||||
* | gtkcombobox: Do not access GtkEntry internals | Javier Jardón | 2010-11-19 | 1 | -5/+0 |
| | | | | It's not needed anymore | ||||
* | Create a private header to access some GtkButton variables | Javier Jardón | 2010-11-19 | 6 | -54/+88 |
| | |||||
* | gtktbutton: Move public members to private structure | Javier Jardón | 2010-11-19 | 2 | -196/+237 |
| | |||||
* | gtkplug: Do not leak in gtk_plug_realize() | Javier Jardón | 2010-11-18 | 1 | -1/+1 |
| | | | | | | | Indeed, we should check for window->wmclass_name Reported by Guillaume Desmottes in bug https://bugzilla.gnome.org/show_bug.cgi?id=635175 | ||||
* | Fixing GtkScrolledWindow inconsistent scrollbar visibility. | Tristan Van Berkom | 2010-11-19 | 1 | -13/+26 |
| | | | | | Also removing the hack to prevent hangs which is properly fixed by the preceeding commit. | ||||
* | Fixing hangs with GtkScrolledWindow | Tristan Van Berkom | 2010-11-19 | 1 | -0/+10 |
| | | | | | | | | Now gtk_widget_size_allocate() unsets the resize_needed flags before returning, essentially this means that any widget that has a queued resize and is allocated before resize time, including queued resizes from inside a size_allocate() method will be cancelled. | ||||
* | gtk: honor entry->has_frame again draw the frame conditionally | Michael Natterer | 2010-11-18 | 1 | -4/+4 |
| | | | | | | when GtkEntry had visible windows, it was never noticed that we always draw the frame, because the text_area window would cover it if draw_frame was FALSE. | ||||
* | gtk: draw the progress only on the text area | Michael Natterer | 2010-11-18 | 1 | -43/+21 |
| | | | | so it doesn't extend under GtkSpinButton's buttons. | ||||
* | docs: Move Height-for-width geometry management virtual methods docs | Javier Jardón | 2010-11-17 | 2 | -62/+42 |
| | |||||
* | bgo#634558 - filechooser - Actually focus the Search entry when selecting ↵ | Federico Mena Quintero | 2010-11-16 | 2 | -14/+50 |
| | | | | | | the Search shortcut Signed-off-by: Federico Mena Quintero <federico@novell.com> | ||||
* | [gi] add "array" annotations to GtkAboutDialog methods | John (J5) Palmieri | 2010-11-16 | 1 | -3/+3 |
| | | | | | * set_authors, set_documenters and set_artists required the array annotation to work properly | ||||
* | gtkmain: Remove deprecated gtk_init_add() function | Javier Jardón | 2010-11-16 | 3 | -40/+0 |
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=629955 | ||||
* | Deprecate GtkCallbackMarshal and GtkFunction | Javier Jardón | 2010-11-16 | 1 | -8/+13 |
| | | | | | | As they're only used by already deprecated API https://bugzilla.gnome.org/show_bug.cgi?id=629955 | ||||
* | GtkArg is deprecated since 2.2 | Javier Jardón | 2010-11-16 | 1 | -1/+3 |
| | |||||
* | docs: Add cross-reference in GtkAlign docs | Javier Jardón | 2010-11-16 | 1 | -2/+2 |
| | |||||
* | docs: Fix a typo in gtk_button_set_alignment() docs | Javier Jardón | 2010-11-16 | 1 | -1/+1 |
| | |||||
* | [gi] add "out" annotations to gtk_tree_store_sort_column_id params | John (J5) Palmieri | 2010-11-15 | 1 | -2/+2 |
| | |||||
* | docs: Mention that tooltip_column text should be escaped in GtkIconView | Carlos Garcia Campos | 2010-11-14 | 1 | -0/+3 |
| | |||||
* | docs: Update URL of some documentation links | Javier Jardón | 2010-11-14 | 2 | -2/+3 |
| | | | | http://developer.gnome.org -> http://library.gnome.org | ||||
* | Pass the correct GDK library when working around Debian libtool | Owen W. Taylor | 2010-11-10 | 1 | -1/+1 |
| | | | | | | We need to link against gdk/libgdk-x11-3.0.la, not gdk/x11/libgdk-x11.la, which is the convenience library containing the backend functions. | ||||
* | gtk_dialog_get_content_area(): Fix the docs. | Murray Cumming | 2010-11-10 | 1 | -1/+1 |
| | | | | | This returns a GtkBox now, not a GtkVBox. Language bindings may need to adjust their APIs accordingly. | ||||
* | gtkdialog.c: Remove trailing whitespace | Murray Cumming | 2010-11-10 | 1 | -99/+99 |
| | |||||
* | gtklabel.c: Added hack for rint() | Chun-wei Fan | 2010-11-10 | 1 | -0/+18 |
| |