<br><br><div class="gmail_quote">On Sat, Sep 29, 2012 at 3:27 AM, David Herrmann <span dir="ltr"><<a href="mailto:dh.herrmann@googlemail.com" target="_blank">dh.herrmann@googlemail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Scott<br>
<br>
Only one nitpick below<br>
<div class="im"><br>
On Fri, Sep 28, 2012 at 10:45 AM, Scott Moreau <<a href="mailto:oreaus@gmail.com">oreaus@gmail.com</a>> wrote:<br>
> Add THEME_FRAME_MAXIMIZED flag so the theming system can know not to draw<br>
> shadows for maximized windows. This allows maximized surfaces' content to be<br>
> sized and placed in a more expectable fashion.<br>
><br>
> ---<br>
</div><div class="im">>  clients/window.c              | 75 +++++++++++++++++++++++++++++--------------<br>
>  shared/cairo-util.c           | 51 +++++++++++++++++------------<br>
>  shared/cairo-util.h           |  7 ++--<br>
>  src/xwayland/window-manager.c |  4 +--<br>
>  4 files changed, 88 insertions(+), 49 deletions(-)<br>
<br>
</div>[snip]<br>
<div class="im"><br>
> diff --git a/shared/cairo-util.h b/shared/cairo-util.h<br>
> index 2fec389..3a760a4 100644<br>
> --- a/shared/cairo-util.h<br>
> +++ b/shared/cairo-util.h<br>
> @@ -58,7 +58,10 @@ theme_create(void);<br>
>  void<br>
>  theme_destroy(struct theme *t);<br>
><br>
> -#define THEME_FRAME_ACTIVE 1<br>
> +enum {<br>
> +       THEME_FRAME_ACTIVE = 1,<br>
> +       THEME_FRAME_MAXIMIZED,<br>
<br>
</div>Could you actually change this to:<br>
  THEME_FRAME_MAXIMIZED = 2<br>
<br>
If we add further flags, we need do explicitly define them to 4, 8,<br>
16, ... so it would be really odd when only this flag is not<br>
initialized explicitly.<br>
<br>
But this is no reason to not push it. We can change it when adding<br>
further flags.<br>
Other than that it looks fine to me. I tested it and it works like a charm.<br>
<br>
Regards<br>
<span class="HOEnZb"><font color="#888888">David<br></font></span></blockquote><div><br><br>Hi David,<br><br>Thanks for the review. I didn't think about this until you mentioned it but you are right. Fortunately, it happens to work out in this case.<br>
<br><br>Cheers,<br><br>Scott<br></div></div><br>