equal
deleted
inserted
replaced
326 /** |
326 /** |
327 * The function sets item's text color for the focused state. |
327 * The function sets item's text color for the focused state. |
328 * |
328 * |
329 * @param aColor New color to be set. |
329 * @param aColor New color to be set. |
330 */ |
330 */ |
331 virtual void SetFocusedStateTextColor( TRgb& aColor ) = 0; |
331 virtual void SetFocusedStateTextColor( const TRgb& aColor ) = 0; |
332 |
332 |
333 /** |
333 /** |
334 * The function returns item's text color for the focused state. |
334 * The function returns item's text color for the focused state. |
335 */ |
335 */ |
336 virtual TRgb FocusedStateTextColor() const = 0; |
336 virtual TRgb FocusedStateTextColor() const = 0; |
338 /** |
338 /** |
339 * The function sets item's text color for the normal (unfocused) state. |
339 * The function sets item's text color for the normal (unfocused) state. |
340 * |
340 * |
341 * @param aColor New color to be set. |
341 * @param aColor New color to be set. |
342 */ |
342 */ |
343 virtual void SetNormalStateTextColor( TRgb& aColor ) = 0; |
343 virtual void SetNormalStateTextColor( const TRgb& aColor ) = 0; |
344 |
344 |
345 /** |
345 /** |
346 * The function returns item's text color for the normal (unfocused) state |
346 * The function returns item's text color for the normal (unfocused) state |
347 */ |
347 */ |
348 virtual TRgb NormalStateTextColor() const = 0; |
348 virtual TRgb NormalStateTextColor() const = 0; |