mirror of
https://github.com/brl/mutter.git
synced 2025-04-03 17:13:46 +00:00
Merge branch 'stage-min-size-rework'
* stage-min-size-rework: docs: Update minimum size accessors actor: Use the TOPLEVEL flag instead of a type check [stage] Use min-width/height props for min size
This commit is contained in:
commit
1777a69f2f
@ -204,6 +204,7 @@
|
|||||||
#include "clutter-debug.h"
|
#include "clutter-debug.h"
|
||||||
#include "clutter-units.h"
|
#include "clutter-units.h"
|
||||||
#include "clutter-profile.h"
|
#include "clutter-profile.h"
|
||||||
|
#include "clutter-stage.h"
|
||||||
#include "cogl/cogl.h"
|
#include "cogl/cogl.h"
|
||||||
|
|
||||||
typedef struct _ShaderData ShaderData;
|
typedef struct _ShaderData ShaderData;
|
||||||
@ -5475,12 +5476,21 @@ clutter_actor_set_width_internal (ClutterActor *self,
|
|||||||
{
|
{
|
||||||
if (width >= 0)
|
if (width >= 0)
|
||||||
{
|
{
|
||||||
|
/* the Stage will use the :min-width to control the minimum
|
||||||
|
* width to be resized to, so we should not be setting it
|
||||||
|
* along with the :natural-width
|
||||||
|
*/
|
||||||
|
if (!(CLUTTER_PRIVATE_FLAGS (self) & CLUTTER_ACTOR_IS_TOPLEVEL))
|
||||||
clutter_actor_set_min_width (self, width);
|
clutter_actor_set_min_width (self, width);
|
||||||
|
|
||||||
clutter_actor_set_natural_width (self, width);
|
clutter_actor_set_natural_width (self, width);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
/* we only unset the :natural-width for the Stage */
|
||||||
|
if (!(CLUTTER_PRIVATE_FLAGS (self) & CLUTTER_ACTOR_IS_TOPLEVEL))
|
||||||
clutter_actor_set_min_width_set (self, FALSE);
|
clutter_actor_set_min_width_set (self, FALSE);
|
||||||
|
|
||||||
clutter_actor_set_natural_width_set (self, FALSE);
|
clutter_actor_set_natural_width_set (self, FALSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -5494,12 +5504,18 @@ clutter_actor_set_height_internal (ClutterActor *self,
|
|||||||
{
|
{
|
||||||
if (height >= 0)
|
if (height >= 0)
|
||||||
{
|
{
|
||||||
|
/* see the comment above in set_width_internal() */
|
||||||
|
if (!(CLUTTER_PRIVATE_FLAGS (self) & CLUTTER_ACTOR_IS_TOPLEVEL))
|
||||||
clutter_actor_set_min_height (self, height);
|
clutter_actor_set_min_height (self, height);
|
||||||
|
|
||||||
clutter_actor_set_natural_height (self, height);
|
clutter_actor_set_natural_height (self, height);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
/* see the comment above in set_width_internal() */
|
||||||
|
if (!(CLUTTER_PRIVATE_FLAGS (self) & CLUTTER_ACTOR_IS_TOPLEVEL))
|
||||||
clutter_actor_set_min_height_set (self, FALSE);
|
clutter_actor_set_min_height_set (self, FALSE);
|
||||||
|
|
||||||
clutter_actor_set_natural_height_set (self, FALSE);
|
clutter_actor_set_natural_height_set (self, FALSE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -82,8 +82,6 @@ struct _ClutterStagePrivate
|
|||||||
{
|
{
|
||||||
/* the stage implementation */
|
/* the stage implementation */
|
||||||
ClutterStageWindow *impl;
|
ClutterStageWindow *impl;
|
||||||
guint minimum_width;
|
|
||||||
guint minimum_height;
|
|
||||||
|
|
||||||
ClutterColor color;
|
ClutterColor color;
|
||||||
ClutterPerspective perspective;
|
ClutterPerspective perspective;
|
||||||
@ -101,6 +99,7 @@ struct _ClutterStagePrivate
|
|||||||
guint use_fog : 1;
|
guint use_fog : 1;
|
||||||
guint throttle_motion_events : 1;
|
guint throttle_motion_events : 1;
|
||||||
guint use_alpha : 1;
|
guint use_alpha : 1;
|
||||||
|
guint min_size_changed : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum
|
enum
|
||||||
@ -216,10 +215,37 @@ clutter_stage_allocate (ClutterActor *self,
|
|||||||
klass->allocate (self, box, flags);
|
klass->allocate (self, box, flags);
|
||||||
|
|
||||||
/* Ensure the window is sized correctly */
|
/* Ensure the window is sized correctly */
|
||||||
if (!priv->is_fullscreen &&
|
if (!priv->is_fullscreen)
|
||||||
((geom.width != width) || (geom.height != height)))
|
{
|
||||||
|
if (priv->min_size_changed)
|
||||||
|
{
|
||||||
|
gfloat min_width, min_height;
|
||||||
|
gboolean min_width_set, min_height_set;
|
||||||
|
|
||||||
|
g_object_get (G_OBJECT (self),
|
||||||
|
"min-width", &min_width,
|
||||||
|
"min-width-set", &min_width_set,
|
||||||
|
"min-height", &min_height,
|
||||||
|
"min-height-set", &min_height_set,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
if (!min_width_set)
|
||||||
|
min_width = 1;
|
||||||
|
if (!min_height_set)
|
||||||
|
min_height = 1;
|
||||||
|
|
||||||
|
if (width < min_width)
|
||||||
|
width = min_width;
|
||||||
|
if (height < min_height)
|
||||||
|
height = min_height;
|
||||||
|
|
||||||
|
priv->min_size_changed = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((geom.width != width) || (geom.height != height))
|
||||||
_clutter_stage_window_resize (priv->impl, width, height);
|
_clutter_stage_window_resize (priv->impl, width, height);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ClutterActorBox override = { 0, };
|
ClutterActorBox override = { 0, };
|
||||||
@ -1155,6 +1181,12 @@ clutter_stage_class_init (ClutterStageClass *klass)
|
|||||||
g_type_class_add_private (gobject_class, sizeof (ClutterStagePrivate));
|
g_type_class_add_private (gobject_class, sizeof (ClutterStagePrivate));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
clutter_stage_notify_min_size (ClutterStage *self)
|
||||||
|
{
|
||||||
|
self->priv->min_size_changed = TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
clutter_stage_init (ClutterStage *self)
|
clutter_stage_init (ClutterStage *self)
|
||||||
{
|
{
|
||||||
@ -1186,10 +1218,9 @@ clutter_stage_init (ClutterStage *self)
|
|||||||
priv->is_cursor_visible = TRUE;
|
priv->is_cursor_visible = TRUE;
|
||||||
priv->use_fog = FALSE;
|
priv->use_fog = FALSE;
|
||||||
priv->throttle_motion_events = TRUE;
|
priv->throttle_motion_events = TRUE;
|
||||||
|
priv->min_size_changed = FALSE;
|
||||||
|
|
||||||
priv->color = default_stage_color;
|
priv->color = default_stage_color;
|
||||||
priv->minimum_width = 1;
|
|
||||||
priv->minimum_height = 1;
|
|
||||||
|
|
||||||
priv->perspective.fovy = 60.0; /* 60 Degrees */
|
priv->perspective.fovy = 60.0; /* 60 Degrees */
|
||||||
priv->perspective.aspect = 1.0;
|
priv->perspective.aspect = 1.0;
|
||||||
@ -1203,6 +1234,11 @@ clutter_stage_init (ClutterStage *self)
|
|||||||
clutter_actor_set_reactive (CLUTTER_ACTOR (self), TRUE);
|
clutter_actor_set_reactive (CLUTTER_ACTOR (self), TRUE);
|
||||||
clutter_stage_set_title (self, g_get_prgname ());
|
clutter_stage_set_title (self, g_get_prgname ());
|
||||||
clutter_stage_set_key_focus (self, NULL);
|
clutter_stage_set_key_focus (self, NULL);
|
||||||
|
|
||||||
|
g_signal_connect (self, "notify::min-width",
|
||||||
|
G_CALLBACK (clutter_stage_notify_min_size), NULL);
|
||||||
|
g_signal_connect (self, "notify::min-height",
|
||||||
|
G_CALLBACK (clutter_stage_notify_min_size), NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2339,8 +2375,16 @@ clutter_stage_get_use_alpha (ClutterStage *stage)
|
|||||||
* @width: width, in pixels
|
* @width: width, in pixels
|
||||||
* @height: height, in pixels
|
* @height: height, in pixels
|
||||||
*
|
*
|
||||||
* Sets the minimum size for a stage window. This has no effect if the stage
|
* Sets the minimum size for a stage window, if the default backend
|
||||||
* is fullscreen.
|
* uses #ClutterStage inside a window
|
||||||
|
*
|
||||||
|
* This is a convenience function, and it is equivalent to setting the
|
||||||
|
* #ClutterActor:min-width and #ClutterActor:min-height on @stage
|
||||||
|
*
|
||||||
|
* If the current size of @stage is smaller than the minimum size, the
|
||||||
|
* @stage will be resized to the new @width and @height
|
||||||
|
*
|
||||||
|
* This function has no effect if @stage is fullscreen
|
||||||
*
|
*
|
||||||
* Since: 1.2
|
* Since: 1.2
|
||||||
*/
|
*/
|
||||||
@ -2349,55 +2393,63 @@ clutter_stage_set_minimum_size (ClutterStage *stage,
|
|||||||
guint width,
|
guint width,
|
||||||
guint height)
|
guint height)
|
||||||
{
|
{
|
||||||
ClutterGeometry geom;
|
|
||||||
|
|
||||||
g_return_if_fail (CLUTTER_IS_STAGE (stage));
|
g_return_if_fail (CLUTTER_IS_STAGE (stage));
|
||||||
g_return_if_fail ((width > 0) && (height > 0));
|
g_return_if_fail ((width > 0) && (height > 0));
|
||||||
|
|
||||||
stage->priv->minimum_width = width;
|
g_object_set (G_OBJECT (stage),
|
||||||
stage->priv->minimum_height = height;
|
"min-width", (gfloat) width,
|
||||||
|
"min-height", (gfloat )height,
|
||||||
if (stage->priv->impl == NULL)
|
NULL);
|
||||||
return;
|
|
||||||
|
|
||||||
_clutter_stage_window_get_geometry (stage->priv->impl, &geom);
|
|
||||||
|
|
||||||
if (geom.width > width)
|
|
||||||
width = geom.width;
|
|
||||||
|
|
||||||
if (geom.height > height)
|
|
||||||
height = geom.height;
|
|
||||||
|
|
||||||
/* Call resize to ensure that the minimum size is enforced by
|
|
||||||
* the backend.
|
|
||||||
*/
|
|
||||||
if (CLUTTER_ACTOR_IS_MAPPED (stage))
|
|
||||||
_clutter_stage_window_resize (stage->priv->impl, width, height);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* clutter_stage_get_minimum_size:
|
* clutter_stage_get_minimum_size:
|
||||||
* @stage: a #ClutterStage
|
* @stage: a #ClutterStage
|
||||||
* @width: width, in pixels
|
* @width: (out): return location for the minimum width, in pixels,
|
||||||
* @height: height, in pixels
|
* or %NULL
|
||||||
|
* @height: (out): return location for the minimum height, in pixels,
|
||||||
|
* or %NULL
|
||||||
*
|
*
|
||||||
* Gets the set minimum size for a stage window. This may not correspond
|
* Retrieves the minimum size for a stage window as set using
|
||||||
* to the actual minimum size and is specific to the back-end
|
* clutter_stage_set_minimum_size().
|
||||||
* implementation.
|
*
|
||||||
|
* The returned size may not correspond to the actual minimum size and
|
||||||
|
* it is specific to the #ClutterStage implementation inside the
|
||||||
|
* Clutter backend
|
||||||
*
|
*
|
||||||
* Since: 1.2
|
* Since: 1.2
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
clutter_stage_get_minimum_size (ClutterStage *stage,
|
clutter_stage_get_minimum_size (ClutterStage *stage,
|
||||||
guint *width,
|
guint *width_p,
|
||||||
guint *height)
|
guint *height_p)
|
||||||
{
|
{
|
||||||
|
gfloat width, height;
|
||||||
|
gboolean width_set, height_set;
|
||||||
|
|
||||||
g_return_if_fail (CLUTTER_IS_STAGE (stage));
|
g_return_if_fail (CLUTTER_IS_STAGE (stage));
|
||||||
|
|
||||||
if (width)
|
g_object_get (G_OBJECT (stage),
|
||||||
*width = stage->priv->minimum_width;
|
"min-width", &width,
|
||||||
if (height)
|
"min-width-set", &width_set,
|
||||||
*height = stage->priv->minimum_height;
|
"min-height", &height,
|
||||||
|
"min-height-set", &height_set,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
/* if not width or height have been set, then the Stage
|
||||||
|
* minimum size is defined to be 1x1
|
||||||
|
*/
|
||||||
|
if (!width_set)
|
||||||
|
width = 1;
|
||||||
|
|
||||||
|
if (!height_set)
|
||||||
|
height = 1;
|
||||||
|
|
||||||
|
if (width_p)
|
||||||
|
*width_p = (guint) width;
|
||||||
|
|
||||||
|
if (height_p)
|
||||||
|
*height_p = (guint) height;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Returns the number of swap buffers pending completion for the stage */
|
/* Returns the number of swap buffers pending completion for the stage */
|
||||||
@ -2415,4 +2467,3 @@ _clutter_stage_get_pending_swaps (ClutterStage *stage)
|
|||||||
|
|
||||||
return _clutter_stage_window_get_pending_swaps (stage_window);
|
return _clutter_stage_window_get_pending_swaps (stage_window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user