<br><br><div class="gmail_quote">On Thu, Oct 22, 2009 at 5:06 PM, Aniello Del Sorbo <span dir="ltr">&lt;<a href="mailto:anidel@gmail.com">anidel@gmail.com</a>&gt;</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;">
2009/10/22 Luca Donaggio &lt;<a href="mailto:donaggio@gmail.com">donaggio@gmail.com</a>&gt;:<br>
<div><div></div><div class="h5">&gt; On Sat, Oct 17, 2009 at 1:03 PM, Cornelius Hald &lt;<a href="mailto:hald@icandy.de">hald@icandy.de</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; On Sat, 2009-10-17 at 11:58 +0100, Aniello Del Sorbo wrote:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; My program doesn&#39;t ask anything when you close it, but it keeps<br>
&gt;&gt; &gt; automatically saving the document in<br>
&gt;&gt; &gt; a temporary file. Thus at every start it loads it up and you&#39;re back<br>
&gt;&gt; &gt; where you left.<br>
&gt;&gt; &gt; So I thought I would call the screenshot function at the very end,<br>
&gt;&gt; &gt; while closing down the program.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; It didn&#39;t work. It didn&#39;t save the screenshot of what was there.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; So I call it when I receive the expose event (like in the example) and<br>
&gt;&gt; &gt; it does work there.<br>
&gt;&gt; &gt; Why is that?<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I still have to investigate it, but I thought the window would be<br>
&gt;&gt; &gt; still available in my Quit function<br>
&gt;&gt; &gt; when called from the destroy event.<br>
&gt;&gt;<br>
&gt;&gt; I&#39;m also calling it when quitting the application. I&#39;m using the<br>
&gt;&gt; &#39;delete-event&#39; on my main window. There I call it just before<br>
&gt;&gt; gtk_main_quit(). It&#39;s working for me...<br>
&gt;&gt;<br>
&gt;&gt; Cheers!<br>
&gt;&gt; Conny<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; maemo-developers mailing list<br>
&gt;&gt; <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br>
&gt;&gt; <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers" target="_blank">https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br>
&gt;<br>
&gt; I&#39;m resuming an old thread, sorry!<br>
&gt;<br>
&gt; If I call hildon_gtk_window_take_screenshot() within the callback function<br>
&gt; for the delete-event of the main app, just before gtk_main_quit(), it seems<br>
&gt; that something has already happened to the main window: it complains that it<br>
&gt; is not a GtkWindow (which usually is, as HildonWindow derives from it), but<br>
&gt; a GdkWindow, and, of course, no screenshot were taken.<br>
&gt;<br>
&gt; Luca Donaggio<br>
&gt;<br>
<br>
</div></div>I am doing the same and works, but then I was thinking that&#39;s it&#39;s<br>
probably best doing at the<br>
beginning, with a clean UI.<br>
<br>
I thought that doing it at the end, before closing it, would then fake<br>
a reload of the app in the state<br>
it was left when closing it.<br>
<br>
But this has an issue, which I think deserves thoughts:<br>
<br>
1) to really speed up things you should take the screenshot only once.<br>
2) if you do it at the end, before closing, for the reason above, then<br>
you&#39;ve got to take the screenshot<br>
at every exit. This slows down the exit itself. And this is as much of<br>
an issue as the startup speed.<br>
<br>
Thus I thought I&#39;ll take the screenshot at the expose event and only<br>
take it if the file is not there already.<br>
<font color="#888888"><br>
--<br>
</font><div><div></div><div class="h5">anidel<br>
Sent from London, Eng, United Kingdom<br>
</div></div></blockquote></div><br>You&#39;re right, I moved the screenshot-taking process at the beginning too.<br>Where are the screenshots stored? Ie: which file I should check to determine if a screenshot has already been taken once?<br>
As a side fact: we should remove the existing screenshot when installing a new version of our apps, as their appearance could have changed and the stored screenshot could not reflect the current UI any more.<br><br>Luca Donaggio<br>