diff -r 92f864ef0288 -r ae54820ef82c iaupdate/IAD/backgroundchecker/inc/iaupdatebgsoftnotification.h --- a/iaupdate/IAD/backgroundchecker/inc/iaupdatebgsoftnotification.h Wed Jun 23 18:20:02 2010 +0300 +++ b/iaupdate/IAD/backgroundchecker/inc/iaupdatebgsoftnotification.h Tue Jul 06 14:23:31 2010 +0300 @@ -61,22 +61,16 @@ /** * Shows notification and indicator. - * - * @param aNrOfUpdates number of updates */ void ShowNotificationL(); /** * Shows indicator. - * - * @param aMode indicator mode (EFirstTimeMode / ENormalMode) */ void ShowIndicatorL(); /** * Removes indicator. - * - * @param aNrOfUpdates number of updates */ void RemoveIndicatorL(); @@ -87,13 +81,6 @@ * @param aText text for soft notification */ void SetTextL( const TDesC& aTitle, const TDesC& aText ); - - /** - * Set an image path for a soft notification. - * - * @param aImage image path for soft notification - */ - void SetImagePathL( const TDesC& aImage ); /** * Set number of updates a soft notification. @@ -152,39 +139,28 @@ /** * Get indicator enablation state * - * @return aEnabled ETrue-enabled, EFalse-disabled + * @return ETrue-enabled, EFalse-disabled */ TBool IsIndicatorEnabled(); - /** - * Set number of updates - * - * @param aNrOfUpdates number of updates - */ - // void SetNrOfUpdates( const int aNrOfUpdates ); - - /** - * Get number of updates - * - * @return number of updates - */ int GetNrOfUpdates(); private: // Data // Note title HBufC* iTitle; + // Note text HBufC* iText; - /// Image data byte array - HBufC8* iImageData; + // Notification callback MIAUpdateBGSoftNotificationCallBack* iCallback; - // Image path - HBufC* iImagePath; + // Number of updates int iNrOfUpdates; + // Indictor activation state TBool iActivateIndicator; + //Notification dialog CHbDeviceNotificationDialogSymbian* iNotificationDialog;