phoneapp/phoneuiutils/inc/tphonecmdparamglobalnote.h
branchGCC_SURGE
changeset 51 f39ed5e045e0
parent 30 ebdbd102c78a
parent 46 bc5a64e5bc3c
--- 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