summaryrefslogtreecommitdiff
path: root/gtk/gtkextendedlayout.c
blob: c3108f0ea72b3c1ecb5ea9a51ba48e9ffe4967fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/* gtkextendedlayout.c
 * Copyright (C) 2007-2010 Openismus GmbH
 *
 * Authors:
 *      Mathias Hasselmann <mathias@openismus.com>
 *      Tristan Van Berkom <tristan.van.berkom@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */


#include <config.h>
#include "gtkextendedlayout.h"
#include "gtksizegroup.h"
#include "gtkprivate.h"
#include "gtkintl.h"
#include "gtkalias.h"

/* With extended layout, a widget may be requested
 * its width for 2 or maximum 3 heights in one resize
 */
#define N_CACHED_SIZES 3

typedef struct 
{
  guint  age;
  gint   for_size;
  gint   minimum_size;
  gint   natural_size;
} DesiredSize;

typedef struct {
  DesiredSize desired_widths[N_CACHED_SIZES];
  DesiredSize desired_heights[N_CACHED_SIZES];
  guint8      cached_width_age;
  guint8      cached_height_age;
} ExtendedLayoutCache;

static GQuark quark_cache = 0;


GType
gtk_extended_layout_get_type (void)
{
  static GType extended_layout_type = 0;

  if (G_UNLIKELY(!extended_layout_type))
    {
      extended_layout_type =
	g_type_register_static_simple (G_TYPE_INTERFACE, I_("GtkExtendedLayout"),
				       sizeof (GtkExtendedLayoutIface),
				       NULL, 0, NULL, 0);

      g_type_interface_add_prerequisite (extended_layout_type, GTK_TYPE_WIDGET);

      quark_cache = g_quark_from_static_string ("gtk-extended-layout-cache");
    }

  return extended_layout_type;
}

/* looks for a cached size request for this for_size. If not
 * found, returns the oldest entry so it can be overwritten */
static gboolean
get_cached_desired_size (gint           for_size,
			 DesiredSize   *cached_sizes,
			 DesiredSize  **result)
{
  guint i;

  *result = &cached_sizes[0];

  for (i = 0; i < N_CACHED_SIZES; i++)
    {
      DesiredSize *cs;

      cs = &cached_sizes[i];

      if (cs->age > 0 &&
          cs->for_size == for_size)
        {
          *result = cs;
          return TRUE;
        }
      else if (cs->age < (*result)->age)
        {
          *result = cs;
        }
    }

  return FALSE;
}

static void 
destroy_cache (ExtendedLayoutCache *cache)
{
  g_slice_free (ExtendedLayoutCache, cache);
}

ExtendedLayoutCache *
get_cache (GtkExtendedLayout *layout, gboolean create)
{
  ExtendedLayoutCache *cache;
  
  cache = g_object_get_qdata (G_OBJECT (layout), quark_cache);
  if (!cache && create)
    {
      cache = g_slice_new0 (ExtendedLayoutCache);

      cache->cached_width_age  = 1;
      cache->cached_height_age = 1;

      g_object_set_qdata_full (G_OBJECT (layout), quark_cache, cache, 
			       (GDestroyNotify)destroy_cache);
    }
  
  return cache;
}


static void
do_size_request (GtkWidget *widget)
{
  if (GTK_WIDGET_REQUEST_NEEDED (widget))
    {
      gtk_widget_ensure_style (widget);      
      GTK_PRIVATE_UNSET_FLAG (widget, GTK_REQUEST_NEEDED);
      g_signal_emit_by_name (widget,
			     "size-request",
			     &widget->requisition);
    }
}

static void
compute_size_for_orientation (GtkExtendedLayout *layout,
			      GtkSizeGroupMode   orientation,
			      gint               for_size,
			      gint              *minimum_size,
			      gint              *natural_size)
{
  ExtendedLayoutCache *cache;
  DesiredSize         *cached_size;
  GtkWidget           *widget;
  gboolean             found_in_cache = FALSE;

  g_return_if_fail (GTK_IS_EXTENDED_LAYOUT (layout));
  g_return_if_fail (minimum_size != NULL || natural_size != NULL);

  widget = GTK_WIDGET (layout);
  cache  = get_cache (layout, TRUE);

  if (orientation == GTK_SIZE_GROUP_HORIZONTAL)
    {
      cached_size = &cache->desired_widths[0];
      
      if (GTK_WIDGET_WIDTH_REQUEST_NEEDED (layout) == FALSE)
	found_in_cache = get_cached_desired_size (for_size, cache->desired_widths, &cached_size);
      else
	{
	  memset (cache->desired_widths, 0x0, N_CACHED_SIZES * sizeof (DesiredSize));
	  cache->cached_width_age = 1;
	}
    }
  else
    {
      cached_size = &cache->desired_heights[0];
      
      if (GTK_WIDGET_HEIGHT_REQUEST_NEEDED (layout) == FALSE)
	found_in_cache = get_cached_desired_size (for_size, cache->desired_heights, &cached_size);
      else
	{
	  memset (cache->desired_heights, 0x0, N_CACHED_SIZES * sizeof (DesiredSize));
	  cache->cached_height_age = 1;
	}
    }
    
  if (!found_in_cache)
    {
      gint min_size = 0, nat_size = 0;
      gint group_size, requisition_size;

      /* Unconditional size request runs but is often unhandled. */
      do_size_request (widget);

      if (orientation == GTK_SIZE_GROUP_HORIZONTAL)
	{
	  requisition_size = widget->requisition.width;

	  if (for_size < 0)
	    GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_desired_width (layout, &min_size, &nat_size);
	  else
	    GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_width_for_height (layout, for_size, &min_size, &nat_size);
	}
      else
	{
	  requisition_size = widget->requisition.height;

	  if (for_size < 0)
	    GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_desired_height (layout, &min_size, &nat_size);
	  else
	    GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_height_for_width (layout, for_size, &min_size, &nat_size);
	}

      /* Support for dangling "size-request" signals and forward derived
       * classes that will not default to a ->get_desired_width() that
       * returns the values in the ->requisition cache.
       */
      min_size = MAX (min_size, requisition_size);
      nat_size = MAX (nat_size, requisition_size);

      cached_size->minimum_size = min_size;
      cached_size->natural_size = nat_size;
      cached_size->for_size     = for_size;

      if (orientation == GTK_SIZE_GROUP_HORIZONTAL)
	{
	  cached_size->age = cache->cached_width_age;
	  cache->cached_width_age++;

	  GTK_PRIVATE_UNSET_FLAG (layout, GTK_WIDTH_REQUEST_NEEDED);
	}
      else
	{
	  cached_size->age = cache->cached_height_age;
	  cache->cached_height_age++;

	  GTK_PRIVATE_UNSET_FLAG (layout, GTK_HEIGHT_REQUEST_NEEDED);
	}

      /* Get size groups to compute the base requisition once one of the values have been cached,
       * then go ahead and update the cache with the sizegroup computed value.
       *
       * Note this is also where values from gtk_widget_set_size_request() are considered.
       */
      group_size = 
	_gtk_size_group_bump_requisition (GTK_WIDGET (layout), 
					  orientation, cached_size->minimum_size);

      cached_size->minimum_size = MAX (cached_size->minimum_size, group_size);
      cached_size->natural_size = MAX (cached_size->natural_size, group_size);
    }

  if (minimum_size)
    *minimum_size = cached_size->minimum_size;
  
  if (natural_size)
    *natural_size = cached_size->natural_size;

  g_assert (cached_size->minimum_size <= cached_size->natural_size);

  GTK_NOTE (EXTENDED_LAYOUT, 
	    g_print ("[%p] %s\t%s: %d is minimum %d and natural: %d (hit cache: %s)\n",
		     layout, G_OBJECT_TYPE_NAME (layout), 
		     orientation == GTK_SIZE_GROUP_HORIZONTAL ? 
		     "width for height" : "height for width" ,
		     for_size,
		     cached_size->minimum_size,
		     cached_size->natural_size,
		     found_in_cache ? "yes" : "no"));

}

/**
 * gtk_extended_layout_is_height_for_width:
 * @layout: a #GtkExtendedLayout instance
 *
 * Gets whether the widget prefers a height-for-width layout
 * or a width-for-height layout
 *
 * Returns: %TRUE if the widget prefers height-for-width, %FALSE if
 * the widget should be treated with a width-for-height preference.
 *
 * Since: 3.0
 */
gboolean
gtk_extended_layout_is_height_for_width (GtkExtendedLayout *layout)
{
  GtkExtendedLayoutIface *iface;

  g_return_val_if_fail (GTK_IS_EXTENDED_LAYOUT (layout), FALSE);

  iface = GTK_EXTENDED_LAYOUT_GET_IFACE (layout);
  if (iface->is_height_for_width)
    return iface->is_height_for_width (layout);

  /* By default widgets are height-for-width. */
  return TRUE;
}

/**
 * gtk_extended_layout_get_desired_width:
 * @layout: a #GtkExtendedLayout instance
 * @minimum_width: location to store the minimum size, or %NULL
 * @natural_width: location to store the natural size, or %NULL
 *
 * Retreives a widget's minimum and natural size in a single dimension.
 *
 * Since: 3.0
 */
void
gtk_extended_layout_get_desired_width (GtkExtendedLayout *layout,
				       gint              *minimum_width,
				       gint              *natural_width)
{
  compute_size_for_orientation (layout, GTK_SIZE_GROUP_HORIZONTAL, -1, minimum_width, natural_width);
}


/**
 * gtk_extended_layout_get_desired_height:
 * @layout: a #GtkExtendedLayout instance
 * @minimum_width: location to store the minimum size, or %NULL
 * @natural_width: location to store the natural size, or %NULL
 *
 * Retreives a widget's minimum and natural size in a single dimension.
 *
 * Since: 3.0
 */
void
gtk_extended_layout_get_desired_height (GtkExtendedLayout *layout,
					gint              *minimum_height,
					gint              *natural_height)
{
  compute_size_for_orientation (layout, GTK_SIZE_GROUP_VERTICAL, -1, minimum_height, natural_height);
}



/**
 * gtk_extended_layout_get_width_for_height:
 * @layout: a #GtkExtendedLayout instance
 * @height: the size which is available for allocation
 * @minimum_size: location for storing the minimum size, or %NULL
 * @natural_size: location for storing the natural size, or %NULL
 *
 * Retreives a widget's desired width if it would be given
 * the specified @height.
 *
 * Since: 3.0
 */
void
gtk_extended_layout_get_width_for_height (GtkExtendedLayout *layout,
                                          gint               height,
                                          gint              *minimum_width,
                                          gint              *natural_width)
{
  compute_size_for_orientation (layout, GTK_SIZE_GROUP_HORIZONTAL, height, minimum_width, natural_width);
}

/**
 * gtk_extended_layout_get_height_for_width:
 * @layout: a #GtkExtendedLayout instance
 * @width: the size which is available for allocation
 * @minimum_size: location for storing the minimum size, or %NULL
 * @natural_size: location for storing the natural size, or %NULL
 *
 * Retreives a widget's desired height if it would be given
 * the specified @width.
 *
 * Since: 3.0
 */
void
gtk_extended_layout_get_height_for_width (GtkExtendedLayout *layout,
                                          gint               width,
                                          gint              *minimum_height,
                                          gint              *natural_height)
{
  compute_size_for_orientation (layout, GTK_SIZE_GROUP_VERTICAL, width, minimum_height, natural_height);
}

/**
 * gtk_extended_layout_get_desired_size:
 * @layout: a #GtkExtendedLayout instance
 * @width: the size which is available for allocation
 * @request_natural: Whether to base the contextual request off of the 
 *  base natural or the base minimum
 * @minimum_size: location for storing the minimum size, or %NULL
 * @natural_size: location for storing the natural size, or %NULL
 *
 * Retreives the minimum and natural size of a widget taking
 * into account the widget's preference for height-for-width management.
 *
 * If request_natural is specified, the non-contextual natural value will
 * be used to make the contextual request; otherwise the minimum will be used.
 *
 * This is used to retreive a suitable size by container widgets whom dont 
 * impose any restrictions on the child placement, examples of these are 
 * #GtkWindow and #GtkScrolledWindow. 
 *
 * Since: 3.0
 */
void
gtk_extended_layout_get_desired_size (GtkExtendedLayout *layout,
				      gboolean           request_natural,
                                      GtkRequisition    *minimum_size,
                                      GtkRequisition    *natural_size)
{
  gint min_width, nat_width;
  gint min_height, nat_height;

  g_return_if_fail (GTK_IS_EXTENDED_LAYOUT (layout));

  if (gtk_extended_layout_is_height_for_width (layout))
    {
      gtk_extended_layout_get_desired_width (layout, &min_width, &nat_width);
      gtk_extended_layout_get_height_for_width (layout, 
						request_natural ? nat_width : min_width, 
						&min_height, &nat_height);
    }
  else
    {
      gtk_extended_layout_get_desired_height (layout, &min_height, &nat_height);
      gtk_extended_layout_get_width_for_height (layout, 
						request_natural ? nat_height : min_height, 
						&min_width, &nat_width);
    }

  if (minimum_size)
    {
      minimum_size->width  = min_width; 
      minimum_size->height = min_height;
    }
  
  if (natural_size)
    {
      natural_size->width  = nat_width; 
      natural_size->height = nat_height;
    }
}



#define __GTK_EXTENDED_LAYOUT_C__
#include "gtkaliasdef.c"