Ignore:
Timestamp:
Apr 29, 2001, 2:10:31 PM (24 years ago)
Author:
umoeller
Message:

Misc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/comctl.h

    r52 r65  
    486486        HWND    hwndToolOwner;
    487487                    // in: handle to the window that contains the tool. If
    488                     // lpszText includes the PSZ_TEXTCALLBACK value, this
     488                    // pszText includes the PSZ_TEXTCALLBACK value, this
    489489                    // member identifies the window that receives TTN_NEEDTEXT
    490490                    // notification messages.
    491491        HWND    hwndTool;
    492492                    // in: window handle of the tool.
    493                     // ### simple rectangles of hwndToolOwner not yet supported
    494493        PSZ     pszText;
    495494                    // in: pointer to the buffer that contains the text for the
     
    501500    } TOOLINFO, *PTOOLINFO;
    502501
     502    /*
     503     *  tooltip messages
     504     *
     505     */
     506
    503507    #define TTM_FIRST                   (WM_USER + 1000)
    504508
     
    519523    #define TTDT_RESHOW                 4
    520524
    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)
    522529
    523530    #define TTFMT_PSZ           0x01
     
    556563    } TOOLTIPTEXT, *PTOOLTIPTEXT;
    557564
    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)
    561568
    562569    /*
     
    577584    } TTHITTESTINFO, *PHITTESTINFO;
    578585
    579     #define TTM_HITTEST                 (TTM_FIRST + 9)
    580 
    581     #define TTM_WINDOWFROMPOINT         (TTM_FIRST + 10)
    582 
    583     #define TTM_ENUMTOOLS               (TTM_FIRST + 11)
    584 
    585     #define TTM_GETCURRENTTOOL          (TTM_FIRST + 12)
    586 
    587     #define TTM_GETTOOLCOUNT            (TTM_FIRST + 13)
    588 
    589     #define TTM_GETTOOLINFO             (TTM_FIRST + 14)
    590 
    591     #define TTM_SETTOOLINFO             (TTM_FIRST + 15)
     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)
    592599
    593600    // non-Win95 messages
    594601
    595     #define TTM_SHOWTOOLTIPNOW          (TTM_FIRST + 16)
     602    #define TTM_SHOWTOOLTIPNOW          (TTM_FIRST + 17)
     603
     604    /*
     605     *  tooltip notification codes (WM_CONTROL)
     606     *
     607     */
    596608
    597609    /*
Note: See TracChangeset for help on using the changeset viewer.