2013-07-12 21:30:13 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* Brush.h *
|
|
|
|
* *
|
|
|
|
* System::Windows::Media::Brush definition file *
|
|
|
|
* Copyright (c) XFX Team. All rights reserved *
|
|
|
|
*****************************************************************************/
|
|
|
|
#ifndef _SYSTEM_WINDOWS_MEDIA_BRUSH_
|
|
|
|
#define _SYSTEM_WINDOWS_MEDIA_BRUSH_
|
2013-05-05 18:18:41 +02:00
|
|
|
|
|
|
|
#include <System/Object.h>
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
namespace Windows
|
|
|
|
{
|
|
|
|
namespace Media
|
|
|
|
{
|
2013-07-12 21:30:13 +02:00
|
|
|
/**
|
|
|
|
* Defines objects used to paint graphical objects. Classes that derive from System::Windows::Media::Brush describe how the area is painted.
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class Brush : public Object
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
Brush();
|
|
|
|
|
|
|
|
public:
|
|
|
|
int Opacity;
|
|
|
|
|
|
|
|
virtual ~Brush();
|
|
|
|
|
2013-07-12 21:30:13 +02:00
|
|
|
static const Type& GetType();
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-12 21:30:13 +02:00
|
|
|
|
|
|
|
#endif //_SYSTEM_WINDOWS_MEDIA_BRUSH_
|