00001
00003 #ifndef _FBXSDK_DOCUMENT_INFO_H_
00004 #define _FBXSDK_DOCUMENT_INFO_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 #include <kaydara.h>
00043 #ifndef KFBX_DLL
00044 #define KFBX_DLL K_DLLIMPORT
00045 #endif
00046
00047 #include <klib/kstring.h>
00048 #include <kfbxplugins/kfbxobject.h>
00049
00050 #ifndef MB_FBXSDK
00051 #include <kbaselib_nsuse.h>
00052 #endif
00053
00054 class KStreamFbx;
00055
00056 #include <fbxfilesdk_nsbegin.h>
00057
00058 class KFbxThumbnail;
00059 class KFbxSdkManager;
00060
00063 class KFBX_DLL KFbxDocumentInfo : public KFbxObject
00064 {
00065 KFBXOBJECT_DECLARE(KFbxDocumentInfo,KFbxObject);
00066
00071 public:
00072 KFbxTypedProperty<fbxString> LastSavedUrl;
00073 KFbxTypedProperty<fbxString> Url;
00074
00076
00077
00078
00079
00080
00081 KFbxProperty Original;
00082
00083 KFbxTypedProperty<fbxString> Original_ApplicationVendor;
00084 KFbxTypedProperty<fbxString> Original_ApplicationName;
00085 KFbxTypedProperty<fbxString> Original_ApplicationVersion;
00086
00087 KFbxTypedProperty<fbxString> Original_FileName;
00088
00090 KFbxTypedProperty<fbxDateTime> Original_DateTime_GMT;
00091
00093
00094
00095
00096
00097
00098
00099
00100 KFbxProperty LastSaved;
00101
00102 KFbxTypedProperty<fbxString> LastSaved_ApplicationVendor;
00103 KFbxTypedProperty<fbxString> LastSaved_ApplicationName;
00104 KFbxTypedProperty<fbxString> LastSaved_ApplicationVersion;
00105
00107 KFbxTypedProperty<fbxDateTime> LastSaved_DateTime_GMT;
00108
00114 KFbxTypedProperty<fbxString> EmbeddedUrl;
00116
00117
00123 public:
00125 KString mTitle;
00126
00128 KString mSubject;
00129
00131 KString mAuthor;
00132
00134 KString mKeywords;
00135
00137 KString mRevision;
00138
00140 KString mComment;
00142
00146
00150 KFbxThumbnail* GetSceneThumbnail();
00151
00155 void SetSceneThumbnail(KFbxThumbnail* pSceneThumbnail);
00157
00162 void Clear();
00163
00165 KFbxDocumentInfo& operator=(const KFbxDocumentInfo& pDocumentInfo);
00166
00168
00169
00170
00171
00172
00173
00175 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00176
00177 public:
00178 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00179
00180 protected:
00182 KFbxDocumentInfo(KFbxSdkManager& pManager,char const *pName);
00183 ~KFbxDocumentInfo();
00184 virtual void Construct (const KFbxDocumentInfo* pFrom);
00185 virtual void Destruct (bool pRecursive, bool pDependents);
00186 bool ConstructProperties(bool pForceSet);
00187
00188 KFbxThumbnail* mSceneThumbnail;
00189
00190 friend class KStreamFbx;
00191 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00192 };
00193
00194 typedef KFbxDocumentInfo* HKFbxDocumentInfo;
00195
00196
00197
00198
00199
00200
00201
00202 #include <fbxfilesdk_nsend.h>
00203
00204 #endif // #ifndef _FBXSDK_SCENE_INFO_H_
00205
00206