summaryrefslogtreecommitdiff
path: root/gtk/gtkgrid.h
Commit message (Collapse)AuthorAgeFilesLines
* docs: add Gtk*Class docsWilliam Jon McCann2014-01-201-0/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=81006
* Add annotations to gtk headersMatthias Clasen2013-05-051-0/+12
| | | | Add annotations to all exported functions in GTK+ headers.
* GtkGrid: Support baseline alignment in GtkGridAlexander Larsson2013-04-231-0/+12
| | | | | We support a local baseline in each row, as well as selecting a specific row for the global baseline of the entire GtkGrid.
* Add gtk_grid_remove_{row,column}Matthias Clasen2013-03-231-0/+6
| | | | | | It is sometimes convenient to deal with entire rows or columns at a time. https://bugzilla.gnome.org/show_bug.cgi?id=695994
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-4/+4
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* gtk: Use versioned deprecationsMatthias Clasen2012-02-271-0/+4
| | | | | | | This patch changes all uses of GDK_DEPRECATED(_FOR) in gtk headers by the versioned variants, GDK_DEPRECATED_IN_3_x(_FOR). At the same time, we add GDK_AVAILABLE_IN_3_x annotations for all API additions in 3.2 and 3.4.
* Add an accessor for grid childrenMatthias Clasen2011-08-281-0/+3
| | | | This addresses concerns in bug 634136.
* GtkGrid: Add a way to insert rows or columnsMatthias Clasen2011-08-081-0/+7
| | | | | | | This is useful functionality that makes it easier to insert things in the middle of an already populated grid. Bug 653817
* Revert "Move the /*< private >*/ at the correct position"Javier Jardón2010-11-051-1/+1
| | | | | All the object structures is opaque This reverts commit c59ca4f6b9c144c59cac6288862e7a59eaa7a2cc.
* Move the /*< private >*/ at the correct positionPaolo Borelli2010-11-021-1/+1
|
* Fix gtk-doc markup: /* <private> */ should be /*< private >*/Javier Jardón2010-10-301-1/+1
|
* Fix up docsMatthias Clasen2010-10-231-1/+1
|
* Add GtkGridMatthias Clasen2010-10-221-0/+98
GtkGrid is a container similar to GtkTable, without legacy properties and unnecessary restrictions. It does height-for-width geometry management.