blob: 06587fb6ff3bffebb8e13a9c16efc98a8bf5f0af (
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
|
#include "config.h"
#include "shell-square-bin.h"
struct _ShellSquareBin
{
/*< private >*/
StBin parent_instance;
};
G_DEFINE_TYPE (ShellSquareBin, shell_square_bin, ST_TYPE_BIN);
static void
shell_square_bin_get_preferred_width (ClutterActor *actor,
float for_height,
float *min_width_p,
float *natural_width_p)
{
float min_width, nat_width;
/* Return the actual height to keep the squared aspect */
clutter_actor_get_preferred_height (actor, -1,
&min_width, &nat_width);
if (min_width_p)
*min_width_p = min_width;
if (natural_width_p)
*natural_width_p = nat_width;
}
static void
shell_square_bin_init (ShellSquareBin *self)
{
}
static void
shell_square_bin_class_init (ShellSquareBinClass *klass)
{
ClutterActorClass *actor_class = CLUTTER_ACTOR_CLASS (klass);
actor_class->get_preferred_width = shell_square_bin_get_preferred_width;
}
|