summaryrefslogtreecommitdiff
path: root/gtk/gtkentrybuffer.h
Commit message (Collapse)AuthorAgeFilesLines
* entrybuffer: Remove priv pointerTimm Bäder2018-03-301-4/+0
|
* Add annotations to gtk headersMatthias Clasen2013-05-051-0/+13
| | | | Add annotations to all exported functions in GTK+ headers.
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-3/+3
| | | | | | 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 const instead G_CONST_RETURNJavier Jardón2011-06-101-1/+1
|
* Add padding to class structsMatthias Clasen2010-10-191-1/+3
|
* Remove all traces of GDK_PIXBUF/GTK_DISABLE_SINGLE_INCLUDESMichael Natterer2010-05-031-1/+1
| | | | ...and disallow inclusion of individual files unconditionally.
* Use G_CONST_RETURN for const return valuesMatthias Clasen2009-07-151-1/+1
|
* Make GtkEntryBuffer::max-length and int propertyMatthias Clasen2009-07-151-2/+2
| | | | | This avoid a behaviour change in a corner case and should not make any difference.
* Revert 8031432c09c864d6fe635a8e8890c5221399fc4fMatthias Clasen2009-07-121-1/+1
| | | | | We can't disallow single-includes unconditionally because gtkentrybuffer.h is included in gtkentry.h.
* Disallow single-include unconditionally because this is a new fileMichael Natterer2009-07-091-1/+1
|
* GtkEntryBuffer holds text for GtkEntryStef Walter2009-07-081-0/+133
Adds a 'model' type buffer for GtkEntry in which the actual textual data is stored. GtkEntryBuffer can be subclassed. Among other things, this allows GtkEntry to be used for secrets that need to be stored in non-pageable memory. It also allows buffers to be shared by entries. See bug #576801.