pgadmin3/include/hotdraw/figures/defaultAttributes/hdFillAttribute.h
2020-07-07 22:19:12 +05:00

27 lines
730 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// hdFillAttribute.h - Default attribute for fill color of figure
//
//////////////////////////////////////////////////////////////////////////
#ifndef HDFILLCOLORATTRIBUTE_H
#define HDFILLCOLORATTRIBUTE_H
#include "hotdraw/figures/hdAttribute.h"
class hdFillAttribute : public hdAttribute
{
public:
hdFillAttribute();
virtual void callDefaultChangeDialog(wxWindow *owner = NULL);
virtual void apply(wxBufferedDC &context);
wxBrush &brush();
protected:
wxBrush fillAttributes;
};
#endif