phoneapp/phoneuiview/inc/cphonetoolbarcontroller.h
branchRCL_3
changeset 58 40a3f856b14d
parent 31 ba54057fe027
equal deleted inserted replaced
57:94dc1107e8b2 58:40a3f856b14d
    65 
    65 
    66     /**
    66     /**
    67     * Disables toolbar
    67     * Disables toolbar
    68     */ 
    68     */ 
    69     void HideToolbar();	
    69     void HideToolbar();	
    70     
    70 
       
    71     /**
       
    72     * Sets mute flag.
       
    73     * @param aCommandParam command parameter
       
    74     */        
    71     void SetMuteFlag( TPhoneCommandParam* aCommandParam );
    75     void SetMuteFlag( TPhoneCommandParam* aCommandParam );
    72 
    76 
       
    77     /**
       
    78     * Sets integrated handsfree in use -flag.
       
    79     * @param aCommandParam command parameter
       
    80     */        
    73     void SetIhfFlag( TPhoneCommandParam* aCommandParam );
    81     void SetIhfFlag( TPhoneCommandParam* aCommandParam );
    74     
    82 
       
    83     /**
       
    84     * Sets wired accessory in use -flag.
       
    85     * @param aCommandParam command parameter
       
    86     */        
    75     void SetWiredAccFlag( TPhoneCommandParam* aCommandParam );
    87     void SetWiredAccFlag( TPhoneCommandParam* aCommandParam );
    76     
    88 
       
    89     /**
       
    90     * Sets Bluetooth accessory in use -flag.
       
    91     * @param aCommandParam command parameter
       
    92     */    
       
    93     void SetBTAccFlag( TPhoneCommandParam* aCommandParam );
       
    94 
       
    95     /**
       
    96     * Sets Bluetooth accessory is available -flag.
       
    97     * @param aCommandParam command parameter
       
    98     */        
       
    99     void SetBTAccAvailableFlag( TPhoneCommandParam* aCommandParam );
       
   100 
       
   101     /**
       
   102     * Sets call is in progress state -flag.
       
   103     * @param aCommandParam command parameter
       
   104     */        
    77     void SetCallInProgressFlag( TPhoneCommandParam* aCommandParam ); 
   105     void SetCallInProgressFlag( TPhoneCommandParam* aCommandParam ); 
    78     
   106     
    79     /**
   107     /**
    80      * Dims (greys out) or undims all toolbar items.
   108      * Dims (greys out) or undims all toolbar items.
    81      *
   109      *
   169 
   197 
   170     /**
   198     /**
   171      * CoeEnv 
   199      * CoeEnv 
   172      */
   200      */
   173     CCoeEnv& iCoeEnv;    
   201     CCoeEnv& iCoeEnv;    
   174         
   202     
       
   203     // Muted or not
   175     TBool iMuteFlag;
   204     TBool iMuteFlag;
   176     
   205     
       
   206     // Integrated handsfree in use or not
   177     TBool iIhfFlag;
   207     TBool iIhfFlag;
   178     
   208     
       
   209     // Wired accessory in use or not
   179     TBool iWiredAccFlag;
   210     TBool iWiredAccFlag;
   180     
   211     
       
   212     // Bluetooth accessory in use or not
       
   213     TBool iBTAccFlag;
       
   214     
       
   215     // Bluetooth accessory is available or not
       
   216     TBool iBTAccAvailableFlag;
       
   217     
       
   218     // A call is progressing or not
   181     TBool iCallInProgress;
   219     TBool iCallInProgress;
   182 
   220 
   183     // Dim activate IHF button
   221     // Dim activate IHF button
   184     TBool iDimActivateIhf;
   222     TBool iDimActivateIhf;
   185     
   223