PDA

View Full Version : Adding an icon in status pane



reticent
14th July 2010, 14:48
Hi,

Can anyone let me know how we can add an icon in the status pane. I am using Qt 4.6.3 with symbian^3.
Also, I would like to know how to implement our own "Back " softkey. I followed this link
http://wiki.forum.nokia.com/index.ph...Qt_for_Symbian

I was able to create Back softkey. In the back() slot function I tried close()/ hide() but nothing happened when I clicked
the Back button.

Thanks

Ginsengelf
15th July 2010, 07:12
Hi, you can use QStatusBar::insertWidget to insert a widget into the status bar. In your case a QLabel will be able to display an image.

Ginsengelf

reticent
19th July 2010, 12:11
Thanks Ginsengelf. I haven't tried this yet but sure gave me an idea.