Editing PyMaemo/HildonDesktop

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 20: Line 20:
== Example - Home widgets (Fremantle only) ==
== Example - Home widgets (Fremantle only) ==
 +
 +
The code below was based on the C example that can be found on the maemo-examples package sources [https://garage.maemo.org/svn/maemoexamples/branches/fremantle-sdk-testing/maemo-examples/hello-world-home.c].
<pre>
<pre>
Line 66: Line 68:
</pre>
</pre>
-
Save the example code shown above as /usr/lib/hildon-desktop/hello_world_home.py inside your FREMANTLE_X86 target. <b>Make sure the script has a valid Python module name, specially it should not have any dots or dashes on its name</b>. To be safe, use only alphanumeric characters and underscore, plus the ".py" extension.
+
Save the example code shown above as <b>/usr/lib/hildon-desktop/hello_world_home.py</b> inside your FREMANTLE_X86 target. Next, save the following text as <b>/usr/share/applications/hildon-home/hello_world_home.desktop</b>:
-
 
+
-
Next, save the following text as /usr/share/applications/hildon-home/hello_world_home.desktop:
+
<pre>
<pre>
Line 131: Line 131:
</pre>
</pre>
-
Now start the SDK UI, if it is not already started. See the instructions on the [[Documentation/Maemo_5_Final_SDK_Installation#Starting.2FShutting_down_the_SDK_UI|Maemo 5 SDK documentation page]]
+
Make sure the hildon desktop and hildon-status-menu are running. For that, you can use the following commands:
-
The example status menu widget should appear as soon as the .desktop file is saved, as the plugin used in this example is of the permanent category. See the [[Documentation/Maemo_5_Developer_Guide/Application_Development/Writing_Desktop_Widgets#Status_Menu_widgets|Maemo 5 Developer Guide]] for more information of status menu widgets categories.
+
<pre>
 +
[sbox]> export DISPLAY=:2 # if you are using scratchbox + Xephyr
 +
[sbox]> af-sb-init.sh start
 +
[sbox]> run-standalone.sh maemo-summoner /usr/bin/hildon-status-menu.launch &
 +
</pre>
 +
 
 +
The example status menu widget should appear as soon as hildon-status-menu process is started, as the plugin used in this example is of the permanent category. See [http://wiki.maemo.org/Documentation/Maemo_5_Developer_Guide/Application_Development/Writing_Desktop_Widgets#Status_Menu_widgets] for more information of status menu widgets categories.
This is a screenshot taken on Xephyr showing how the widget will look like:
This is a screenshot taken on Xephyr showing how the widget will look like:
Line 142: Line 148:
[[Image:Status-menu-2.png]]
[[Image:Status-menu-2.png]]
-
 
-
== Debugging tips ==
 
-
 
-
If a Python widget breaks for some reason, no error message will appear to the user. To debug the problem (in Scratchbox), you need to look at debug messages sent on the console where the UI was started.
 
-
 
-
Debug messages for Home Widgets are shown by default. For Status Menu Widgets, you need to enable debug output by running these commands:
 
-
 
-
<pre>
 
-
[sbox]> pkill -f /usr/bin/hildon-status-menu
 
-
[sbox]> DEBUG_OUTPUT=1 /usr/bin/hildon-status-menu &
 
-
</pre>
 
-
 
-
They will terminate the running hildon-status-menu process and start a new one with debug output enabled.
 
-
 
-
To force reloading a plugin (so that you can get the error messages again), try moving the .desktop file out of the directory and adding it back, e.g.:
 
-
 
-
<pre>
 
-
[sbox]> mv /usr/share/applications/hildon-status-menu/hello_world_status_menu.desktop /tmp/
 
-
[sbox]> mv /tmp/hello_world_status_menu.desktop /usr/share/applications/hildon-status-menu/
 
-
</pre>
 
-
 
-
This method may not work reliably for hildon-home widgets because the old code may not be fully unloaded. A solution is to reload hildon-home using [http://maemo.org/downloads/product/Maemo5/actman/ Desktop Activity Manager]. Once you store the current desktop (e.g. with "activty new test; activity store test") you can re-load it using "activity load -f test". This will reload hildon-home and all its widgets.
 
-
 
-
Another way of debugging python widgets is to add this code at the beginning of the script:
 
-
<source lang="python">
 
-
import sys
 
-
f=open('/tmp/mylog.log', 'at', buffering=1)
 
-
sys.stdout=f
 
-
sys.stderr=f
 
-
</source>
 
-
 
-
This will redirect stdout and stderr to <code>/tmp/mylog.log</code>. This means that all exceptions and all other output will be logged there. As a plus, the code can be given to testers and they will be able to report-back with the contents of the logfile.
 
-
 
-
However, '''do not''' use this by default in production systems. Use it '''only''' for debugging since the file will consume space in <code>/tmp</code> and will only grow in size.
 
-
 
-
[[Category:Python]]
 

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)