Full screen transparent application

Login to reply to this topic.
Mon, 2005-09-12 06:35
Joined: 2003-10-15
Forum posts: 78
Hi

I am trying to make an invisible application. I cannot use EXE, because from time to time I need to show rather complex dynamic dialogs -> I need CCoeEnv.

I managed to create an invisible background by just not creating iAppView, but app still shows the very top row with the icon and app name. Is there a way to make this part of the screen also transparent?


Tue, 2005-09-13 03:57
Joined: 2005-08-19
Forum posts: 165
Re: Full screen transparent application
Change:
iAppView->ConstructL( ClientRect() );

to

iAppView->ConstructL( ApplicationRect() );
Tue, 2005-09-13 14:01
Joined: 2003-10-15
Forum posts: 78
Re: Full screen transparent application
Wouldn't this make the whole screen being white instead of being transparent?
Unfortunately I cannot test the code right now.

Tue, 2005-09-13 23:11
Joined: 2004-02-09
Forum posts: 11
Re: Full screen transparent application
I think it is necessary hide the window, then to do a screenshot, then draw this screenshot on the window and  unhide window. Repeate Smiley
  • Login to reply to this topic.