pgadmin3/include/hotdraw/figures/hdLineTerminal.h
levinsv 4af765213c support PG11
Поддержка PostgreSQL 11 только для Windows
2018-10-10 22:59:25 +05:00

31 lines
792 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// hdLineTerminal.h - Base class for line terminal figure
//
//////////////////////////////////////////////////////////////////////////
#ifndef HDLINETERMINAL_H
#define HDLINETERMINAL_H
#include "hotdraw/figures/hdIFigure.h"
#include "hotdraw/utilities/hdPoint.h"
class hdLineTerminal : public hdObject
{
public:
hdLineTerminal();
~hdLineTerminal();
virtual hdPoint &draw (wxBufferedDC &context, hdPoint &a, hdPoint &b, hdDrawingView *view);
virtual void setLinePen(wxPen pen);
protected:
wxPen terminalLinePen;
private:
hdPoint middle;
};
#endif