00001 #ifndef PANEL_VPATHCONTROLLER_H
00002 #define PANEL_VPATHCONTROLLER_H
00003
00004 #include "Panel.h"
00005 #include "PathController.h"
00006 #include "PolyLine.h"
00007
00008 #include "Pocket AnimatorDoc.h"
00009
00010 class VPanel_VPathController : public VPanel
00011 {
00012
00013 public:
00014 VPanel_VPathController(CWnd* pParent = NULL);
00015
00016 void SetLine(VPolyLine* pLine);
00017 VPolyLine* GetLine();
00018
00019
00020
00021 enum { IDD = IDD_PANEL_COLOR };
00022 int m_StartFrame;
00023 int m_EndFrame;
00024
00025
00026
00027
00028
00029
00030 protected:
00031 virtual void DoDataExchange(CDataExchange* pDX);
00032
00033
00034
00035 protected:
00036
00037 VPolyLine* m_pLine;
00038
00039
00040 virtual BOOL OnInitDialog();
00041 afx_msg BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
00042
00043 DECLARE_MESSAGE_MAP()
00044 };
00045
00046 #include "Editor_VPathController.h"
00047 #endif