phoneapp/phoneuiutils/src/tphonecmdparamglobalnote.cpp
changeset 45 6b911d05207e
parent 37 ba76fc04e6c2
child 46 bc5a64e5bc3c
equal deleted inserted replaced
37:ba76fc04e6c2 45:6b911d05207e
    35     iTextResourceId( 0 ),
    35     iTextResourceId( 0 ),
    36     iText( KNullDesC ),
    36     iText( KNullDesC ),
    37     iTone( EAvkonSIDErrorTone ),
    37     iTone( EAvkonSIDErrorTone ),
    38     iWaitforReady ( EFalse ),
    38     iWaitforReady ( EFalse ),
    39     iSoftkeys( 0 ),
    39     iSoftkeys( 0 ),
    40     iTimeout( 0 )
    40     iTimeout( 0 ),
       
    41     iNotificationDialog( EFalse )
    41     {
    42     {
    42     iParamId = EPhoneParamIdGlobalNote;
    43     iParamId = EPhoneParamIdGlobalNote;
    43     }
    44     }
    44 
    45 
    45 // ---------------------------------------------------------
    46 // ---------------------------------------------------------
   122 {
   123 {
   123     iTimeout = aTimeout;
   124     iTimeout = aTimeout;
   124 }
   125 }
   125 
   126 
   126 // ---------------------------------------------------------
   127 // ---------------------------------------------------------
       
   128 // TPhoneCmdParamGlobalNote::SetNotificationDialog
       
   129 // Sets the notification dialog flag.
       
   130 // (other items were commented in a header).
       
   131 // ---------------------------------------------------------
       
   132 //
       
   133 EXPORT_C void TPhoneCmdParamGlobalNote::SetNotificationDialog( 
       
   134         TBool aNotificationDialog )
       
   135 {
       
   136     iNotificationDialog = aNotificationDialog;
       
   137 }
       
   138 
       
   139 // ---------------------------------------------------------
   127 // TPhoneCmdParamGlobalNote::Type
   140 // TPhoneCmdParamGlobalNote::Type
   128 // Returns the global note type
   141 // Returns the global note type
   129 // (other items were commented in a header).
   142 // (other items were commented in a header).
   130 // ---------------------------------------------------------
   143 // ---------------------------------------------------------
   131 //
   144 //
   197 EXPORT_C TInt TPhoneCmdParamGlobalNote::Timeout() const
   210 EXPORT_C TInt TPhoneCmdParamGlobalNote::Timeout() const
   198     {
   211     {
   199     return iTimeout;
   212     return iTimeout;
   200     }
   213     }
   201 
   214 
       
   215 // ---------------------------------------------------------
       
   216 // TPhoneCmdParamGlobalNote::NotificationDialog
       
   217 // Returns the notification dialog flag.
       
   218 // ---------------------------------------------------------
       
   219 //
       
   220 EXPORT_C TBool TPhoneCmdParamGlobalNote::NotificationDialog() const
       
   221     {
       
   222     return iNotificationDialog;
       
   223     }
       
   224 
   202 //  End of File  
   225 //  End of File