home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 8090 / ModelEdit.7z / ImportAnimation.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-08  |  1.3 KB  |  46 lines

  1. #if !defined(AFX_IMPORTANIMATION_H__FDFC39C2_8E6D_11D1_99E4_0060970987C3__INCLUDED_)
  2. #define AFX_IMPORTANIMATION_H__FDFC39C2_8E6D_11D1_99E4_0060970987C3__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // ImportAnimation.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CImportAnimation dialog
  12.  
  13. class CImportAnimation : public CFileDialog
  14. {
  15.     DECLARE_DYNAMIC(CImportAnimation)
  16.  
  17. public:
  18.     CImportAnimation(BOOL bOpenFileDialog, // TRUE for FileOpen, FALSE for FileSaveAs
  19.         LPCTSTR lpszDefExt = NULL,
  20.         LPCTSTR lpszFileName = NULL,
  21.         DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT | OFN_ALLOWMULTISELECT,
  22.         LPCTSTR lpszFilter = NULL,
  23.         CWnd* pParentWnd = NULL);
  24.  
  25.  
  26.     BOOL    m_bUseUVCoords;
  27.     BOOL    m_bImportAnimations;
  28.     BOOL    m_bImportUserDims;
  29.     BOOL    m_bImportTranslations;
  30.     BOOL    m_bImportSockets;
  31.     BOOL    m_bImportWeightSets;
  32.     
  33.     virtual void OnInitDone( );    
  34.  
  35. protected:
  36.     //{{AFX_MSG(CImportAnimation)
  37.     afx_msg void OnCheck();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  44.  
  45. #endif // !defined(AFX_IMPORTANIMATION_H__FDFC39C2_8E6D_11D1_99E4_0060970987C3__INCLUDED_)
  46.