Changeset 2766 for trunk/include


Ignore:
Timestamp:
Feb 12, 2000, 7:08:23 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

Location:
trunk/include/win
Files:
3 edited

Legend:

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

    r2738 r2766  
    1 /* $Id: commctrl.h,v 1.18 2000-02-10 18:47:35 cbratschi Exp $ */
     1/* $Id: commctrl.h,v 1.19 2000-02-12 18:08:22 cbratschi Exp $ */
    22/*
    33 * Common controls definitions
     
    19101910#define TVS_CHECKBOXES        0x0100
    19111911#define TVS_TRACKSELECT       0x0200
    1912 #define TVS_SINGLEEXPAND          0x0400
    1913 #define TVS_INFOTIP               0x0800
    1914 #define TVS_FULLROWSELECT         0x1000
    1915 #define TVS_NOSCROLL              0x2000
    1916 #define TVS_NONEVENHEIGHT         0x4000
    1917 #define TVS_NOHSCROLL             0x8000
     1912#define TVS_SINGLEEXPAND      0x0400
     1913#define TVS_INFOTIP           0x0800
     1914#define TVS_FULLROWSELECT     0x1000
     1915#define TVS_NOSCROLL          0x2000
     1916#define TVS_NONEVENHEIGHT     0x4000
     1917#define TVS_NOHSCROLL         0x8000
    19181918
    19191919#define TVS_SHAREDIMAGELISTS  0x0000
  • trunk/include/win/treeview.h

    r2738 r2766  
    1 /* $Id: treeview.h,v 1.6 2000-02-10 18:47:36 cbratschi Exp $ */
     1/* $Id: treeview.h,v 1.7 2000-02-12 18:08:23 cbratschi Exp $ */
    22/*
    33 * Treeview class extra info
     
    1414#define MINIMUM_INDENT 10
    1515#define TV_DEFAULTITEMHEIGHT 16
     16#define TV_REFRESH_DELAY 100     /* 100 ms delay between two refreshes */
    1617#define TVITEM_ALLOC    16      /* default nr of items to allocate at first try */
    1718
     
    4142  RECT      text;
    4243  RECT      expandBox;      /* expand box (+/-) coordinate */
    43   RECT          bitmap;
     44  RECT      bitmap;
    4445  RECT      statebitmap;
     46  BOOL      calculated;
    4547} TREEVIEW_ITEM;
    4648
     
    7173  HTREEITEM     dropItem;       /* handle to item selected by drag cursor */
    7274  HTREEITEM     insertMarkItem; /* item after which insertion mark is placed */
    73   BOOL                  insertBeforeorAfter; /* flag used by TVM_SETINSERTMARK */
     75  BOOL          insertBeforeorAfter; /* flag used by TVM_SETINSERTMARK */
    7476  HIMAGELIST    dragList;       /* Bitmap of dragged item */
    7577  INT           cx,cy;          /* current x/y place in list */
     
    98100#define TV_HSCROLL      0x01    /* treeview too large to fit in window */
    99101#define TV_VSCROLL      0x02    /* (horizontal/vertical) */
    100 #define TV_LDRAG                0x04    /* Lbutton pushed to start drag */
     102#define TV_LDRAG        0x04    /* Lbutton pushed to start drag */
    101103#define TV_LDRAGGING    0x08    /* Lbutton pushed, mouse moved.  */
    102 #define TV_RDRAG                0x10    /* dito Rbutton */
     104#define TV_RDRAG        0x10    /* dito Rbutton */
    103105#define TV_RDRAGGING    0x20
     106#define TV_NOREDRAW     0x40
     107#define TV_CALCALL      0x80
    104108
    105109/* bitflags for infoPtr->timer */
    106110
    107111#define TV_EDIT_TIMER    1
    108 #define TV_EDIT_TIMER_SET 1
     112#define TV_REFRESH_TIMER 2
     113
     114#define TV_EDIT_TIMER_SET    1
     115#define TV_REFRESH_TIMER_SET 2
    109116
    110117
  • trunk/include/win/winuser.h

    r2694 r2766  
    1 /* $Id: winuser.h,v 1.32 2000-02-09 13:40:23 sandervl Exp $ */
     1/* $Id: winuser.h,v 1.33 2000-02-12 18:08:23 cbratschi Exp $ */
    22
    33#ifndef __INCLUDE_WINUSER_H
     
    519519#define WM_COMPAREITEM          0x0039
    520520#define WM_TESTING              0x003a
     521#define WM_GETOBJECT            0x003D
    521522
    522523#define WM_OTHERWINDOWCREATED   0x003c
     
    608609#define WM_MENUCHAR         0x0120
    609610#define WM_ENTERIDLE        0x0121
     611#define WM_MENURBUTTONUP    0x0122
     612#define WM_MENUDRAG         0x0123
     613#define WM_MENUGETOBJECT    0x0124
     614#define WM_UNINITMENUPOPUP  0x0125
     615#define WM_MENUCOMMAND      0x0126
     616
     617#define WM_KEYBOARDCUES     0x0127
    610618
    611619#define WM_LBTRACKPOINT     0x0131
     
    631639#define WM_MBUTTONUP        0x0208
    632640#define WM_MBUTTONDBLCLK    0x0209
     641#define WM_MOUSEWHEEL       0x020A
    633642#define WM_MOUSEFIRST       WM_MOUSEMOVE
    634 #define WM_MOUSELAST        WM_MBUTTONDBLCLK
     643#define WM_MOUSELAST        WM_MOUSEWHEEL
    635644
    636645#define WM_PARENTNOTIFY     0x0210
     
    643652#define WM_CAPTURECHANGED   0x0215
    644653#define WM_MOVING           0x0216
     654
     655#define WM_POWERBROADCAST   0x0218
     656#define WM_DEVICECHANGE     0x0219
    645657
    646658  /* MDI messages */
     
    676688#define WM_IME_SELECT                   0x0285
    677689#define WM_IME_CHAR                     0x0286
     690#define WM_IME_REQUEST                  0x0288
    678691#define WM_IME_KEYDOWN                  0x0290
    679692#define WM_IME_KEYUP                    0x0291
     693
     694#define WM_MOUSEHOVER        0x02A1
     695#define WM_MOUSELEAVE        0x02A3
     696#define WM_NCMOUSEHOVER      0x02A0
     697#define WM_NCMOUSELEAVE      0x02A2
    680698
    681699#define WM_CUT               0x0300
     
    706724
    707725#define WM_AFXFIRST          0x0360
     726#define WM_FORWARDMSG        0x037F
    708727#define WM_AFXLAST           0x037F
    709728
Note: See TracChangeset for help on using the changeset viewer.