00001
00003 #ifndef _FBXSDK_MANIPULATORS_H_
00004 #define _FBXSDK_MANIPULATORS_H_
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #include <kaydaradef.h>
00042 #ifndef KFBX_DLL
00043 #define KFBX_DLL K_DLLIMPORT
00044 #endif
00045
00046 #include <kaydara.h>
00047
00048 #include <kfbxplugins/kfbxobject.h>
00049 #include <kfbxplugins/kfbxcamera.h>
00050 #include <kfbxmath/kfbxvector2.h>
00051 #include <kfbxmath/kfbxvector4.h>
00052
00053 #include <fbxfilesdk_nsbegin.h>
00054
00055 class KFbxCamManip_state;
00056
00060 class KFBX_DLL KFbxCameraManipulator : public KFbxObject
00061 {
00062 KFBXOBJECT_DECLARE(KFbxCameraManipulator, KFbxObject);
00063
00064 public:
00068 void SetCamera(const KFbxCamera& pCamera, bool pValidateLookAtPos);
00069
00072 void SetUpVector(const KFbxVector4& pUpVector);
00073
00076 void FrameAll(const KFbxScene& pScene);
00077
00080 void FrameSelected(const KFbxScene& pScene);
00081
00086 bool OrbitBegin(int pMouseX, int pMouseY);
00087
00092 bool OrbitNotify(int pMouseX, int pMouseY);
00093
00095 void OrbitEnd();
00096
00101 bool DollyBegin(int pMouseX, int pMouseY);
00102
00107 bool DollyNotify(int pMouseX, int pMouseY);
00108
00110 void DollyEnd();
00111
00116 bool PanBegin(int pMouseX, int pMouseY);
00117
00122 bool PanNotify(int pMouseX, int pMouseY);
00123
00125 void PanEnd();
00126
00128
00129
00130
00131
00132
00133
00135
00136 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00137
00138 public:
00139 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00140
00142 KFbxCameraManipulator& operator=(KFbxCameraManipulator const& pCamManip);
00143
00144 private:
00145 KFbxCameraManipulator(KFbxSdkManager& pManager, char const* pName);
00146 ~KFbxCameraManipulator();
00147
00148 KFbxCamManip_state* mState;
00149 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00150 };
00151
00152 #include <fbxfilesdk_nsend.h>
00153
00154 #endif // #ifndef _FBXSDK_MANIPULATORS_H_
00155
00156