Changeset 3152


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

* empty log message *

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/changelog

    r3151 r3152  
    1  /* $Id: changelog,v 1.815 2000-03-18 15:14:29 sandervl Exp $ */
     1 /* $Id: changelog,v 1.816 2000-03-18 16:10:02 cbratschi Exp $ */
     2
     3 2000-03-18: Christoph Bratschi <cbratschi@datacomm.ch>
     4        - USER32: merged with Corel WINE 20000317
     5                  added GCL_HICONSM support
     6                  fixed messagebox with no icon
     7        - COMCTL32: merged with Corel WINE 20000317 + bug fixes
    28
    39 2000-03-18: Sander van Leeuwen <sandervl@xs4all.nl>
  • TabularUnified trunk/include/win/listview.h

    r2894 r3152  
    7373    EDITLABEL_ITEM *pedititem;
    7474
     75    WPARAM charCode;
     76    CHAR szSearchParam[ MAX_PATH ];
     77    DWORD timeSinceLastKeyPress;
     78    INT nSearchParamLength;
    7579} LISTVIEW_INFO;
    7680
  • TabularUnified 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
  • TabularUnified trunk/include/win/status.h

    r4 r3152  
    1 /* $Id: status.h,v 1.1 1999-05-24 20:19:19 ktk Exp $ */
     1/* $Id: status.h,v 1.2 2000-03-18 16:10:55 cbratschi Exp $ */
    22
    33/*
     
    1212typedef struct
    1313{
    14     INT x;
    15     INT style;
    16     RECT        bound;
    17     LPWSTR      text;
    18     HICON     hIcon;
     14    INT    x;
     15    INT    style;
     16    RECT   bound;
     17    LPWSTR text;
     18    HICON  hIcon;
    1919} STATUSWINDOWPART;
    2020
    2121typedef struct
    2222{
    23     UINT16              numParts;
    24     UINT16              textHeight;
     23    COMCTL32_HEADER header;
     24
     25    UINT              numParts;
     26    UINT              textHeight;
    2527    UINT              height;
    2628    BOOL              simple;
     
    2830    HFONT             hFont;
    2931    HFONT             hDefaultFont;
    30     COLORREF            clrBk;     /* background color */
    31     BOOL              bUnicode;  /* unicode flag */
    32     STATUSWINDOWPART    part0;     /* simple window */
    33     STATUSWINDOWPART   *parts;
     32    COLORREF          clrBk;     /* background color */
     33    STATUSWINDOWPART  part0;     /* simple window */
     34    STATUSWINDOWPART *parts;
    3435} STATUSWINDOWINFO;
    3536
  • TabularUnified trunk/include/win/tab.h

    r265 r3152  
    1 /* $Id: tab.h,v 1.2 1999-07-04 19:03:36 sandervl Exp $ */
     1/* $Id: tab.h,v 1.3 2000-03-18 16:10:56 cbratschi Exp $ */
    22
    33/*
     
    2626typedef struct tagTAB_INFO
    2727{
     28  COMCTL32_HEADER header;
     29
    2830  UINT       uNumItem;        /* number of tab items */
    2931  INT        tabHeight;       /* height of the tab row */
  • TabularUnified trunk/include/win/toolbar.h

    r2125 r3152  
    1 /* $Id: toolbar.h,v 1.5 1999-12-18 20:52:07 achimha Exp $ */
     1/* $Id: toolbar.h,v 1.6 2000-03-18 16:10:56 cbratschi Exp $ */
    22
    33/*
     
    3535typedef struct tagTOOLBAR_INFO
    3636{
    37     DWORD      dwStructSize;   /* size of TBBUTTON struct */
     37    COMCTL32_HEADER header;
     38
     39    DWORD    dwStructSize;   /* size of TBBUTTON struct */
    3840    INT      nHeight;        /* height of the toolbar */
    3941    INT      nWidth;         /* width of the toolbar */
     
    5052    INT      nNumBitmaps;     /* number of bitmaps */
    5153    INT      nNumStrings;     /* number of strings */
    52     BOOL     bUnicode;        /* ASCII (FALSE) or Unicode (TRUE)? */
    5354    BOOL     bCaptured;       /* mouse captured? */
    5455    INT      nButtonDown;
     
    6162    HIMAGELIST himlDis;         /* disabled image list */
    6263    HWND     hwndToolTip;     /* handle to tool tip control */
    63     HWND     hwndNotify;      /* handle to the window that gets notifications */
    6464    BOOL     bTransparent;    /* background transparency flag */
    6565    BOOL     bAutoSize;       /* auto size deadlock indicator */
    6666    BOOL     bAnchor;         /* anchor highlight enabled */
    67     DWORD      dwExStyle;       /* extended toolbar style */
    68     DWORD      dwDTFlags;       /* DrawText flags */
     67    DWORD    dwExStyle;       /* extended toolbar style */
     68    DWORD    dwDTFlags;       /* DrawText flags */
    6969
    70     COLORREF   clrInsertMark;   /* insert mark color */
     70    COLORREF clrInsertMark;   /* insert mark color */
    7171    RECT     rcBound;         /* bounding rectangle */
    72     INT      iVersion;
    7372
    7473    TBUTTON_INFO *buttons;      /* pointer to button array */
    7574    LPWSTR       *strings;      /* pointer to string array */
     75
    7676    //Customize dialog
    7777    HWND          hwndToolbar;
     
    7979    INT           nNumOldButtons;
    8080    INT           nMaxCustomID;
     81    BOOL          changed;
    8182} TOOLBAR_INFO;
    8283
  • TabularUnified trunk/include/win/tooltips.h

    r3143 r3152  
    1 /* $Id: tooltips.h,v 1.2 2000-03-17 17:10:53 cbratschi Exp $ */
     1/* $Id: tooltips.h,v 1.3 2000-03-18 16:10:57 cbratschi Exp $ */
    22
    33/*
     
    3333typedef struct tagTOOLTIPS_INFO
    3434{
    35     WCHAR      szTipText[INFOTIPSIZE];
     35    COMCTL32_HEADER header;
     36
     37    WCHAR    szTipText[INFOTIPSIZE];
    3638    BOOL     bActive;
    3739    BOOL     bTrackActive;
    3840    UINT     uNumTools;
    39     COLORREF   clrBk;
    40     COLORREF   clrText;
     41    COLORREF clrBk;
     42    COLORREF clrText;
    4143    HFONT    hFont;
    4244    INT      xTrackPos;
  • TabularUnified trunk/include/win/trackbar.h

    r3143 r3152  
    1 /* $Id: trackbar.h,v 1.4 2000-03-17 17:10:53 cbratschi Exp $ */
     1/* $Id: trackbar.h,v 1.5 2000-03-18 16:10:57 cbratschi Exp $ */
    22
    33/*
     
    4141} TRACKBAR_INFO;
    4242
    43 
    4443#define TB_REFRESH_TIMER       1
    4544#define TB_REFRESH_DELAY       1
    46 
    47 
    4845
    4946extern VOID TRACKBAR_Register (VOID);
  • TabularUnified trunk/include/win/updown.h

    r499 r3152  
    1 /* $Id: updown.h,v 1.2 1999-08-14 17:23:24 achimha Exp $ */
     1/* $Id: updown.h,v 1.3 2000-03-18 16:10:57 cbratschi Exp $ */
    22
    33/*
     
    1717typedef struct
    1818{
     19  COMCTL32_HEADER header;
     20
    1921  UINT      AccelCount;   /* Number of elements in AccelVect */
    20   UDACCEL*    AccelVect;    /* Vector containing AccelCount elements */
     22  UDACCEL*  AccelVect;    /* Vector containing AccelCount elements */
    2123  INT       Base;         /* Base to display nr in the buddy window */
    2224  INT       CurVal;       /* Current up-down value */
Note: See TracChangeset for help on using the changeset viewer.