Ignore:
Timestamp:
Jan 22, 2001, 8:28:54 AM (25 years ago)
Author:
umoeller
Message:

Misc. updates.

File:
1 edited

Legend:

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

    r21 r29  
    441441    // #define TTF_IDISHWND            0x0001
    442442                // V0.9.7 (2001-01-03) [umoeller]: removed this win95 crap
    443     #define TTF_CENTERBELOW         0x0002
    444     #define TTF_CENTERABOVE         0x0004
     443    // #define TTF_CENTERBELOW         0x0002
     444    // #define TTF_CENTERABOVE         0x0004
    445445    // #define TTF_RTLREADING          0x0004
    446446                // V0.9.7 (2001-01-03) [umoeller]: removed this win95 crap
     447
    447448    #define TTF_SUBCLASS            0x0008
    448449    // non-Win95 flags
    449450    #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
    450456
    451457    #define PSZ_TEXTCALLBACK      (PSZ)-1
     
    467473        ULONG   ulFlags;
    468474                    // in: flags for the tool, any combination of:
    469                     // -- TTF_CENTERBELOW:  centers the tooltip window below the
    470                     //      tool specified by the hwndTool member.
    471                     // -- TTF_CENTERABOVE:  centers the tooltip window above the
    472                     //      tool specified by the hwndTool member.
    473475                    // -- TTF_SUBCLASS: Indicates that the tooltip control should
    474476                    //      subclass hwndTool to intercept messages,
    475477                    //      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;
    477479                    //      always position the tool tip such that it is never
    478480                    //      covered by the mouse pointer (for readability);
    479481                    //      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
    480488        HWND    hwndToolOwner;
    481489                    // in: handle to the window that contains the tool. If
Note: See TracChangeset for help on using the changeset viewer.