mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
31 lines
792 B
C++
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
|