/////////////////////////////////////////////////////////////////////////////
-// Name: brush.h
+// Name: wx/mgl/brush.h
// Purpose:
// Author: Vaclav Slavik
// Id: $Id$
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
#ifndef __WX_BRUSH_H__
#define __WX_BRUSH_H__
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "brush.h"
-#endif
-
#include "wx/defs.h"
#include "wx/object.h"
#include "wx/string.h"
wxBrush() {}
wxBrush(const wxColour &colour, int style = wxSOLID);
wxBrush(const wxBitmap &stippleBitmap);
- wxBrush(const wxBrush &brush);
- ~wxBrush() {}
- wxBrush& operator = (const wxBrush& brush);
+ virtual ~wxBrush() {}
bool operator == (const wxBrush& brush) const;
bool operator != (const wxBrush& brush) const;
- bool Ok() const;
+ bool Ok() const { return IsOk(); }
+ bool IsOk() const;
virtual int GetStyle() const;
wxColour &GetColour() const;