- 11 May, 2022 1 commit
-
-
Sophie Herold authored
Those property features don't seem to be in use anywhere. They are redundant since the docs cover the same information and more. They also created unnecessary translation work. Closes #4904
-
- 22 May, 2021 1 commit
-
-
Matthias Clasen authored
Replace leftover gtk-doc syntax (#Type) with backquotes.
-
- 11 Mar, 2021 1 commit
-
-
- 21 Aug, 2020 1 commit
-
-
Björn Daase authored
-
- 24 Jul, 2020 1 commit
-
-
Benjamin Otte authored
-
- 27 May, 2019 1 commit
-
-
Matthias Clasen authored
-
- 06 Feb, 2018 1 commit
-
-
Matthias Clasen authored
Remove all the old 2.x and 3.x version annotations. GTK+ 4 is a new start, and from the perspective of a GTK+ 4 developer all these APIs have been around since the beginning.
-
- 01 Aug, 2015 1 commit
-
-
Matthias Clasen authored
Use g_slist_free_full more consistently. This commit just converts the obvious cases where g_slist_forall is directly followed by g_slist_free.
-
- 09 Jun, 2014 2 commits
-
-
Matthias Clasen authored
-
Matthias Clasen authored
-
- 19 Feb, 2014 1 commit
-
-
William Jon McCann authored
Instead of Return value:
-
- 28 Jan, 2014 1 commit
-
-
William Jon McCann authored
It is a little heavy handed. The text can speak for itself.
-
- 21 Jan, 2014 1 commit
-
-
William Jon McCann authored
-
- 09 Jul, 2013 1 commit
-
-
- 01 May, 2013 1 commit
-
-
Benjamin Otte authored
and use it
-
- 27 Feb, 2012 1 commit
-
-
Javier Jardón authored
-
- 12 Apr, 2011 1 commit
-
-
Matthias Clasen authored
-
- 23 Feb, 2011 1 commit
-
-
Murray Cumming authored
Mostly correcting it's to its and changing some , to .
-
- 09 Feb, 2011 1 commit
-
-
Matthias Clasen authored
That function can't be meant to be public, since it take a GtkCellAreaBoxContext argument, which is not a public type.
-
- 12 Jan, 2011 2 commits
-
-
Carlos Garnacho authored
Add a _gtk_orientable_set_style_classes() function so all orientation changes to style happen in a single place.
-
Carlos Garnacho authored
This is so g_object_set() on that property leaves widgets' style in a meaningful state. Fully fixes bug 639157.
-
- 11 Jan, 2011 2 commits
-
-
Benjamin Otte authored
They are private.
-
Benjamin Otte authored
gtk/gtkcellareaboxcontext.h -> gtk/gtkcellareaboxcontextprivate.h
-
- 10 Jan, 2011 1 commit
-
-
Tristan Van Berkom authored
This was already done for the most part but not taken care of for single cell groups (which is the most common case).
-
- 04 Jan, 2011 1 commit
-
-
Matthias Clasen authored
-
- 21 Dec, 2010 1 commit
-
-
Tristan Van Berkom authored
Now a cell can either have a "fixed" size or it can have an "aligned" starting point or both. "fixed" size cells take no space when they are invisible.
-
- 20 Dec, 2010 1 commit
-
-
Matthias Clasen authored
-
- 18 Dec, 2010 1 commit
-
-
Matthias Clasen authored
Whitespace fixes, comment formatting, etc
-
- 17 Dec, 2010 1 commit
-
-
Matthias Clasen authored
-
- 16 Dec, 2010 1 commit
-
-
Kristian Rietveld authored
-
- 12 Dec, 2010 3 commits
-
-
Tristan Van Berkom authored
Added a few apis, - GtkCellAreaContext get_preferred_height_for_width & width for height apis and vfuncs, this lets the icon view request the collective (and aligned) height for width for a said row. - gtk_cell_area_copy_context() this creates a duplicate of an already created and requested context, this way the icon view uses a global context to request the widths of all rows and then makes a copy with all the stored alignments and uses a separate copy to calculate the height and alignments of each row separately.
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
cycling focus from row to row for a horizontal area we can remember where focus was the last time around.
-
- 08 Dec, 2010 1 commit
-
-
Tristan Van Berkom authored
This allows us to reduce code allocation code paths in subclasses, as a result GtkCellArea implements the ->render() vfunc and the subclass only decides the cell area and background area distributions in a single code path.
-
- 06 Dec, 2010 3 commits
-
-
Tristan Van Berkom authored
-
Tristan Van Berkom authored
gtk_cell_area_foreach_alloc() itterates over an allocated list of cells and calls a callback with the cell's allocation until the callback returns TRUE. - Removed vfunc get_cell_allocation() and implemented gtk_cell_area_get_cell_allocation() using foreach_alloc() - Added gtk_cell_area_get_cell_at_position() using foreach_alloc() - Removed GtkCellAreaBox ->event() implementation and implemented mouse "click" cell activation in GtkCellArea class directly using gtk_cell_area_get_cell_at_position().
-
Tristan Van Berkom authored
Also gave a boolean return value to the callback to allow breaking out of the loop.
-
- 05 Dec, 2010 1 commit
-
-
Tristan Van Berkom authored
-
- 04 Dec, 2010 2 commits
-
-
Tristan Van Berkom authored
the ->focus() method was getting mixed up when more than one cell was in the same group (not aligned), added the proper check to break out of the loop on time.
-
Tristan Van Berkom authored
Changed GTK_CELL_AREA_WARN_INVALID_CHILD_PROPERTY_ID for GTK_CELL_AREA_WARN_INVALID_CELL_PROPERTY_ID
-