| Reply | « Previous Thread | Next Thread » |
|
i have following code
Code:
void CSymbianAppUi::ConstructL(void)
{
BaseConstructL( ENoAppResourceFile | KLayoutAware );
SetKeyBlockMode( ENoKeyBlock );
iAppContainer = new (ELeave) CSymbianContainer;
iAppContainer->SetMopParent( this );
iAppContainer->ConstructL( ClientRect() );
AddToStackL( iAppContainer );
iAppContainer->Run();
}
|
|
or i can create another Container with FEP functionality, but how to send key events directly to this Container so that FEP can process them? everythings seems to go through window server...
|
|
what is your Container derived from ? and have you implemented OfferKeyEventL ?
|
|
class CSymbianContainer : public CCoeControl, MCoeFepAwareTextEditor
yes it has OfferKeyEvent implemented, problem is that the loop blocks message sending... |
|
Join Date: Feb 2006
Posts: 16,442
Location: Zürich, Switzerland
Offline
Forum Nokia Champion
|
|
What loop? Why does it exist?
|
| wizard_hu_ |
| View Public Profile |
| Find all posts by wizard_hu_ |
|
we use our own multiplatform code, mfc like. we get system messages (events) in that loop and process them in our own app core.
|
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| How to send Content type to send data to server | Basu | Mobile Java Networking & Messaging & Security | 2 | 2006-10-23 03:19 |
| HELP..How to send Calendar Events using SDK 2.1? | aloymendoza | PC Suite API and PC Connectivity SDK | 1 | 2006-05-08 13:17 |
| Window Server Logging on Symbian | spaceart | General Symbian C++ | 1 | 2004-04-05 11:37 |
| Capture Key events away from the editor window | amirelattar | Symbian User Interface | 1 | 2002-12-17 09:29 |
| Can i send sms through my company's web server??? | zeeshansana | General Messaging | 2 | 2002-11-01 09:55 |