#include <mw/eikfnlab.h>
class CEikFileNameLabel : public CEikBorderedControl |
Public Member Functions | |
---|---|
CEikFileNameLabel() | |
~CEikFileNameLabel() | |
IMPORT_C void | ConstructL() |
virtual IMPORT_C void | GetColorUseListL(CArrayFix< TCoeColorUse > &) |
virtual IMPORT_C void | HandlePointerEventL(const TPointerEvent &) |
virtual IMPORT_C void | HandleResourceChange(TInt) |
virtual IMPORT_C TSize | MinimumSize() |
IMPORT_C void | UpdateL() |
Protected Member Functions | |
---|---|
virtual IMPORT_C void | Draw(const TRect &) |
Inherited Attributes | |
---|---|
CCoeControl::iCoeEnv | |
CCoeControl::iContext | |
CCoeControl::iPosition | |
CCoeControl::iSize | |
CEikBorderedControl::iBorder |
Inherited Enumerations | |
---|---|
CCoeControl:TZoomType |
File name label is a bordered control that displays the application name.
IMPORT_C void | ConstructL | ( | ) |
Second phase constructor. Completes the construction of a file name label control.
IMPORT_C void | Draw | ( | const TRect & | aRect | ) | const [protected, virtual] |
Reimplemented from CEikBorderedControl::Draw(const TRect &)const
Draws the borders of the control.
The screen appearance of derived classes can be changed by overriding this method. By default, this draws a border of the appropriate type around the control.
From CCoeControl.
Parameter | Description |
---|---|
aRect | Not used. |
IMPORT_C void | GetColorUseListL | ( | CArrayFix< TCoeColorUse > & | aColorUseList | ) | const [virtual] |
Reimplemented from CEikBorderedControl::GetColorUseListL(CArrayFix< TCoeColorUse > &)const
From CCoeControl. Not used in S60.
From CCoeControl
Parameter | Description |
---|---|
aColorUseList | Not used. |
IMPORT_C void | HandlePointerEventL | ( | const TPointerEvent & | aPointerEvent | ) | [virtual] |
Reimplemented from CEikBorderedControl::HandlePointerEventL(const TPointerEvent &)
Handles pointer events.
This function gets called whenever a pointer event occurs in the control, i.e. when the pointer is within the control's extent, or when the control has grabbed the pointer.
If the pointer event occurs within this control, the function will launch the task swapper.
If overriding this method, the implementation must include a base call to this method.
From CCoeControl.
Parameter | Description |
---|---|
aPointerEvent | The pointer event. |
IMPORT_C void | HandleResourceChange | ( | TInt | aType | ) | [virtual] |
Reimplemented from CEikBorderedControl::HandleResourceChange(TInt)
Handles a change to the control's resources.
The types of resources handled are those which are shared across the environment, e.g. colours or fonts. For colour scheme changes, DrawDeferred() is called in order to redraw the control.
If overriding this method, the implementation must include a base call to this method.
From CCoeControl.
Parameter | Description |
---|---|
aType | The type of resource that has changed. |
IMPORT_C TSize | MinimumSize | ( | ) | [virtual] |
Reimplemented from CCoeControl::MinimumSize()
Sets the control's minimum required size.
This function should be overridden by the concrete control class if the control is to be displayed inside a dialog.
Dialogs set the size and position of their components automatically, and use this function to enquire the minimum size that a control requires.
Other container controls that automatically calculate the layout of their components may also use this function.
From CCoeControl.
Returns: The minimum size required by the control.