View Full Version : How to get rid of app name on screen?


Mack
10-12-2002, 10:22 AM
How can I get rid off the the icon and application name on tp of the screen?

cmatthee
10-12-2002, 02:16 PM
Please specify the sdk you are using. Is this for the 9200 of the series 60?

11-12-2002, 02:05 AM
Mack,

I believe you are talking about Series 60, right?
Just hide it with

StatusPane()->MakeVisible(EFalse);

Khan Ming

Mack
11-12-2002, 07:41 AM
As Im still kind of new to this foreign language could you be a little more precise khanming and yes I am using the series60.

But Im gettin better know I was able to write pictures to the screen :)

:D

11-12-2002, 08:21 AM
Hi Mack,

I know how to use, but if you want me to explain, it is not as accurate as what the documentation says

Symbian OS v6.1 Edition for C++ » API Guide » Application Framework » Using Uikon Core Control's Status Pane

See under CEikStatusPane class, and you'll see what you can do with the overall status pane. Refer to Series 60 Status Pane example for more.

Wait a minute, what you meant by...?
"But Im gettin better know I was able to write pictures to the screen"
Did you mean the previous topic regarding displaying GIF on screen? You made it work?

Khan Ming

Mack
11-12-2002, 08:38 AM
No, I did as the example bmpmanip cause I want to resize the pictures I need a smaller picture of the original too.

The example you gave was too complicated :( as I am still learning.

But I hope I will learn some day :)

Yes and I found the example !

Mack
17-12-2002, 11:18 AM
Did not get rid off the statuspane, how on earth am I supposed to an easy thing like this. Nokias examples are as they are about 10000 lines and you should find something there.



[code:1]
CEikStatusPane *sp = ((CAknAppUi*)iEikonEnv->EikAppUi())->StatusPane();
sp->MakeVisible(EFalse);
[/code:1]

Is this the way it should be done and where should I put it ??
I tried several times in different locations but cant get it right :(

Mack
17-12-2002, 12:07 PM
Ok now it dissapeared I had the lines in the wrong place :)

Another question how can I hide the button texts ??

Mental Blank
17-12-2002, 03:10 PM
The simplest thing to do (not sure if this meets Nokia style guidelines) is to just make your application view the size of the whole screen. If you have created an app using the wizard, you will probably have a view with a container within it. Here's some code to set the container to fill the whole screen:

[code:1]void CExampleContainer::SetToFullScreen()
{
SetRect(TRect(0, 0, 176, 208));
}
[/code:1]

Hope this helps.

17-12-2002, 04:23 PM
Thanks this helps a lot :D