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

Windows编程

开发平台:

Visual C++

  1. /******************************************************************************
  2. *       This is a part of the Microsoft Source Code Samples. 
  3. *       Copyright (C) 1993-1997 Microsoft Corporation.
  4. *       All rights reserved. 
  5. *       This source code is only intended as a supplement to 
  6. *       Microsoft Development Tools and/or WinHelp documentation.
  7. *       See these sources for detailed information regarding the 
  8. *       Microsoft samples programs.
  9. ******************************************************************************/
  10. /*
  11.  * GUTILS.H
  12.  */
  13. /* win32 msg crackers */
  14. #define GET_WM_COMMAND_ID(w, l) (LOWORD(w))
  15. #define GET_WM_COMMAND_CMD(w, l) (HIWORD(w))
  16. #define GET_WM_COMMAND_HWND(w, l) (l)
  17. #define GET_SCROLL_OPCODE(w, l)     (LOWORD(w))
  18. #define GET_SCROLL_POS(w, l)        (HIWORD(w))
  19. /* ------- memory allocator ------------------------------------------*/
  20. HANDLE APIENTRY gmem_init(void);
  21. LPSTR APIENTRY gmem_get(HANDLE hHeap, int len);
  22. void APIENTRY gmem_free(HANDLE hHeap, LPSTR ptr, int len);
  23. void APIENTRY gmem_freeall(HANDLE hHeap);
  24. /* --------- date conversion functions    -----------------------*/
  25. void APIENTRY gdate_daytodmy(LONG days,
  26.         int FAR* yrp, int FAR* monthp, int FAR* dayp);
  27. LONG APIENTRY gdate_dmytoday(int yr, int month, int day);
  28. int APIENTRY gdate_monthdays(int month, int year);
  29. int APIENTRY gdate_weekday(long daynr);
  30. /* --- status line window class ---------------------------------- */
  31. /* The status line is a bar across the top or bottom of the window.
  32.  * It can hold a number of fields which can be either static text
  33.  * or buttons.  The so called "static" text can be changed at any time.
  34.  * The fields can be left or right aligned (default is RIGHT).
  35.  * If the text is marked as VAR then the screen real estate allocated
  36.  * for it will be adjusted whenever the text changes.  VAR fields
  37.  * can be given minimum or maximum sizes (but not both).
  38.  *
  39.  * STATIC text fields can be drawn as raised or lowered rectangles (using
  40.  * shades of grey), or (default) without a border. BUTTON fields will
  41.  * always be drawn as raised rectangles, and will lower when pressed.
  42.  *
  43.  * Button fields will send WM_COMMAND messages when clicked including the
  44.  * field id and the WM_LBUTTONUP notification code. Note that that this
  45.  * is not a full implementation of the button class, and no other messages
  46.  * will be sent. In general, none of the fields of a status bar are
  47.  * implemented as separate windows, so GetDlgItem() and similar calls will not
  48.  * work. Buttons only respond to mouse down events, and there is no handling
  49.  * of the focus or of keyboard events.
  50.  *
  51.  * To use:
  52.  *    call StatusAlloc giving the number of items you are going to add to the
  53.  *    status bar. This returns a handle to use in subsequent calls.
  54.  *
  55.  *    Then call StatusAddItem to define each item in turn.
  56.  *    Buttons are placed in order of definition along the bar starting from
  57.  *    the left (SF_LEFT) and from the right (SF_RIGHT) until the two
  58.  *    sides meet.
  59.  *
  60.  *    Call StatusHeight to find the expected height of this status bar, and
  61.  *    set its position within the parent window, then call StatusCreate to
  62.  *    create the window.
  63.  *
  64.  * Having created the window, send SM_SETTEXT messages to set the new
  65.  * text of a field (static or button), or SM_NEW with a handle (obtained from
  66.  * StatusAlloc) to change the contents of the status line.
  67.  */
  68. /* values for type argument to StatusAddItem */
  69. #define SF_BUTTON       1
  70. #define SF_STATIC       2
  71. /* bits in flags argument to StatusAddItem */
  72. #define SF_RAISE        1       /* paint static as raised 3D rectangle */
  73. #define SF_LOWER        2       /* paint static as lowered 3D rectangle */
  74. #define SF_LEFT         4       /* align field on left of status bar */
  75. #define SF_RIGHT        8       /* align field on right (DEFAULT) */
  76. #define SF_VAR          0x10    /* size of field depends on actual text extent*/
  77. #define SF_SZMAX        0x20    /* (with SF_VAR): width argument is maximum */
  78. #define SF_SZMIN        0x40    /* (with SF_VAR) width arg is minimum size */
  79. HWND APIENTRY StatusCreate(HANDLE hInst, HWND hParent, int id,
  80.                 LPRECT rcp, HANDLE hmem);
  81. int APIENTRY StatusHeight(HANDLE hmem);
  82. HANDLE APIENTRY StatusAlloc(int nitems);
  83. BOOL APIENTRY StatusAddItem(HANDLE hmem, int itemnr, int type, int flags,
  84.         int id, int width, LPSTR text);
  85. /* send these window messages to the class */
  86. #define SM_NEW          (WM_USER+1)     /* wParam handle for new status line */
  87. #define SM_SETTEXT      (WM_USER+2)     /* wparam: item id, lparam new label*/
  88. void APIENTRY gbit_init(DWORD FAR * map, long nblks);
  89. BOOL APIENTRY gbit_alloc(DWORD FAR * map, long blknr, long nblks);
  90. BOOL APIENTRY gbit_free(DWORD FAR * map, long blknr, long nblks);
  91. long APIENTRY gbit_findfree(DWORD FAR* map, long nblks,
  92.                 long mapsize, long FAR * blknr);
  93. /* ----- buffered line input ----------------------------------*/
  94.  /* handle to a file buffer */
  95. typedef struct filebuffer * FILEBUFFER;
  96. FILEBUFFER APIENTRY readfile_new(int fh);
  97. LPSTR APIENTRY readfile_next(FILEBUFFER fb, int FAR * plen);
  98. void APIENTRY readfile_delete(FILEBUFFER fb);
  99. LPTSTR APIENTRY LoadRcString(UINT);
  100. LPTSTR APIENTRY LoadRcString2(UINT);
  101. /* ------ hashing  ------------------------------------------- */
  102. DWORD APIENTRY hash_string(LPSTR string, BOOL bIgnoreBlanks);
  103. BOOL APIENTRY utils_isblank(LPSTR string);
  104. int APIENTRY utils_CompPath(LPSTR left, LPSTR right);
  105. /* --- simple input ------------------------------------------------------*/
  106. int APIENTRY StringInput(LPSTR result, int resultsize, LPSTR prompt,
  107.                          LPSTR caption, LPSTR def_input);
  108. // DBCS friendly versions of string library functions
  109. // These are for both WINDIFF.EXE and GUTILS.DLL.
  110. #define strchr          My_mbschr
  111. #define Old_strncpy strncpy
  112. #define strncpy         My_mbsncpy
  113. unsigned char * _CRTAPI1 My_mbschr(unsigned char *, unsigned short);
  114. unsigned char * _CRTAPI1 My_mbsncpy(
  115.                 unsigned char *, const unsigned char *, size_t);
  116. // These are for WINDIFF.EXE.
  117. #define strrchr         My_mbsrchr
  118. #define strncmp         My_mbsncmp
  119. unsigned char * _CRTAPI1 My_mbsrchr(unsigned char *, unsigned short);
  120. int _CRTAPI1 My_mbsncmp(const unsigned char *, const unsigned char *, size_t);