home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / MEDIT.LZH / DTEXPAND.H < prev    next >
C/C++ Source or Header  |  1995-08-30  |  1KB  |  60 lines

  1. #if !defined(__dtexpand_h)              // 番兵。まだインクルードされていない場合にのみ,このファイルを使用
  2. #define __dtexpand_h
  3.  
  4. /*  Project medit
  5.     Project Team DoGA
  6.     Copyright (c) 1995. All Rights Reserved.
  7.  
  8.     サブシステム:    medit.apx Application
  9.     ファイル:        dtexpand.h
  10.     作成者:          Taka2
  11.  
  12.  
  13.     概要
  14.     ====
  15.     TDTimeExpand (TDialog) 用のクラス定義
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21. #include <owl\dialog.h>
  22.  
  23. #include "meditapp.rh"            // すべてのリソースの定義
  24.  
  25. class AnimationData;
  26. class Motion;
  27. class TScrollBar;
  28. class TStatic;
  29.  
  30. //{{TDialog = TDTimeExpand}}
  31. class TDTimeExpand : public TDialog {
  32.     TScrollBar *scrollbegin, *scrollend;
  33.     TStatic *framebegin, *frameend;
  34.     TStatic *pointbegin, *pointend;
  35.     AnimationData *anim;
  36.     Motion *motion;
  37.     int begin, end;
  38. public:
  39.     TDTimeExpand (TWindow* parent, AnimationData *a, Motion *m, TResId resId = DIALOG_TIME_EXPAND, TModule* module = 0);
  40.     virtual ~TDTimeExpand ();
  41.  
  42. //{{TDTimeExpandVIRTUAL_BEGIN}}
  43. public:
  44.     virtual void SetupWindow ();
  45. //{{TDTimeExpandVIRTUAL_END}}
  46.  
  47. //{{TDTimeExpandRSP_TBL_BEGIN}}
  48. protected:
  49.     void CmOK ();
  50.     void EvScrollBegin(UINT code);
  51.     void EvScrollEnd(UINT code);
  52.     void CmNewFrame ();
  53. //{{TDTimeExpandRSP_TBL_END}}
  54. DECLARE_RESPONSE_TABLE(TDTimeExpand);
  55. };    //{{TDTimeExpand}}
  56.  
  57.  
  58. #endif                                      // __dtexpand_h の番兵
  59.  
  60.