Changeset 65 for trunk/include/helpers/comctl.h
- Timestamp:
- Apr 29, 2001, 2:10:31 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/comctl.h
r52 r65 486 486 HWND hwndToolOwner; 487 487 // in: handle to the window that contains the tool. If 488 // lpszText includes the PSZ_TEXTCALLBACK value, this488 // pszText includes the PSZ_TEXTCALLBACK value, this 489 489 // member identifies the window that receives TTN_NEEDTEXT 490 490 // notification messages. 491 491 HWND hwndTool; 492 492 // in: window handle of the tool. 493 // ### simple rectangles of hwndToolOwner not yet supported494 493 PSZ pszText; 495 494 // in: pointer to the buffer that contains the text for the … … 501 500 } TOOLINFO, *PTOOLINFO; 502 501 502 /* 503 * tooltip messages 504 * 505 */ 506 503 507 #define TTM_FIRST (WM_USER + 1000) 504 508 … … 519 523 #define TTDT_RESHOW 4 520 524 521 #define TTM_SETDELAYTIME (TTM_FIRST + 6) 525 #define TTM_GETDELAYTIME (TTM_FIRST + 6) 526 // added V0.9.12 (2001-04-28) [umoeller] 527 528 #define TTM_SETDELAYTIME (TTM_FIRST + 7) 522 529 523 530 #define TTFMT_PSZ 0x01 … … 556 563 } TOOLTIPTEXT, *PTOOLTIPTEXT; 557 564 558 #define TTM_GETTEXT (TTM_FIRST + 7)559 560 #define TTM_UPDATETIPTEXT (TTM_FIRST + 8)565 #define TTM_GETTEXT (TTM_FIRST + 8) 566 567 #define TTM_UPDATETIPTEXT (TTM_FIRST + 9) 561 568 562 569 /* … … 577 584 } TTHITTESTINFO, *PHITTESTINFO; 578 585 579 #define TTM_HITTEST (TTM_FIRST + 9)580 581 #define TTM_WINDOWFROMPOINT (TTM_FIRST + 1 0)582 583 #define TTM_ENUMTOOLS (TTM_FIRST + 1 1)584 585 #define TTM_GETCURRENTTOOL (TTM_FIRST + 1 2)586 587 #define TTM_GETTOOLCOUNT (TTM_FIRST + 1 3)588 589 #define TTM_GETTOOLINFO (TTM_FIRST + 1 4)590 591 #define TTM_SETTOOLINFO (TTM_FIRST + 1 5)586 #define TTM_HITTEST (TTM_FIRST + 10) 587 588 #define TTM_WINDOWFROMPOINT (TTM_FIRST + 11) 589 590 #define TTM_ENUMTOOLS (TTM_FIRST + 12) 591 592 #define TTM_GETCURRENTTOOL (TTM_FIRST + 13) 593 594 #define TTM_GETTOOLCOUNT (TTM_FIRST + 14) 595 596 #define TTM_GETTOOLINFO (TTM_FIRST + 15) 597 598 #define TTM_SETTOOLINFO (TTM_FIRST + 16) 592 599 593 600 // non-Win95 messages 594 601 595 #define TTM_SHOWTOOLTIPNOW (TTM_FIRST + 16) 602 #define TTM_SHOWTOOLTIPNOW (TTM_FIRST + 17) 603 604 /* 605 * tooltip notification codes (WM_CONTROL) 606 * 607 */ 596 608 597 609 /*
Note:
See TracChangeset
for help on using the changeset viewer.