You're right on the expose event, of course.<br>But detecting when an event of type GDK_CONFIGURE has occurred shouldn't be more correct? From GDK literature [1], an event of type GDK_CONFIGURE is "Generated when a window size or position has changed".<br>
That should cover all the bases (ie screen orientation and window fullscreen / unfullscreen changes), I think I'll try it and let you know if it works.<br><br>Thanks,<br><br>Luca Donaggio<br><br>[1] <a href="http://maemo.org/api_refs/5.0/beta/gdk/gdk-Event-Structures.html#GdkEventConfigure">http://maemo.org/api_refs/5.0/beta/gdk/gdk-Event-Structures.html#GdkEventConfigure</a><br>
<br><div class="gmail_quote">On Wed, Jul 1, 2009 at 5:01 PM, Alberto Garcia <span dir="ltr"><<a href="mailto:agarcia@igalia.com">agarcia@igalia.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="im">On Wed, Jul 01, 2009 at 03:40:08PM +0200, Luca Donaggio wrote:<br>
<br>
> I'm attaching a callback function to the expose event of my app<br>
> HildonWindow to detect size changes occurring after a screen<br>
> orientation change or a fullscreen / unfullscreen button press.<br>
<br>
</div>'expose' is generated when a part of the window becomes visible.<br>
<br>
For this case I think that you should use GdkScreen:size-changed<br>
to detect orientation changes and GtkWidget:window-state-event for<br>
fullscreen changes (see the documentation of gtk_window_fullscreen()).<br>
<br>
is_fs = (event->new_window_state & GDK_WINDOW_STATE_FULLSCREEN);<br>
<br>
Berto<br>
_______________________________________________<br>
maemo-developers mailing list<br>
<a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br>
<div><div></div><div class="h5"><a href="https://lists.maemo.org/mailman/listinfo/maemo-developers" target="_blank">https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br>
</div></div></blockquote></div><br>