CHNGDIM.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright 1992 - 1997 Microsoft Corporation.
  5. //
  6. //  File:       chngdim.h
  7. //
  8. //  Contents:   definition for the Change Graph Dimension dialog box class
  9. //
  10. //  Classes:    CChangeDim
  11. //
  12. //  Functions:
  13. //
  14. //  History:    4-20-94   stevebl   Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef __CHNGDIM_H__
  18. #define __CHNGDIM_H__
  19. #include "cdialog.h"
  20. #include "fclass.h"
  21. #ifdef __cplusplus
  22. //+---------------------------------------------------------------------------
  23. //
  24. //  Class:      CChangeDim
  25. //
  26. //  Purpose:    implements the Change Graph Size dialog box
  27. //
  28. //  Interface:  CChangeDim    -- constructor
  29. //              DialogProc    -- dialog proc
  30. //              CheckButtons  -- updates the radio button state
  31. //
  32. //  History:    4-20-94   stevebl   Created
  33. //
  34. //----------------------------------------------------------------------------
  35. class CChangeDim: public CHlprDialog
  36. {
  37. public:
  38.     CChangeDim(CFractalWindow * pwf)
  39.     {
  40.         _pwf = pwf;
  41.     };
  42.     BOOL DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  43.     void CheckButtons(HWND hwndDlg, int iWidth, int iHeight);
  44. protected:
  45.     CFractalWindow * _pwf;
  46.     unsigned _uImageWidth, _uImageHeight;
  47. };
  48. #endif //__cplusplus
  49. #endif //__CHNGDIM_H__