#include <fbxpropertypage.h>
Definition at line 386 of file fbxpropertypage.h.
| FBXSDK_FRIEND_NEW | ( | ) |
| static FbxPropertyConnect* Create | ( | FbxPropertyPage * | pPage, |
| FbxInt | pId | ||
| ) | [inline, static] |
Definition at line 390 of file fbxpropertypage.h.
{ return FbxNew< FbxPropertyConnect >(pPage,pId); }
| void Destroy | ( | ) | [inline] |
| FbxPropertyConnect* Clone | ( | FbxPropertyPage * | pPage | ) | [inline] |
Definition at line 392 of file fbxpropertypage.h.
{
return FbxNew< FbxPropertyConnect >(pPage,mId);
}
| void IncRef | ( | ) | [inline] |
| void DecRef | ( | ) | [inline] |
Definition at line 398 of file fbxpropertypage.h.
| int GetRef | ( | ) | [inline] |
| FbxPropertyPage* GetPage | ( | ) | [inline] |
| FbxInt GetPropertyId | ( | ) | [inline] |
| void ClearConnectCache | ( | ) | [inline] |
Definition at line 407 of file fbxpropertypage.h.
| void WipeAllConnections | ( | ) | [inline] |
Clear all connect without sending any notification (Internal use ONLY)
Definition at line 413 of file fbxpropertypage.h.
| bool ConnectSrc | ( | FbxPropertyConnect * | pSrc, |
| FbxConnection::EType | pType | ||
| ) | [inline] |
Definition at line 419 of file fbxpropertypage.h.
{
return mConnectionPoint.ConnectSrc(&pSrc->mConnectionPoint,pType);
}
| bool DisconnectSrc | ( | FbxPropertyConnect * | pSrc | ) | [inline] |
Definition at line 423 of file fbxpropertypage.h.
{
return mConnectionPoint.DisconnectSrc(&pSrc->mConnectionPoint);
}
| bool IsConnectedSrc | ( | FbxPropertyConnect * | pSrc | ) | [inline] |
Definition at line 427 of file fbxpropertypage.h.
{
return mConnectionPoint.IsConnectedSrc(&pSrc->mConnectionPoint);
}
| int GetSrcCount | ( | FbxConnectionPointFilter * | pFilter | ) | [inline] |
Definition at line 431 of file fbxpropertypage.h.
{
return mConnectionPoint.GetSrcCount(pFilter);
}
| FbxPropertyConnect* GetSrc | ( | FbxConnectionPointFilter * | pFilter, |
| int | pIndex | ||
| ) | [inline] |
Definition at line 435 of file fbxpropertypage.h.
{
FbxConnectionPoint *lCP = mConnectionPoint.GetSrc(pIndex,pFilter);
return lCP ? (FbxPropertyConnect * )lCP->GetData() : 0;
}
| bool ConnectDst | ( | FbxPropertyConnect * | pDst, |
| FbxConnection::EType | pType | ||
| ) | [inline] |
Definition at line 440 of file fbxpropertypage.h.
{
return mConnectionPoint.ConnectDst(&pDst->mConnectionPoint,pType);
}
| bool IsConnectedDst | ( | FbxPropertyConnect * | pSrc | ) | [inline] |
Definition at line 444 of file fbxpropertypage.h.
{
return mConnectionPoint.IsConnectedSrc(&pSrc->mConnectionPoint);
}
| bool DisconnectDst | ( | FbxPropertyConnect * | pDst | ) | [inline] |
Definition at line 448 of file fbxpropertypage.h.
{
return mConnectionPoint.DisconnectDst(&pDst->mConnectionPoint);
}
| int GetDstCount | ( | FbxConnectionPointFilter * | pFilter | ) | [inline] |
Definition at line 452 of file fbxpropertypage.h.
{
return mConnectionPoint.GetDstCount(pFilter);
}
| FbxPropertyConnect* GetDst | ( | FbxConnectionPointFilter * | pFilter, |
| int | pIndex | ||
| ) | [inline] |
Definition at line 456 of file fbxpropertypage.h.
{
FbxConnectionPoint *lCP = mConnectionPoint.GetDst(pIndex,pFilter);
return lCP ? (FbxPropertyConnect * )lCP->GetData() : 0;
}
| int mRef |
Definition at line 462 of file fbxpropertypage.h.
Definition at line 463 of file fbxpropertypage.h.
Definition at line 464 of file fbxpropertypage.h.
Definition at line 465 of file fbxpropertypage.h.