home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / MEDIT.LZH / DSELRESO.H < prev    next >
C/C++ Source or Header  |  1996-06-28  |  1KB  |  49 lines

  1. #if !defined(__dselreso_h)              // 番兵。まだインクルードされていない場合にのみ,このファイルを使用
  2. #define __dselreso_h
  3.  
  4. /*  Project medit
  5.     Project Team DoGA
  6.     Copyright (c) 1995. All Rights Reserved.
  7.  
  8.     サブシステム:    medit.apx Application
  9.     ファイル:        dselreso.h
  10.     作成者:          Taka2
  11.  
  12.  
  13.     概要
  14.     ====
  15.     TDSelReso (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 TEdit;
  26. //{{TDialog = TDSelReso}}
  27. class TDSelReso : public TDialog {
  28.     TEdit *editwidth, *editheight;
  29. public:
  30.     int selwidth, selheight;
  31.     TDSelReso (TWindow* parent, int iwidth, int iheight);
  32. virtual ~TDSelReso ();
  33.  
  34. //{{TDSelResoVIRTUAL_BEGIN}}
  35. public:
  36.     virtual void SetupWindow ();
  37. //{{TDSelResoVIRTUAL_END}}
  38.  
  39. //{{TDSelResoRSP_TBL_BEGIN}}
  40. protected:
  41.     void CmOK ();
  42. //{{TDSelResoRSP_TBL_END}}
  43. DECLARE_RESPONSE_TABLE(TDSelReso);
  44. };    //{{TDSelReso}}
  45.  
  46.  
  47. #endif                                      // __dselreso_h の番兵
  48.  
  49.