home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / PASM.LZH / DSLIDER.H < prev    next >
C/C++ Source or Header  |  1996-05-30  |  1KB  |  55 lines

  1. #if !defined(__dslider_h)              // 番兵。まだインクルードされていない場合にのみ,このファイルを使用
  2. #define __dslider_h
  3.  
  4. /*  Project partsasm
  5.     Project Team DoGA
  6.     Copyright (c) 1995. All Rights Reserved.
  7.  
  8.     サブシステム:    partsasm.apx Application
  9.     ファイル:        dslider.h
  10.     作成者:          Taka2
  11.  
  12.  
  13.     概要
  14.     ====
  15.     TDSliderInput (TDialog) 用のクラス定義
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21. #include <owl\dialog.h>
  22.  
  23. #include "pasmapp.rh"            // すべてのリソースの定義
  24.  
  25.  
  26. class TNSlider;
  27. class TStatic;
  28. //{{TDialog = TDSliderInput}}
  29. class TDSliderInput : public TDialog {
  30.     TNSlider *slider;
  31.     TStatic *text, *value;
  32.     char *title;
  33.     char *mess;
  34.     char **gridname;
  35.     int *position;
  36.     void EvSlider(UINT code);
  37. public:
  38.     TDSliderInput (TWindow* parent, char *t, char *m, char **gname, int &pos, TResId resId = IDD_SLIDER, TModule* module = 0);
  39.     virtual ~TDSliderInput ();
  40.  
  41. //{{TDSliderInputVIRTUAL_BEGIN}}
  42. public:
  43.     virtual void SetupWindow ();
  44. //{{TDSliderInputVIRTUAL_END}}
  45.  
  46. //{{TDSliderInputRSP_TBL_BEGIN}}
  47. protected:
  48. //{{TDSliderInputRSP_TBL_END}}
  49. DECLARE_RESPONSE_TABLE(TDSliderInput);
  50. };    //{{TDSliderInput}}
  51.  
  52.  
  53. #endif                                      // __dslider_h の番兵
  54.  
  55.