summaryrefslogtreecommitdiff
path: root/tests/testellipsise.c
Commit message (Collapse)AuthorAgeFilesLines
* API: container: Remove gtk_container_set_border_width()Benjamin Otte2016-10-161-1/+0
|
* box: Remove 'padding' child propertyTimm Bäder2016-10-161-3/+3
|
* tests: Stop using GtkAlignmentMatthias Clasen2014-05-231-4/+4
| | | | Fix up all other tests to not use GtkAlignment anymore.
* Change FSF AddressJavier Jardón2012-02-271-2/+1
|
* gtk: remove "gboolean homogeneous" from gtk_box_new()Michael Natterer2010-11-021-1/+1
| | | | Because it's FALSE in virtually all use cases.
* Use gtk_box_new() instead gtk_[v|h]box_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 the new GtkComboBoxText APIJavier Jardón2010-10-151-5/+5
| | | | | Also remove mentions of the old text convenience API from the docs, and point to GtkComboBoxText instead.
* Move GtkSizeRequest into GtkWidgetBenjamin Otte2010-09-261-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | It doesn't make sense to keep them separate as GtkSizeRequest requires a GtkWidget and GtkWidget implements GtkSizeRequest, so you can never have one without the other. It also makes the code a lot easier because no casts are required when calling functions. Also, the names would translate to gtk_widget_get_width() and people agreed that this would be a too generic name, so a "preferred" was added to the names. So this patch moves the functions: gtk_size_request_get_request_mode() => gtk_widget_get_request_mode() gtk_size_request_get_width() => gtk_widget_get_preferred_width() gtk_size_request_get_height() => gtk_widget_get_preferred_height() gtk_size_request_get_size() => gtk_widget_get_preferred_size() gtk_size_request_get_width_for_height() => gtk_widget_get_preferred_width_for_height() gtk_size_request_get_height_for_width() => gtk_widget_get_preferred_height_for_width() ... and moves the corresponding vfuncs to the GtkWidgetClass. The patch also renames the implementations of the vfuncs in widgets to include the word "preferrred".
* tests: Connect to draw signal in testellipsiseBenjamin Otte2010-09-261-13/+6
| | | | The test seems broken, not sure why.
* tests/testellipsise.c: Use accessor functions to access GtkWidgetJavier Jardón2010-08-221-7/+12
|
* Mass api change from GtkExtendedLayout --> GtkSizeRequestTristan Van Berkom2010-06-181-2/+2
| | | | | | | | | | | | | | | | | | | | This commit makes a few massive changes to the extended layout code: a.) gtkextendedlayout.c --> gtksizerequest.c b.) _is_height_for_width --> get_request_mode() c.) get_desired_size(), get_desired_width(), get_desired_height() --> get_size(), get_width(), get_height() This is the first partial commit and only effects portions of the tree that have already been merged in master (in order to easily cherry pick this commit). Conflicts: gtk/Makefile.am gtk/gtk.h gtk/gtk.symbols gtk/gtkextendedlayout.h
* Updated test for api change.Tristan Van Berkom2010-04-201-1/+1
|
* Fixed test to call the extended layout api instead of consulting ->requisitionTristan Van Berkom2010-04-171-7/+7
|
* Adding tests ported over from the old branch by Matthias.Tristan Van Berkom2010-04-101-30/+18
|
* native-layout: Introduce GtkExtendedLayout interface.Johannes Schmmid2009-12-141-8/+125
|
* Revert name changeCody Russell2008-07-011-1/+1
| | | | svn path=/trunk/; revision=20724
* Practically everything changed.Cody Russell2008-06-301-1/+1
| | | | | | | | | | | | | 2008-06-30 Cody Russell <bratsche@gnome.org> * Practically everything changed. Change all references of GIMP Toolkit (and variations of it) to GTK+ Toolkit, showing no mercy at all to our beloved ancestry. (#540529) svn path=/trunk/; revision=20709
* exit on close.Paolo Borelli2004-09-301-0/+1
| | | | | | 2004-09-30 Paolo Borelli <pborelli@katamail.com> * tests/testellipsize.c: exit on close.
* Require Pango 1.5.1 (for ellipsisation).Matthias Clasen2004-07-221-0/+68
Thu Jul 22 01:05:16 2004 Matthias Clasen <maclas@gmx.de> * configure.in: Require Pango 1.5.1 (for ellipsisation). * gtk/gtklabel.h: * gtk/gtklabel.c (gtk_label_class_init): Add a new :ellipsise property which controls ellipsisation of the label. (#125250, Tim Van Wassenhove, patch by James M. Cape) * tests/testellipsise.c: Simple test for ellipsisation.