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

Windows编程

开发平台:

Visual C++

  1. //==========================================================================;
  2. //
  3. //  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. //  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. //  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. //  PURPOSE.
  7. //
  8. //  Copyright (C) 1992 - 1997 Microsoft Corporation.  All Rights Reserved.
  9. //--------------------------------------------------------------------------;
  10. //
  11. //  tlb.h
  12. //
  13. //  Description:
  14. //      Contains function prototypes for the tabbed listbox functions in
  15. //      tlb.c.  Also contains Win16/Win32 portability definitions.
  16. //
  17. //
  18. //==========================================================================;
  19. #ifndef _INC_TLB
  20. #define _INC_TLB                    // #defined if file has been included
  21. #ifndef RC_INVOKED
  22. #pragma pack(1)                     // assume byte packing throughout
  23. #endif
  24. #ifndef EXTERN_C
  25. #ifdef __cplusplus
  26.     #define EXTERN_C extern "C"
  27. #else
  28.     #define EXTERN_C extern 
  29. #endif
  30. #endif
  31. #ifdef __cplusplus
  32. extern "C"                          // assume C declarations for C++
  33. {
  34. #endif
  35. #ifdef WIN32
  36.     //
  37.     //  for compiling Unicode
  38.     //
  39.     #ifndef SIZEOF
  40.     #ifdef UNICODE
  41.         #define SIZEOF(x)       (sizeof(x)/sizeof(WCHAR))
  42.     #else
  43.         #define SIZEOF(x)       sizeof(x)
  44.     #endif
  45.     #endif
  46. #else
  47.     //
  48.     //  stuff for Unicode in Win 32--make it a noop in Win 16
  49.     //
  50.     #ifndef TEXT
  51.     #define TEXT(a)             a
  52.     #endif
  53.     #ifndef SIZEOF
  54.     #define SIZEOF(x)           sizeof(x)
  55.     #endif
  56.     #ifndef _TCHAR_DEFINED
  57.         #define _TCHAR_DEFINED
  58.         typedef char            TCHAR, *PTCHAR;
  59.         typedef unsigned char   TBYTE, *PTUCHAR;
  60.         typedef PSTR            PTSTR, PTCH;
  61.         typedef LPSTR           LPTSTR, LPTCH;
  62.         typedef LPCSTR          LPCTSTR;
  63.     #endif
  64. #endif
  65. //
  66. //
  67. //
  68. //
  69. typedef struct tTABBEDLISTBOX
  70. {
  71.     HWND            hlb;
  72.     int             nFontHeight;
  73.     RECT            rc;
  74.     UINT            uTabStops;
  75.     PINT            panTabs;
  76.     PINT            panTitleTabs;
  77.     UINT            cchTitleText;
  78.     PTSTR           pszTitleText;
  79. } TABBEDLISTBOX, *PTABBEDLISTBOX;
  80. #define TLB_MAX_TAB_STOPS           20      // max number of columns
  81. #define TLB_MAX_TITLE_CHARS         512
  82. //
  83. //
  84. //
  85. //
  86. //
  87. BOOL FAR PASCAL TlbPaint
  88. (
  89.     PTABBEDLISTBOX          ptlb,
  90.     HWND                    hwnd,
  91.     HDC                     hdc
  92. );
  93. BOOL FAR PASCAL TlbMove
  94. (
  95.     PTABBEDLISTBOX          ptlb,
  96.     PRECT                   prc,
  97.     BOOL                    fRedraw
  98. );
  99. HFONT FAR PASCAL TlbSetFont
  100. (
  101.     PTABBEDLISTBOX          ptlb,
  102.     HFONT                   hfont,
  103.     BOOL                    fRedraw
  104. );
  105. BOOL FAR PASCAL TlbSetTitleAndTabs
  106. (
  107.     PTABBEDLISTBOX          ptlb,
  108.     PTSTR                   pszTitleFormat,
  109.     BOOL                    fRedraw
  110. );
  111. PTABBEDLISTBOX FAR PASCAL TlbDestroy
  112. (
  113.     PTABBEDLISTBOX          ptlb
  114. );
  115. PTABBEDLISTBOX FAR PASCAL TlbCreate
  116. (
  117.     HWND                    hwnd,
  118.     int                     nId,
  119.     PRECT                   prc
  120. );
  121. //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ; 
  122. //
  123. //
  124. //
  125. //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ; 
  126. #ifndef RC_INVOKED
  127. #pragma pack()                      // revert to default packing
  128. #endif
  129. #ifdef __cplusplus
  130. }                                   // end of extern "C" { 
  131. #endif
  132. #endif // _INC_TLB