tahoma2d/toonz/sources/toonzlib/xshhandlemanager.h

32 lines
772 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef XSHHANDLEMANAGER_INCLUDED
#define XSHHANDLEMANAGER_INCLUDED
#include "toonz/tstageobjecttree.h"
//===============================================================
// Forward declarations
class TXsheet;
class ToonzScene;
//===============================================================
//*********************************************************************************
// XshHandleManager declaration
//*********************************************************************************
2016-06-15 18:43:10 +12:00
class XshHandleManager : public HandleManager {
TXsheet *m_xsh;
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
XshHandleManager(TXsheet *xsh) : m_xsh(xsh) {}
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
TPointD getHandlePos(const TStageObjectId &id, const std::string &handle,
int row) const;
2016-03-19 06:57:51 +13:00
};
#endif