Changeset 2779 for trunk/include
- Timestamp:
- Feb 14, 2000, 6:28:45 PM (26 years ago)
- Location:
- trunk/include/win
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/combo.h
r388 r2779 1 /* $Id: combo.h,v 1. 3 1999-07-24 17:55:08 sandervlExp $ */1 /* $Id: combo.h,v 1.4 2000-02-14 17:27:54 cbratschi Exp $ */ 2 2 3 3 /* … … 30 30 #define CBF_SELCHANGE 0x0400 31 31 #define CBF_NOEDITNOTIFY 0x1000 32 #define CBF_NOLBSELECT 0x2000 /* do not change current selection */ 32 33 #define CBF_EUI 0x8000 33 34 -
trunk/include/win/commctrl.h
r2766 r2779 1 /* $Id: commctrl.h,v 1. 19 2000-02-12 18:08:22cbratschi Exp $ */1 /* $Id: commctrl.h,v 1.20 2000-02-14 17:27:54 cbratschi Exp $ */ 2 2 /* 3 3 * Common controls definitions … … 2730 2730 #define ListView_EnsureVisible(hwnd,i,fPartialOk) \ 2731 2731 (BOOL)SendMessageA((hwnd),LVM_ENSUREVISIBLE,(WPARAM)(INT)i,(LPARAM)(BOOL)fPartialOk) 2732 #define ListView_EditLabel(hwnd,i) \ 2733 (HWND)SendMessageA((hwnd),LVM_EDITLABELA,(WPARAM)(INT)i,0L) 2732 2734 #define ListView_SetBkColor(hwnd,clrBk) \ 2733 2735 (BOOL)SendMessageA((hwnd),LVM_SETBKCOLOR,0,(LPARAM)(COLORREF)(clrBk)) -
trunk/include/win/listview.h
r1774 r2779 8 8 #define __WINE_LISTVIEW_H 9 9 10 #include "commctrl.h" 11 #include "windef.h" 12 #include "wingdi.h" 13 14 /* Some definitions for inline edit control */ 10 /* Some definitions for inline edit control */ 15 11 typedef BOOL (*EditlblCallback)(HWND, LPSTR, DWORD); 16 12 … … 72 68 LPARAM lParamSort; 73 69 HWND hwndEdit; 70 BOOL bDoEditLabel; 74 71 EDITLABEL_ITEM *pedititem; 75 72 76 73 } LISTVIEW_INFO; 77 74 -
trunk/include/win/treeview.h
r2766 r2779 1 /* $Id: treeview.h,v 1. 7 2000-02-12 18:08:23cbratschi Exp $ */1 /* $Id: treeview.h,v 1.8 2000-02-14 17:27:55 cbratschi Exp $ */ 2 2 /* 3 3 * Treeview class extra info … … 10 10 #define __WINE_TREEVIEW_H 11 11 12 #include "commctrl.h" 13 14 #define MINIMUM_INDENT 10 15 #define TV_DEFAULTITEMHEIGHT 16 16 #define TV_REFRESH_DELAY 100 /* 100 ms delay between two refreshes */ 17 #define TVITEM_ALLOC 16 /* default nr of items to allocate at first try */ 12 #define MINIMUM_INDENT 10 13 #define TV_REFRESH_DELAY 100 /* 100 ms delay between two refreshes */ 14 #define TV_DEFAULTITEMHEIGHT 16 15 #define TVITEM_ALLOC 32 /* default nr of items to allocate at first try */ 18 16 19 17 20 18 /* internal structures */ 21 19 22 typedef struct { 20 typedef struct 21 { 23 22 UINT mask; 24 23 HTREEITEM hItem; … … 45 44 RECT statebitmap; 46 45 BOOL calculated; 47 } TREEVIEW_ITEM; 48 46 } TREEVIEW_ITEM, *LPTREEVIEW_ITEM; 49 47 50 48 typedef struct tagTREEVIEW_INFO … … 67 65 UINT uIndent; /* indentation in pixels */ 68 66 HTREEITEM selectedItem; /* handle to selected item or 0 if none */ 69 HTREEITEM focusItem; /* handle to item that has focus, 0 if none */70 67 HTREEITEM hotItem; /* handle currently under cursor, 0 if none */ 71 68 HTREEITEM editItem; /* handle to item currently editted, 0 if none */ … … 92 89 /* 1=valid, 0=free; */ 93 90 /* size of list= uNumPtrsAlloced/32 */ 94 } TREEVIEW_INFO; 95 96 91 } TREEVIEW_INFO, *LPTREEVIEW_INFO; 97 92 98 93 /* bitflags for infoPtr->uInternalStatus */ … … 109 104 /* bitflags for infoPtr->timer */ 110 105 111 #define TV_EDIT_TIMER 1 112 #define TV_REFRESH_TIMER 2 113 114 #define TV_EDIT_TIMER_SET 1 115 #define TV_REFRESH_TIMER_SET 2 106 #define TV_REFRESH_TIMER 1 107 #define TV_EDIT_TIMER 2 108 #define TV_REFRESH_TIMER_SET 1 109 #define TV_EDIT_TIMER_SET 2 116 110 117 111 -
trunk/include/win/winuser.h
r2766 r2779 1 /* $Id: winuser.h,v 1.3 3 2000-02-12 18:08:23cbratschi Exp $ */1 /* $Id: winuser.h,v 1.34 2000-02-14 17:27:55 cbratschi Exp $ */ 2 2 3 3 #ifndef __INCLUDE_WINUSER_H … … 642 642 #define WM_MOUSEFIRST WM_MOUSEMOVE 643 643 #define WM_MOUSELAST WM_MOUSEWHEEL 644 645 #define WHEEL_DELTA 120 646 #define WHEEL_PAGESCROLL (UINT_MAX) 644 647 645 648 #define WM_PARENTNOTIFY 0x0210
Note:
See TracChangeset
for help on using the changeset viewer.