What you try is somewhat complicated because the edwin is not the only component involved in drawing text. You could try the following:
Put the two edwins on two different window owning controls and...
Type: Posts; User: BO_frank; Keyword(s):
What you try is somewhat complicated because the edwin is not the only component involved in drawing text. You could try the following:
Put the two edwins on two different window owning controls and...
The CEikEdwin does not toggle through the characters itself, this is done by the FEP. So you can't just derive from CEikEdwin to manipulate this behavior. I doubt that you can change the sequence of...
You can also try to provide your own MFormCustomDraw derived class for the TextLayout of the edwin. There you can specify the DrawBackground() method and bitblt a bitmap.
Br,
Frank
Hi Shilpa,
the problem is that every device has its own set of fonts. Therefore you need to find a font that is present on every device. If your requested font is not on the device, it will be...
You should get the address of the cell that was not freed. Check with debugger who allocates this cell (by checking new ops) or just view this cell (if you use CW) using the memory view. With memory...
As mentiond above, ActivateLocalView() is a member function of CAknViewAppUi.
Try to use the iAvkonViewAppUi makro (defined in <aknappui.h>) - see SDK help.
This will give you a pointer to your...
You can try to use the embedded browser (Browser control API) and display flash in an xhtml page. In S60 3rd there is no way to include flash using some flash API.
But flash lite is an optional...
Well, every key press triggers three events in a Sequence:
First event delivered is: EEventKeyDown
Second event is: EEventKey,
Third event is: EEventKeyUp
So the user performs on action (i.e. he...
You get different events in your OfferKeyEventL method, all defined in TEventCode.
You can start recording on the EEventKeyDown, and stop on EEventKeyUp.
Br,
Frank
Hi,
I'm wondering how I can get the current case of a CEikEdwin.
I have integrated an edwin in my UI, which has a custom status pane (i.e. it does not have any of the standard S60 controls,...
CEikEdwin is not that easy to handle. So you can easily screw up that thing.
If you get only number input, it can have the following reasons:
Not implemented CountComponentControls and...
Hi,
instead of
try to set the font directly on the label.
Like in the following code
void CUpdateDialogEmail::PreLayoutDynInitL()
{
Hi Daniele,
I checked my document folder but I also do not find any more information about the status pane. There's a section in S60 Platform: Application Framework Handbook, but that's all.
Did...
Hi Daniele,
check this document:
Series 60 Developer Platform: Application UI Customization
Especially check section 3.2.1
It can be found at forum.nokia.
In principle the status pane contains...
You can use the method SetFont of CEikLabel. It takes a CFont pointer.
Check the SDK help how to construct a Font.
Well, I used CCoeStatic for my singletons in a DLL that is used by an application. Yes, you need to have a CoeEnv to use CCoeStatic.
The nice thing with CCoeStatic is that these singletons are...
No, the N73 is not a S60 3rd FP 1 device. It is a 3.0 device, check it out on http://www.forum.nokia.com/devices/N73
Maybe thats why it is not working.
Br,
Frank
Normally you should not handle the redraw yourself, you should rely on the window server. You can request a redraw event by using the method DrawDeferred(). If you really need to draw immediately,...
Hi Rozik,
did you checked if avkon_bitmap_file is pointing to the right location? System error -1 is KErrNotFound.
Br,
Frank
Well, you could try to use the MCoeControlObserver and act on the event EEventStateChanged. If the state changed event is fired you can check for the current input and case modes.
The function...
There is only a ConstructFromResourceL and no ConstructL function, so constructing a CEikSecretEditor purely by code seems not to be possible, am I right?
Br,
Frank
Tried it, and your right, wizard_hu_. With the overload DrawBitmap(rect, bitmap) the bitmap is showing properly.
Thanks a lot!
Hi Ivey,
thanks for the quick reply.
I have a container control (window owning) that has the browser control integrated.
I take a screenshot of the browser (i.e. from the rectangle of my...
Hi,
I'm wondering what is really the difference between a BitBlt and the DrawBitmap?
I know that DrawBitmap scales the bitmap for me, but there seems to be also a difference in handling by the...
try to set the capabilities before calling ConstructL on the edwin.
Br,
Frank