Changeset 2766 for trunk/include/win/treeview.h
- Timestamp:
- Feb 12, 2000, 7:08:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.