struct CCL::ISkinImageElement

Overview

Represents an image defined in skin. More…

#include <iskinmodel.h>

struct ISkinImageElement: public CCL::IUnknown
{
    // methods

    virtual IImage*CCL_API getImage () const = 0;
    virtual void CCL_API setImage (IImage* image) = 0;
    virtual StringRef CCL_API getImagePath () const = 0;
    virtual void CCL_API setImagePath (StringRef imagePath) = 0;
};

Inherited Members

public:
    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;

Detailed Documentation

Represents an image defined in skin.

Methods

virtual IImage*CCL_API getImage () const = 0

Get image represented by element.

virtual void CCL_API setImage (IImage* image) = 0

Set image represented by element.

virtual StringRef CCL_API getImagePath () const = 0

Get relative path to image file.

virtual void CCL_API setImagePath (StringRef imagePath) = 0

Set relative path to image file.