Changeset 29 for trunk/include/helpers/comctl.h
- Timestamp:
- Jan 22, 2001, 8:28:54 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/comctl.h
r21 r29 441 441 // #define TTF_IDISHWND 0x0001 442 442 // V0.9.7 (2001-01-03) [umoeller]: removed this win95 crap 443 #define TTF_CENTERBELOW 0x0002444 #define TTF_CENTERABOVE 0x0004443 // #define TTF_CENTERBELOW 0x0002 444 // #define TTF_CENTERABOVE 0x0004 445 445 // #define TTF_RTLREADING 0x0004 446 446 // V0.9.7 (2001-01-03) [umoeller]: removed this win95 crap 447 447 448 #define TTF_SUBCLASS 0x0008 448 449 // non-Win95 flags 449 450 #define TTF_SHYMOUSE 0x0010 451 452 // new flags with V0.9.7 (2001-01-20) [umoeller] 453 #define TTF_CENTER_X_ON_TOOL 0x0020 454 #define TTF_POS_Y_ABOVE_TOOL 0x0040 455 #define TTF_POS_Y_BELOW_TOOL 0x0080 450 456 451 457 #define PSZ_TEXTCALLBACK (PSZ)-1 … … 467 473 ULONG ulFlags; 468 474 // in: flags for the tool, any combination of: 469 // -- TTF_CENTERBELOW: centers the tooltip window below the470 // tool specified by the hwndTool member.471 // -- TTF_CENTERABOVE: centers the tooltip window above the472 // tool specified by the hwndTool member.473 475 // -- TTF_SUBCLASS: Indicates that the tooltip control should 474 476 // subclass hwndTool to intercept messages, 475 477 // such as WM_MOUSEMOVE. See TTM_RELAYEVENT. 476 // -- TTF_SHYMOUSE (OS/2 only): shy away from mouse pointer;478 // -- TTF_SHYMOUSE: shy away from mouse pointer; 477 479 // always position the tool tip such that it is never 478 480 // covered by the mouse pointer (for readability); 479 481 // added V0.9.1 (2000-02-04) [umoeller] 482 // -- TTF_CENTER_X_ON_TOOL: position tooltip X so that 483 // it's centered on the tool (doesn't affect Y) 484 // -- TTF_POS_Y_ABOVE_TOOL: position tooltip Y above 485 // the tool; cannot be used with TTF_POS_Y_BELOW_TOOL 486 // -- TTF_POS_Y_BELOW_TOOL: position tooltip Y below 487 // the tool; cannot be used with TTF_POS_Y_ABOVE_TOOL 480 488 HWND hwndToolOwner; 481 489 // in: handle to the window that contains the tool. If
Note:
See TracChangeset
for help on using the changeset viewer.