Changeset 2766 for trunk/include
- Timestamp:
- Feb 12, 2000, 7:08:23 PM (26 years ago)
- Location:
- trunk/include/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r2738 r2766 1 /* $Id: commctrl.h,v 1.1 8 2000-02-10 18:47:35cbratschi Exp $ */1 /* $Id: commctrl.h,v 1.19 2000-02-12 18:08:22 cbratschi Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 1910 1910 #define TVS_CHECKBOXES 0x0100 1911 1911 #define TVS_TRACKSELECT 0x0200 1912 #define TVS_SINGLEEXPAND 1913 #define TVS_INFOTIP 1914 #define TVS_FULLROWSELECT 1915 #define TVS_NOSCROLL 1916 #define TVS_NONEVENHEIGHT 1917 #define TVS_NOHSCROLL 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 1918 1918 1919 1919 #define TVS_SHAREDIMAGELISTS 0x0000 -
trunk/include/win/treeview.h
r2738 r2766 1 /* $Id: treeview.h,v 1. 6 2000-02-10 18:47:36cbratschi Exp $ */1 /* $Id: treeview.h,v 1.7 2000-02-12 18:08:23 cbratschi Exp $ */ 2 2 /* 3 3 * Treeview class extra info … … 14 14 #define MINIMUM_INDENT 10 15 15 #define TV_DEFAULTITEMHEIGHT 16 16 #define TV_REFRESH_DELAY 100 /* 100 ms delay between two refreshes */ 16 17 #define TVITEM_ALLOC 16 /* default nr of items to allocate at first try */ 17 18 … … 41 42 RECT text; 42 43 RECT expandBox; /* expand box (+/-) coordinate */ 43 RECT 44 RECT bitmap; 44 45 RECT statebitmap; 46 BOOL calculated; 45 47 } TREEVIEW_ITEM; 46 48 … … 71 73 HTREEITEM dropItem; /* handle to item selected by drag cursor */ 72 74 HTREEITEM insertMarkItem; /* item after which insertion mark is placed */ 73 BOOL 75 BOOL insertBeforeorAfter; /* flag used by TVM_SETINSERTMARK */ 74 76 HIMAGELIST dragList; /* Bitmap of dragged item */ 75 77 INT cx,cy; /* current x/y place in list */ … … 98 100 #define TV_HSCROLL 0x01 /* treeview too large to fit in window */ 99 101 #define TV_VSCROLL 0x02 /* (horizontal/vertical) */ 100 #define TV_LDRAG 102 #define TV_LDRAG 0x04 /* Lbutton pushed to start drag */ 101 103 #define TV_LDRAGGING 0x08 /* Lbutton pushed, mouse moved. */ 102 #define TV_RDRAG 104 #define TV_RDRAG 0x10 /* dito Rbutton */ 103 105 #define TV_RDRAGGING 0x20 106 #define TV_NOREDRAW 0x40 107 #define TV_CALCALL 0x80 104 108 105 109 /* bitflags for infoPtr->timer */ 106 110 107 111 #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 109 116 110 117 -
trunk/include/win/winuser.h
r2694 r2766 1 /* $Id: winuser.h,v 1.3 2 2000-02-09 13:40:23 sandervlExp $ */1 /* $Id: winuser.h,v 1.33 2000-02-12 18:08:23 cbratschi Exp $ */ 2 2 3 3 #ifndef __INCLUDE_WINUSER_H … … 519 519 #define WM_COMPAREITEM 0x0039 520 520 #define WM_TESTING 0x003a 521 #define WM_GETOBJECT 0x003D 521 522 522 523 #define WM_OTHERWINDOWCREATED 0x003c … … 608 609 #define WM_MENUCHAR 0x0120 609 610 #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 610 618 611 619 #define WM_LBTRACKPOINT 0x0131 … … 631 639 #define WM_MBUTTONUP 0x0208 632 640 #define WM_MBUTTONDBLCLK 0x0209 641 #define WM_MOUSEWHEEL 0x020A 633 642 #define WM_MOUSEFIRST WM_MOUSEMOVE 634 #define WM_MOUSELAST WM_M BUTTONDBLCLK643 #define WM_MOUSELAST WM_MOUSEWHEEL 635 644 636 645 #define WM_PARENTNOTIFY 0x0210 … … 643 652 #define WM_CAPTURECHANGED 0x0215 644 653 #define WM_MOVING 0x0216 654 655 #define WM_POWERBROADCAST 0x0218 656 #define WM_DEVICECHANGE 0x0219 645 657 646 658 /* MDI messages */ … … 676 688 #define WM_IME_SELECT 0x0285 677 689 #define WM_IME_CHAR 0x0286 690 #define WM_IME_REQUEST 0x0288 678 691 #define WM_IME_KEYDOWN 0x0290 679 692 #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 680 698 681 699 #define WM_CUT 0x0300 … … 706 724 707 725 #define WM_AFXFIRST 0x0360 726 #define WM_FORWARDMSG 0x037F 708 727 #define WM_AFXLAST 0x037F 709 728
Note:
See TracChangeset
for help on using the changeset viewer.