summaryrefslogtreecommitdiff
path: root/gtk
Commit message (Collapse)AuthorAgeFilesLines
* Use gtk_box_new() instead gtk_[v|h]box_new()Javier Jardón2010-10-3032-83/+85
|
* Fix initial size allocation with child widgetsMatthias Clasen2010-10-301-2/+14
| | | | | | | On some cases, it would take a resize of the window for children to 'jump into place'. https://bugzilla.gnome.org/show_bug.cgi?id=633500
* Use gtk_scrollbar_new() instead gtk_[v|h]scrollbar_new()Javier Jardón2010-10-303-4/+4
|
* Use gtk_scale_new() instead gtk_[v|h]scale_new()Javier Jardón2010-10-301-1/+1
|
* Use gtk_scale_new_with_range() instead gtk_[v|h]scale_new_with_range()Javier Jardón2010-10-301-1/+2
|
* Use gtk_paned_new() instead gtk_[v|h]paned_new()Javier Jardón2010-10-301-1/+1
|
* Use gtk_separator_new() instead gtk_[v|h]separator_new()Javier Jardón2010-10-304-4/+4
|
* Use gtk_button_box_new() instead gtk_[v|h]_button_box_new()Javier Jardón2010-10-302-2/+2
|
* gtk: remove declarations of removed internal functionsMichael Natterer2010-10-302-10/+0
|
* Don't set get_preferred_width_for_height to NULLMatthias Clasen2010-10-301-8/+35
| | | | The size request machinery expects that it is non-NULL.
* GtkComboBox: Add a constructor that takes a model and adds an entryMatthias Clasen2010-10-303-4/+23
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=633050
* Re-enable deprecation guardsJavier Jardón2010-10-304-6/+3
|
* ifdef X-specific stuffMatthias Clasen2010-10-301-0/+2
| | | | gdk_x11_ APIs can only be used inside #ifdef GDK_WINDOWING_X11.
* GtkButtonBox doesn't do height-for-widthMatthias Clasen2010-10-301-0/+2
| | | | | | GtkButtonBox doesn't do height-for-width, therefore we should explicitly set these methods to NULL instead of hoping that the inherited GtkBox implementations work ok.
* [introspection] annotate delete_text invoker to match do_delete_text v-methodJohn (J5) Palmieri2010-10-301-0/+2
|
* Made GtkCellAreaBox:align-cells a packing property per cellTristan Van Berkom2010-10-307-460/+978
| | | | | | Implemented all request apis on GtkCellAreaBox considering alignment of groups of cells (some cells can be aligned while others fill space smartly).
* Remove useless vars.Ignacio Casal Quinteiro2010-10-301-2/+2
|
* Fire a warning if there are any handlers connected to the deprecated ↵Tristan Van Berkom2010-10-302-1/+11
| | | | "size-request" signal.
* Added a runtime warning if any class is implementing the ->size_request() vfunc.Tristan Van Berkom2010-10-301-0/+7
|
* Make GtkPathBar use set_size_request() instead of the "size-request" signal.Tristan Van Berkom2010-10-301-17/+18
|
* Removed size_request from GtkToolItemGroupTristan Van Berkom2010-10-301-6/+32
| | | | | | Ofcourse GtkToolPalette needs real migration to height-for-width apis, this patch just removes the need for the size_request signal and vfunc.
* Use gtk_widget_set_size_request() instead of handling "size-request" signals.Tristan Van Berkom2010-10-301-12/+2
|
* Fix the buildMatthias Clasen2010-10-301-1/+1
|
* Fix gtk_fixed_get_preferred_widthMatthias Clasen2010-10-301-2/+2
| | | | | When dealing with widths, use x, not y. Spotted by Ignacio Casal Quintero.
* gtk: Fix crasher when loading symbolic iconsBastien Nocera2010-10-301-35/+48
| | | | | | | | | If the style didn't include symbolic colors for either success, warning or error, gtk_icon_info_load_symbolic_for_style() would crash. Instead, make sure we don't try to use the colors if they're not available, and fallback on default colors inside _gtk_icon_info_load_symbolic_internal().
* GtkSocket: Add error trap around call to XFixesChangeSaveSet()Owen W. Taylor2010-10-301-0/+2
| | | | | | | | | | Previously any X error from XFixesChangeSaveSet() was being eaten by the subsequent error trap when sending a client message. With asynchronous error traps, that side effect no longer occurs, so we need to add a proper error trap around the call to XFixesChangeSaveSet(). https://bugzilla.gnome.org/show_bug.cgi?id=633274
* Revert "Removed size_request from GtkTextView"Tristan Van Berkom2010-10-301-33/+1
| | | | | | This reverts commit 87dfa724ebb4e8710bee17461cb4823ba66d8658. I pushed this to the wrong branch, ouch sorry.
* Remove size_request from GtkSocketMatthias Clasen2010-10-301-15/+38
| | | | | This is only preliminary, GtkSocket can do minimal/natural width properly, there's code for that in the extended-layout branch.
* Don't g_free gslice-allocated structuresMatthias Clasen2010-10-301-1/+1
| | | | | This was causing memory corruption when removing remote plugs from sockets.
* Remove size_request from GtkScaleMatthias Clasen2010-10-301-16/+43
|
* Removed size_request from GtkTearoffMenuItemTristan Van Berkom2010-10-301-14/+35
|
* Fixed remaining call to ->size_request in GtkTextView.Tristan Van Berkom2010-10-301-1/+1
|
* Remove size_request from GtkSeparatorToolItemMatthias Clasen2010-10-301-17/+37
|
* Removed size_request from GtkTextViewTristan Van Berkom2010-10-301-1/+33
|
* Remove size_request from gtkToolItemMatthias Clasen2010-10-301-35/+45
|
* Removing size_request from GtkToolPaletteTristan Van Berkom2010-10-301-1/+27
| | | | | | Note GtkToolPalette is internally height-for-width, it needs to be refactored to cooperate with GTK+'s height-for-width geometry management properly.
* Remove size_request from GtkToolbarMatthias Clasen2010-10-301-3/+33
| | | | | This is just a bandaid fix, the toolbar should really return proper min/natural sizes, so that we can handle the overflow properly.
* Remove size_request from GtkTableMatthias Clasen2010-10-301-12/+38
|
* Removing size_request from GtkTreeview.Tristan Van Berkom2010-10-301-11/+42
| | | | | | | This should be implemented as propery height-for-width by the treeview-refactor branch. This commit includes a FIXME comment that scroll adjustments should not be updated from inside size requests but only after receiving an allocation.
* Remove size_request from GtkRulerMatthias Clasen2010-10-301-17/+40
|
* Remove size_request from GtkPathBarMatthias Clasen2010-10-301-21/+54
|
* Remove size_request from GtkSeparatorMatthias Clasen2010-10-301-27/+45
|
* Remove size_request from GtkRangeMatthias Clasen2010-10-301-9/+42
|
* Fix a typoMatthias Clasen2010-10-301-1/+1
|
* Remove size_request from GtkPanedMatthias Clasen2010-10-301-25/+51
| | | | | This is not the final word; GtkPaned should really implement height-for-width, but I didn't have time to complete that now.
* Removed size_request from GtkOffscreenWindowTristan Van Berkom2010-10-301-15/+49
|
* Removed size_request from GtkNotebookTristan Van Berkom2010-10-301-1/+33
|
* Removed size_request from GtkMenuBarTristan Van Berkom2010-10-301-1/+32
|
* Removed size_request from GtkImageMenuItemTristan Van Berkom2010-10-301-19/+95
|
* Removed size_request from GtkIconView.Tristan Van Berkom2010-10-301-23/+19
|