mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-17 22:02:41 -06:00
27 lines
730 B
C++
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
|