pgadmin3/include/dd/dditems/locators/ddMinMaxTableLocator.h
2020-07-07 22:19:12 +05:00

30 lines
737 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ddMinMaxTableLocator.h - Locate table minimize/maximize button inside a table.
//
//////////////////////////////////////////////////////////////////////////
#ifndef DDMINMAXTABLELOCATOR_H
#define DDMINMAXTABLELOCATOR_H
#include "hotdraw/locators/hdILocator.h"
#include "hotdraw/figures/hdIFigure.h"
class ddMinMaxTableLocator : public hdILocator
{
public:
ddMinMaxTableLocator();
~ddMinMaxTableLocator();
virtual hdPoint &locate(int posIdx, hdIFigure *owner);
protected:
private:
};
#endif