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

31 lines
741 B
C++

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