Showing results 1 to 25 of 35 @ 0.01 seconds. Search: Posts Made By: icer
Forum: Applications 2008-04-15, 08:07
Replies: 16
Views: 5,564
Posted By icer
Re: New beta (v0.20) of OMWeather is released!

Ok... thanks. :)

Can you tell me, does that weather.com service require registration?

Hmm... do you use that RSS feed there?
Forum: Applications 2008-04-14, 13:10
Replies: 16
Views: 5,564
Posted By icer
Re: New beta (v0.20) of OMWeather is released!

This application looks good. Can you tell me if this application uses the Geoclue 'API'? Also how does the connection to weather.com work? Do you use some API can be used. Anyway thumbs up for the...
Forum: Development 2008-04-14, 07:05
Replies: 7
Views: 3,383
Posted By icer
Re: Programming on the N810

No. That is exactly how I do it: on device. Albeit sometimes I know the code should work equally well on PC and IT so it can be developed on PC which can be somewhat faster. Sometimes I know the code...
Forum: General 2008-04-13, 18:27
Replies: 8
Views: 2,166
Posted By icer
Re: Crazy idea conserning star trek tricorders

There are protocols like upnp and then there is the dlna which are suited for controlling all kind of devices. I think dlna is a protocol suite which includes upnp. upnp is not limited to multimedia...
Forum: Development 2008-04-07, 20:16
Replies: 7
Views: 5,164
Posted By icer
Re: Python GPS

I tried gpsbt with n810 but it does not seem to work. Once I tested gpsbt+n810+external gps receiver it works. Am I missing something? Where did you get the gpsbt library? I got it in november as a...
Forum: Development 2008-04-05, 10:53
Replies: 4
Views: 1,386
Posted By icer
Re: Resolution of main window..

No problem :)

In that case you may wish to look at the porting guide:
http://maemo.org/development/documentation/how-tos/3-x/howto_porting_to_maemo_bora.html
Forum: Development 2008-04-05, 06:09
Replies: 4
Views: 1,386
Posted By icer
Re: Resolution of main window..

* Task Navigator area on the left is 80 pixels wide
* Statusbar/titlebar area is 720x60 pixels
* Application area of 672x396 pixels is in the middle...
Forum: Development 2008-04-03, 11:35
Replies: 56
Views: 13,706
Posted By icer
Re: PyPackager

Absolutely... thanks twaelti for the excellent instructions. I did not know who did them so I could not give proper credit. :) Just want to clear that out so people don't think that I did the...
Forum: Development 2008-04-02, 13:58
Replies: 56
Views: 13,706
Posted By icer
Re: PyPackager

Here is a good HOWTO for Pypackager: http://maemo.org/community/wiki/packagebuildingwithoutlinuxusingpypackager/
It's great for people as thick as myself, lol :D
Forum: Development 2008-03-27, 11:54
Replies: 56
Views: 13,706
Posted By icer
Re: PyPackager

Can I create a package for installing a python home applet?

I organize all files as they are in their folder structure:
/sourcefiles/usr/lib/hildon-desktop/ <- all .py files here...
Forum: Development 2008-03-19, 20:10
Replies: 3
Views: 1,266
Posted By icer
Re: Debugging Python Desktop Applets

You mean the home-plugins? Try pyphantom IDE. It can be found on garage.maemo.org

I used it for my UI part. It works quite well for normal pygtk development.

Although in the end I ditched the...
Forum: Development 2008-03-17, 20:40
Replies: 4
Views: 2,240
Posted By icer
Re: gtk events and gobject in homeplugin

Great! That should do it! :) I'll test it tomorrow.
Forum: Development 2008-03-17, 19:55
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

Why not. Go see www.cairographics.org
I think they have examples there.
Forum: Development 2008-03-17, 19:49
Replies: 4
Views: 2,240
Posted By icer
Re: gtk events and gobject in homeplugin

ok... thanks. IIRC I saw something similar for python somewhere. I'll go find it.
Forum: Development 2008-03-14, 14:36
Replies: 4
Views: 2,240
Posted By icer
gtk events and gobject in homeplugin

Hi,

How do the events work in hildon home plugin? Does it have similar destroy and delete events as normal gtk applications? I use the gobject timers and I think they keep on running after I have...
Forum: Development 2008-03-11, 14:18
Replies: 2
Views: 1,092
Posted By icer
Re: python, GUI(home plugin) and backround tasks how?

ok. Can I use the python threads or should I look at the pygtk threads. This is a bit confusing.
Forum: Development 2008-03-11, 11:34
Replies: 2
Views: 1,092
Posted By icer
python, GUI(home plugin) and backround tasks how?

Hi,

I'm developing a GUI program, a home plugin, and it works already quite well. However the program freezes for a moment when executing it. It's because it is connecting over BT to retrieve some...
Forum: Development 2008-03-07, 11:55
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

Hey thanks for yet another great example! :) I too will use it for sure.

Can you explain a bit this code? Is it so that the method screen_changed is executed every time the window or widget is...
Forum: Development 2008-03-07, 08:09
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

Thanks a lot. I tried it out and it works! Though only in device not on pyphantom ide. Well I guess it doesn't matter as long as it works on IT.

Now just need to learn that cairo mumbo jumbo.

I...
Forum: Development 2008-02-28, 15:15
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

This pygtk faq looks promising: http://faq.pygtk.org/index.py?req=show&file=faq08.018.htp
I did some tests and I think it sort of works. Ran a test on the IDE. I need to retest on the IT and also do...
Forum: Development 2008-02-26, 07:42
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

Looks like I'm stuck with this. The code is kind of alright but does not work. I need a working example of a complete plugin...
I've been reading these:
GTK images:...
Forum: Development 2008-02-21, 07:25
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

Hi,

I have not tested if I get anything appearing on the screen but at least python is happy with it:
import gtk
import hildondesktop
e = gtk.eventbox()
screen = e.get_screen()
rgba =...
Forum: Development 2008-02-20, 13:46
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

Lol... :) ok. I tried it as you said:
...
rgba = gtk.gdk.Screen.get_rgba_colormap()

Now it says:
TypeError: descriptor 'get_rgba_colormap' of 'gtk.gdk.Screen' object needs an argument

But in...
Forum: Development 2008-02-20, 10:51
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

This is not directly related to this issue but I thought I post this here anyway.

So I was struggling to get an image to show up on the applet. I used the set_from_file method and pyphantom...
Forum: Development 2008-02-19, 12:32
Replies: 52
Views: 33,286
Posted By icer
Re: Shaped widgets? (transparent background)

Hi, did you get it working? Can you explain what you did to us?

How would I setup a frame background so that it is semitransparent? I'm thinking about desktop homeitem now. Hmm... I think I have...
Showing results 1 to 25 of 35



 
Forum Jump

All times are GMT. The time now is 01:57.