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

  1. #if !defined(__drotkey_h)              // 番兵。まだインクルードされていない場合にのみ,このファイルを使用
  2. #define __drotkey_h
  3.  
  4. /*  Project medit
  5.     Project Team DoGA
  6.     Copyright (c) 1995. All Rights Reserved.
  7.  
  8.     サブシステム:    medit.apx Application
  9.     ファイル:        drotkey.h
  10.     作成者:          Taka2
  11.  
  12.  
  13.     概要
  14.     ====
  15.     TDRotKey (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 Motion;
  26. class TButton;
  27. class TRadioButton;
  28. class TGroupBox;
  29.  
  30. //{{TDialog = TDRotKey}}
  31. class TDRotKey : public TDialog {
  32.     Motion *motion;
  33.     int nowpose;
  34.     int nextkeypose;
  35.  
  36.     TGroupBox *prev_box, *next_box;
  37.     TRadioButton *prev_forward, *prev_linear, *prev_target;
  38.     TRadioButton *next_forward, *next_linear, *next_target;
  39.     TButton *button_delete;
  40.  
  41. public:
  42.     TDRotKey (TWindow* parent, Motion *m, int frame, TResId resId = DIALOG_KEY_ROT, TModule* module = 0);
  43.     virtual ~TDRotKey ();
  44.  
  45. //{{TDRotKeyVIRTUAL_BEGIN}}
  46. public:
  47.     virtual void SetupWindow ();
  48. //{{TDRotKeyVIRTUAL_END}}
  49.  
  50. //{{TDRotKeyRSP_TBL_BEGIN}}
  51. protected:
  52.     void BNClicked ();
  53.     void OKClicked ();
  54.     void CancelClicked ();
  55.     void DelClicked ();
  56.     void CmNextForward ();
  57.     void CmNextLinear ();
  58.     void CmNextTarget ();
  59.     void CmPrevForward ();
  60.     void CmPrevLinear ();
  61.     void CmPrevTarget ();
  62. //{{TDRotKeyRSP_TBL_END}}
  63. DECLARE_RESPONSE_TABLE(TDRotKey);
  64. };    //{{TDRotKey}}
  65.  
  66.  
  67. #endif                                      // __drotkey_h の番兵
  68.  
  69.