Location:
ImageData.h
Link against: imageconversion.lib
class CFrameInfoStrings : public CBase;
Class used to maintain frame information stored in codec specific resource files.
CBase
- Base class for all classes to be instantiated on the heap
CFrameInfoStrings
- Class used to maintain frame information stored in codec specific resource files
Defined in CFrameInfoStrings
:
Count()
, Decoder()
, Depth()
, Details()
, Dimensions()
, Format()
, NewL()
, NewLC()
, SetDecoderL()
, SetDepthL()
, SetDetailsL()
, SetDimensionsL()
, SetFormatL()
, String()
, ~CFrameInfoStrings()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
static IMPORT_C CFrameInfoStrings *NewL();
Static factory function for creating instances of CFrameInfoStrings.
|
static IMPORT_C CFrameInfoStrings *NewLC();
Static factory function for creating instances of CFrameInfoStrings. Leaves the newly allocated object on the cleanup stack.
|
IMPORT_C ~CFrameInfoStrings();
Destructor.
Frees all resources owned by the object prior to its destruction.
IMPORT_C const TPtrC String(TInt aIndex) const;
Returns the string at position aIndex in the string table. The index runs from 0 to CFrameInfoStrings::Count()
- 1.
|
|
IMPORT_C TInt Count() const;
Returns the number of strings in the string table.
|
IMPORT_C const TPtrC Decoder() const;
Returns a pointer to the 'decoder' entry string from this object.
|
IMPORT_C void SetDecoderL(const TDesC &aString);
Adds the supplied string to this object as the 'decoder' entry.
|
IMPORT_C const TPtrC Format() const;
Retruns a pointer to the 'format' entry string from this object.
|
IMPORT_C void SetFormatL(const TDesC &aString);
Adds the supplied string to this object as the 'format' entry.
|
IMPORT_C const TPtrC Dimensions() const;
Returns a pointer to the 'dimensions' entry string from this object.
|
IMPORT_C void SetDimensionsL(const TDesC &aString);
Adds the supplied string to this object as the 'dimensions' entry.
|
IMPORT_C const TPtrC Depth() const;
Returns a pointer to the 'depth' entry string from this object.
|
IMPORT_C void SetDepthL(const TDesC &aString);
Adds the supplied string to this object as the 'depth' entry.
|
IMPORT_C const TPtrC Details() const;
Returns a pointer to the 'details' entry string from this object.
|
IMPORT_C void SetDetailsL(const TDesC &aString);
Adds the supplied string to this object as the 'details' entry.
|