Ignore:
Timestamp:
Mar 18, 2000, 5:10:57 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/rebar.h

    r2121 r3152  
    1 /* $Id: rebar.h,v 1.3 1999-12-18 19:52:26 achimha Exp $ */
     1/* $Id: rebar.h,v 1.4 2000-03-18 16:10:55 cbratschi Exp $ */
    22
    33/*
     
    1212typedef struct tagREBAR_BAND
    1313{
     14    COMCTL32_HEADER header;
     15
    1416    UINT    fStyle;
    1517    COLORREF  clrFore;
     
    2628    UINT    cyIntegral;
    2729    UINT    cxIdeal;
    28     LPARAM    lParam;
     30    LPARAM  lParam;
    2931    UINT    cxHeader;
    3032
     
    3739    RECT    rcChild;        /* calculated child rectangle */
    3840
    39     LPWSTR    lpText;
     41    LPWSTR  lpText;
    4042    HWND    hwndPrevParent;
    4143} REBAR_BAND;
     
    4345typedef struct tagREBAR_INFO
    4446{
     47    COMCTL32_HEADER header;
     48
    4549    COLORREF   clrBk;       /* background color */
    4650    COLORREF   clrText;     /* text color */
     
    4852    UINT     uNumBands;   /* number of bands in the rebar */
    4953    HWND     hwndToolTip; /* handle to the tool tip control */
    50     HWND     hwndNotify;  /* notification window (parent) */
    5154    HFONT    hFont;       /* handle to the rebar's font */
    5255    SIZE     imageSize;   /* image size (image list) */
     
    5457    SIZE     calcSize;    /* calculated rebar size */
    5558    BOOL     bAutoResize; /* auto resize deadlock flag */
    56     BOOL     bUnicode;    /* Unicode flag */
    5759    HCURSOR  hcurArrow;   /* handle to the arrow cursor */
    5860    HCURSOR  hcurHorz;    /* handle to the EW cursor */
    5961    HCURSOR  hcurVert;    /* handle to the NS cursor */
    6062    HCURSOR  hcurDrag;    /* handle to the drag cursor */
    61     INT      iVersion;    /* version number */
    6263
    6364    REBAR_BAND *bands;      /* pointer to the array of rebar bands */
    64 
    6565} REBAR_INFO;
    6666
Note: See TracChangeset for help on using the changeset viewer.