home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / TCH2AVI.LZH / TSHWWNDW.H < prev    next >
C/C++ Source or Header  |  1996-05-13  |  991b  |  42 lines

  1. #if !defined(__tshwwndw_h)              // 番兵。まだインクルードされていない場合にのみ,このファイルを使用
  2. #define __tshwwndw_h
  3.  
  4. /*  Project tch2avi
  5.     Project Team DoGA
  6.     Copyright (c) 1996. All Rights Reserved.
  7.  
  8.     サブシステム:    tch2avi.apx Application
  9.     ファイル:        tshwwndw.h
  10.     作成者:          Masamichi Takatsu
  11.  
  12.  
  13.     概要
  14.     ====
  15.     TShowWindow (TWindow) 用のクラス定義
  16. */
  17.  
  18. #include <owl\owlpch.h>
  19. #pragma hdrstop
  20.  
  21. #include <owl\window.h>
  22.  
  23. #include "tch2vapp.rh"            // すべてのリソースの定義
  24.  
  25.  
  26. //{{TWindow = TShowWindow}}
  27. class TShowWindow : public TWindow {
  28. public:
  29.     TShowWindow (TWindow* parent, const char far* title = 0, TModule* module = 0);
  30.     virtual ~TShowWindow ();
  31.     void Redraw();
  32.  
  33. //{{TShowWindowVIRTUAL_BEGIN}}
  34. public:
  35.     virtual void Paint (TDC& dc, BOOL erase, TRect& rect);
  36. //{{TShowWindowVIRTUAL_END}}
  37. };    //{{TShowWindow}}
  38.  
  39.  
  40. #endif                                      // __tshwwndw_h の番兵
  41.  
  42.