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

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.  * TPRIV.H
  12.  *
  13.  * Data structures used internally by table class.
  14.  *
  15.  * Note: include after table.h
  16.  */
  17. #ifndef abs
  18. #define abs(x)  (((x) > 0)? (x) : -(x))
  19. #endif
  20. /*  one of these per visible line */
  21. typedef struct {
  22.         CellPos linepos;        /* posn and clipping info for line */
  23.         lpCellData pdata;       /* array of CellData structs for all cells */
  24. } LineData, FAR * lpLineData;
  25. /* master info struct pointed to by window extra bytes */
  26. typedef struct {
  27.         /* table info */
  28.         TableHdr        hdr;            /* main hdr info from owner */
  29.         lpColProps      pcolhdr;        /* ptr to array of phdr->ncols hdrs */
  30.         /* window info */
  31.         int     avewidth;       /* font ave width - for default cell sizing */
  32.         int     rowheight;      /* height of one row */
  33.         int     rowwidth;       /* total width of one row in pixels */
  34.         int     winwidth;       /* width of window */
  35.         int     nlines;         /* actual lines currently visible */
  36.         
  37.         lpCellPos pcellpos;     /* array of cell position structs */
  38.         /* scroll settings */
  39.         long    scrollscale;    /* scaling factor (force 16-bit range) */
  40.         long    toprow;         /* 0-based rownr of top moveable line */
  41.         int     scroll_dx;      /* horz scroll posn in pixels. */
  42.         /* column data */
  43.         lpLineData pdata;       /* ptr to array of nlines of LineData */
  44.         /* selection/dragging */
  45.         UINT    trackmode;      /* current mouse-tracking mode */
  46.         int     tracknr;        /* col or row being resized */
  47.         int     trackline1;     /* currently drawn track lines */
  48.         int     trackline2;
  49.         BOOL    selvisible;     /* used during mouse-down: T if sel drawn */
  50.         TableSelection select;
  51. } Table, FAR * lpTable;
  52. /* trackmode constants */
  53. #define TRACK_NONE              0
  54. #define TRACK_COLUMN            1
  55. #define TRACK_CELL              2
  56. /* private flags in CellData struct */
  57. #define CELL_VALID      1
  58. /* window extra bytes are used to hold the owner, heap and Table structs */
  59. #define WW_OWNER        0                               /* HWND of owner */
  60. #define WW_HEAP         (WW_OWNER + sizeof(HWND))       /* gmem heap */
  61. #define WL_TABLE        (WW_HEAP + sizeof(HANDLE))      /* lpTable */
  62. #define WLTOTAL         (WL_TABLE + sizeof(lpTable))    /* total extra bytes */
  63. /* ---------- global data -------------------*/
  64. extern HPEN hpenDotted;         /* in table.c */
  65. extern HANDLE hVertCurs;        /* in table.c */
  66. extern HANDLE hNormCurs;        /* in table.c */
  67. /*------function prototypes ---------------------------------------*/
  68. /* in table.c */
  69. void gtab_init(void);    /* called from DLL startup function */
  70. long gtab_sendtq(HWND hwnd, UINT cmd, long lParam);
  71. void gtab_invallines(HWND hwnd, lpTable ptab, int start, int count);
  72. void gtab_setsize(HWND hwnd, lpTable ptab);
  73. void gtab_calcwidths(HWND hwnd, lpTable ptab);
  74. void gtab_deltable(HWND hwnd, lpTable ptab);
  75. BOOL gtab_alloclinedata(HWND hwnd, HANDLE heap, lpTable ptab);
  76. /* in tpaint.c */
  77. void gtab_paint(HWND hwnd, HDC hdc, lpTable ptab, int line);
  78. void gtab_vsep(HWND hwnd, lpTable ptab, HDC hdc);
  79. void gtab_hsep(HWND hwnd, lpTable ptab, HDC hdc);
  80. void gtab_invertsel(HWND hwnd, lpTable ptab, HDC hdc_in);
  81. void gtab_drawvertline(HWND hwnd, lpTable ptab);
  82. /* in tscroll.c */
  83. void gtab_dovscroll(HWND hwnd, lpTable ptab, long change);
  84. void gtab_dohscroll(HWND hwnd, lpTable ptab, long change);
  85. long gtab_linetorow(HWND hwnd, lpTable ptab, int line);
  86. int gtab_rowtoline(HWND hwnd, lpTable ptab, long row);
  87. void gtab_msg_vscroll(HWND hwnd, lpTable ptab, int opcode, int pos);
  88. void gtab_msg_hscroll(HWND hwnd, lpTable ptab, int opcode, int pos);
  89. void gtab_select(HWND hwnd, lpTable ptab, long row, long col, long nrows,
  90.         long ncells, BOOL bNotify);
  91. void gtab_enter(HWND hwnd, lpTable ptab, long row, long col, long nrows,
  92.         long ncells);
  93. void gtab_press(HWND hwnd, lpTable ptab, int x, int y);
  94. void gtab_release(HWND hwnd, lpTable ptab, int x, int y);
  95. void gtab_move(HWND hwnd, lpTable ptab, int x, int y);
  96. void gtab_dblclick(HWND hwnd, lpTable ptab, int x, int y);
  97. void gtab_showsel(HWND hwnd, lpTable ptab, BOOL bToBottom);
  98. void gtab_showsel_middle(HWND hwnd, lpTable ptab);
  99. int gtab_key(HWND hwnd, lpTable ptab, int vkey);
  100. /* in tprint.c */
  101. void gtab_print(HWND hwnd, lpTable ptab, HANDLE heap, lpPrintContext pcontext);
  102. void gtab_boxcell(HWND hwnd, HDC hdc, LPRECT rcp, LPRECT pclip, UINT boxmode);