1. 13 Aug, 2007 2 commits
  2. 09 Aug, 2007 1 commit
  3. 20 Jun, 2007 1 commit
  4. 19 Jun, 2007 1 commit
  5. 30 May, 2007 1 commit
  6. 25 May, 2007 1 commit
  7. 16 May, 2007 1 commit
  8. 15 May, 2007 2 commits
  9. 27 Apr, 2007 1 commit
  10. 17 Mar, 2007 1 commit
  11. 05 Feb, 2007 1 commit
  12. 16 Nov, 2006 1 commit
  13. 08 Nov, 2006 1 commit
  14. 07 Nov, 2006 1 commit
  15. 02 Nov, 2006 1 commit
  16. 25 Oct, 2006 1 commit
  17. 23 Oct, 2006 1 commit
  18. 02 Oct, 2006 1 commit
  19. 11 Aug, 2006 1 commit
  20. 09 Aug, 2006 2 commits
  21. 12 Jun, 2006 1 commit
  22. 09 Jun, 2006 1 commit
  23. 02 Jun, 2006 1 commit
    • Michael Kaufmann's avatar
      user32: Popup menu position fixes. · 6a74137d
      Michael Kaufmann authored
      - Open large popup menus on the other side only if there's enough space
      - Open popup menus such that the y position of the first item in the
        popup menu is the same as the y position of the focused menu item.
      6a74137d
  24. 23 May, 2006 1 commit
  25. 08 May, 2006 1 commit
  26. 19 Apr, 2006 1 commit
    • Michael Kaufmann's avatar
      user: Find popup menus by ID. · 01bf37d8
      Michael Kaufmann authored
      - Find menus by ID: Proper fallback to popup menus.
      - Use the menu ID, not the handle for the fallback.
      - Save the fallback menu's position.
      01bf37d8
  27. 13 Apr, 2006 1 commit
  28. 08 Apr, 2006 1 commit
  29. 02 Mar, 2006 1 commit
  30. 01 Mar, 2006 2 commits
  31. 20 Feb, 2006 6 commits
    • Rein Klazes's avatar
    • Rein Klazes's avatar
      user: Menu drawing fixes. · 00ca2598
      Rein Klazes authored
      - check mark is drawn left of a bitmap;
      - if a MNS_CHECKORBMP-style menu has a checkmark, do no draw any bitmap;
      - space for the popup arrow is also reserved for non popup items;
      - implement the MNS_NOCHECK style.
      00ca2598
    • Rein Klazes's avatar
      user: Menu string width calculation fixes. · 885f2170
      Rein Klazes authored
      - Use DrawText in stead of GetTextExtendPoint32, to properly measure
        strings with ampersands like "&File";
      - Fix mess with strings with an embedded tab;
      - In case of a menu bar, two extra pixels are added if the item has
        both a bitmap and string.
      885f2170
    • Rein Klazes's avatar
      user: Menu drawing fixes. · 2757532f
      Rein Klazes authored
      Replace some #defined constants by values calculated from windows
      metrics.
      2757532f
    • Rein Klazes's avatar
      user: Menu drawing fixes. · 444a5471
      Rein Klazes authored
      - Move sending WM_MEASUREITEM message for HBMMENU_CALLBACK bitmaps to
      MENU_GetBitmapItemSize();
      - Save the received bitmap size in the menu item structure as it will
      need to be sent in the WM_DRAWITEM message;
      -  Move sending WM_DRAWITEM message for HBMMENU_CALLBACK bitmaps to
      MENU_DrawBitmapItem();
      - This also means that HBMMENU_CALLBACK bitmaps are now supported in
      menu bars.
      444a5471
    • Rein Klazes's avatar
      user: Move drawing of pop menu arrows to a subroutine reduces nesting · 672a1e4e
      Rein Klazes authored
      level of some large if statements in the drawing code. Some updates to
      the comments.
      672a1e4e