This page was last modified 07:49, 16 November 2007.
TSS000783 - Adding 3rd party MTM in Contacts application's Create message option menu and to the New Msg. CBA option
From Forum Nokia Wiki
| ID | TSS000783 | Creation date | November 16, 2007 |
| Platform | S60 3rd Edition | Devices | All S60 3rd Edition devices |
| Category | Symbian C++ | Subcategory | Messaging, MTM |
Description
A 3rd party MTM can be made to appear in the Contacts application (in the Create message menu) and in the New message CBA option.
Solution
MTM has to support the KUidMsvMtmQuerySupportEditor capability in order to appear in the Contacts application menu and under New Message.
//Function to support editors #define KUidMsvMtmQuerySupportEditor 0x101FD692
The following piece of code demonstrates how to use the KUidMsvMtmQuerySupportEditor capability in the implementation of UI Data MTM, QueryCapability() function:
TInt CMyMtmUiData::QueryCapability(TUid aCapability, TInt& aResponse) const
{
aResponse = KErrNotSupported;
...
switch( aCapability.iUid )
{
...
case KUidMsvMtmQuerySupportEditor:
aResponse = KErrNone;
break;
...
}
}
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| automatic Bluetooth device discovery...please help | rafeeqpv | Symbian Networking & Messaging | 4 | 2006-01-24 05:36 |
| option menu on the form | shafalig82 | Symbian User Interface | 1 | 2005-01-06 03:27 |
| How to show image on click any event......plz urgent | pashraj | Symbian Media (Graphics & Sounds) | 1 | 2008-01-29 05:31 |
| ARMV5 compilation on CodeWarrior for Symbian os 3.0 | bhagwat | Carbide.c++ and CodeWarrior Tools | 5 | 2005-02-08 16:15 |
| A problem or MTM | beover1984 | Mobile Java General | 0 | 2005-12-14 02:33 |

