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

Windows编程

开发平台:

Visual C++

  1. /****************************************************************************
  2. *  
  3. *     FILE:     IconPro.H
  4. *
  5. *     PURPOSE:  IconPro Project main header file
  6. *
  7. *     COMMENTS: The child window size is determined here, based on the
  8. *               hard coded maximum sizes of icons supported. Only one
  9. *               function is exported from IconPro.C, and it is exported
  10. *               to allow MDI child windows to query for a save file name
  11. *               if they are asked to close and their data has changed.
  12. *
  13. *     Copyright 1995 - 1997 Microsoft Corp.
  14. *
  15. *
  16. * History:
  17. *                July '95 - Created
  18. *
  19. ****************************************************************************/
  20. /****************************************************************************/
  21. // local #defines
  22. // How large of icons will we support? This is really only important
  23. // bacuase of the design of the UI. It needs to draw the entire icon
  24. // 4 times, so we limit how big one can be. The ICO spec puts no limit
  25. // on icon sizes.
  26. #define MAX_ICON_WIDTH 128              // Max width
  27. #define MIN_ICON_WIDTH 16               // Min width
  28. #define MAX_ICON_HEIGHT MAX_ICON_WIDTH   // Max height
  29. #define MIN_ICON_HEIGHT MIN_ICON_WIDTH   // Min height
  30. // How big do the MDI child windows need to be to display the icon and
  31. // the listbox?
  32. #define WINDOW_WIDTH ( ( MAX_ICON_WIDTH * 2 ) + 30 )
  33. #define WINDOW_HEIGHT ( ( MAX_ICON_HEIGHT * 2 ) + 150 )
  34. // Utility macro to calculate a rectangle's width/height
  35. #define RectWidth(r) ((r).right - (r).left + 1)
  36. #define RectHeight(r) ((r).bottom - (r).top + 1)
  37. /****************************************************************************/
  38. /****************************************************************************/
  39. // Exported function prototypes
  40. BOOL GetSaveIconFileName( LPTSTR szFileName, UINT FilterStringID, LPCTSTR szTitle );
  41. BOOL GetOpenIconFileName( LPTSTR szFileName, UINT FilterStringID, LPCTSTR szTitle );
  42. /****************************************************************************/