equal
deleted
inserted
replaced
647 |
647 |
648 // --------------------------------------------------------------------------- |
648 // --------------------------------------------------------------------------- |
649 // RPeninputServerImpl::IsDimmed |
649 // RPeninputServerImpl::IsDimmed |
650 // --------------------------------------------------------------------------- |
650 // --------------------------------------------------------------------------- |
651 // |
651 // |
652 TInt RPeninputServerImpl::SupportInputMode() |
652 TInt RPeninputServerImpl::SupportInputMode( TInt aLanguage ) |
653 { |
653 { |
654 TInt supportMode = 0; |
654 TInt supportMode = 0; |
655 TIpcArgs arg; |
655 TIpcArgs arg; |
656 |
656 |
657 TPckg<TInt> msg(supportMode); |
657 TPckg<TInt> msg(supportMode); |
658 arg.Set(KMsgSlot0,&msg); |
658 arg.Set(KMsgSlot0,&msg); |
|
659 |
|
660 TPckg<TInt> language( aLanguage ); |
|
661 arg.Set( KMsgSlot1,&language ); |
659 SendReceive(EPeninputRequestSupportInputMode,arg); |
662 SendReceive(EPeninputRequestSupportInputMode,arg); |
660 |
663 |
661 return supportMode; |
664 return supportMode; |
662 } |
665 } |
663 |
666 |
1508 |
1511 |
1509 iWndGroup.SetOrdinalPosition( 0, aPriority); |
1512 iWndGroup.SetOrdinalPosition( 0, aPriority); |
1510 |
1513 |
1511 Window().SetOrdinalPosition(0,aPriority); |
1514 Window().SetOrdinalPosition(0,aPriority); |
1512 |
1515 |
1513 // For fix ELLI-82JD3K for tb92. |
|
1514 // The code runs well on 5.0 platform, but on tb92, |
1516 // The code runs well on 5.0 platform, but on tb92, |
1515 // it will make the backgourd screen black purely. |
1517 // it will make the backgourd screen black purely. |
1516 //Window().SetFaded(ETrue,RWindowTreeNode::EFadeWindowOnly); |
1518 //Window().SetFaded(ETrue,RWindowTreeNode::EFadeWindowOnly); |
1517 } |
1519 } |
1518 else |
1520 else |