diff -r bab96b7ed1a4 -r f39ed5e045e0 phoneapp/phoneuiutils/inc/tphonecmdparamglobalnote.h --- a/phoneapp/phoneuiutils/inc/tphonecmdparamglobalnote.h Tue Jun 15 14:14:38 2010 +0100 +++ b/phoneapp/phoneuiutils/inc/tphonecmdparamglobalnote.h Thu Jul 22 16:33:21 2010 +0100 @@ -89,6 +89,19 @@ IMPORT_C void SetTimeout( TInt aTimeout ); /** + * Sets notification dialog flag. + * @param aNotificationDialog True if notification dialog + * should be used. + */ + IMPORT_C void SetNotificationDialog( TBool aNotificationDialog ); + + /** + * Sets cause code. + * @param aCauseCode Cause code. + */ + IMPORT_C void SetCauseCode( TInt aCauseCode ); + + /** * Returns the global note type * @return Returns the type */ @@ -129,6 +142,18 @@ * @return Timeout value. */ IMPORT_C TInt Timeout() const; + + /** + * Returns the notification dialog flag. + * @return Notification dialog flag. + */ + IMPORT_C TBool NotificationDialog() const; + + /** + * Returns cause code. + * @return Cause code. + */ + IMPORT_C TInt CauseCode() const; private: @@ -166,6 +191,16 @@ * Timeout for a note. */ TInt iTimeout; + + /** + * Notification Dialog flag. + */ + TBool iNotificationDialog; + + /** + * Cause code. + */ + TInt iCauseCode; }; #endif // __TPHONECMDPARAMGLOBALNOTE_H