1. 20 May, 2021 1 commit
  2. 17 May, 2021 1 commit
  3. 30 Oct, 2020 1 commit
  4. 23 Mar, 2020 1 commit
  5. 10 Jun, 2019 1 commit
  6. 16 Aug, 2018 1 commit
  7. 06 Jul, 2018 1 commit
  8. 27 Nov, 2017 1 commit
  9. 29 Jun, 2017 1 commit
  10. 21 Jun, 2017 1 commit
  11. 24 Apr, 2017 3 commits
  12. 19 Apr, 2017 1 commit
  13. 01 Feb, 2017 2 commits
  14. 12 Dec, 2016 1 commit
  15. 02 Dec, 2016 1 commit
  16. 24 Oct, 2016 1 commit
  17. 04 Oct, 2016 1 commit
  18. 02 Sep, 2016 1 commit
  19. 25 Aug, 2016 1 commit
  20. 03 Jul, 2016 1 commit
  21. 14 May, 2016 4 commits
  22. 06 Oct, 2015 1 commit
    • Ken Thomases's avatar
      winemac: Queue an event to reassert the WinAPI window position before Cocoa… · 9372af77
      Ken Thomases authored
      winemac: Queue an event to reassert the WinAPI window position before Cocoa adjusts its position for a display change.
      
      When the display mode changes such that the screen height changes, we'd like
      our windows to keep their position relative to the top-left of the primary
      screen.  That's how WinAPI's coordinate system works and we want the WinAPI
      position of the window to not change just because the display mode changed.
      
      Unfortunately that's not achievable in Cocoa.  Cocoa keeps the window
      stationary relative to the screen it's on, not necessarily the primary screen,
      and it's sometimes relative to the bottom-left and sometimes the top-left of
      that screen.
      
      So, what we do instead is queue an event to get the back end to reassert the
      WinAPI position of the window.  This is queued before Cocoa can adjust the
      Cocoa position of the window which would queue a WINDOW_FRAME_CHANGED to the
      back end and mess up the WinAPI position.  The back end's reassertion of the
      WinAPI position won't be processed by the Cocoa thread until after Cocoa has
      adjusted the position and will thus override it.  It will also discard any
      wrong WINDOW_FRAME_CHANGED that may have been queued.
      Signed-off-by: 's avatarKen Thomases <ken@codeweavers.com>
      9372af77
  23. 17 Jul, 2015 1 commit
  24. 12 May, 2015 1 commit
  25. 24 Mar, 2015 1 commit
    • Ken Thomases's avatar
      winemac: Allow the user to attempt to resize a maximized window and try to restore it if they do. · 8d581d0e
      Ken Thomases authored
      OS X doesn't have the same concept of maximized windows as Windows does.
      There's no mode that prevents a normally-resizable window from being resized.
      If a window is "zoomed", it mostly fills the screen but the user can still
      move or resize it, at which point it ceases to be in the zoomed state.  So,
      users are confused and frustrated when they can't resize a window that's
      maximized.
      
      To get similar behavior while still respecting Win32 semantics, we now let the
      user try to resize maximized windows.  (The resize cursors are shown at the
      edges of the window frame.)  When they start, a request is submitted to the app
      to restore the window.  Unless and until the window is restored, we don't
      actually allow the window to change its size.
      
      The user expects to resize the window from its current (maximized) position.
      It should not jump to its normal position upon being restored.  So, we set the
      window's normal position to its current position before restoring it.
      8d581d0e
  26. 13 Nov, 2014 1 commit
  27. 01 May, 2014 1 commit
  28. 24 Apr, 2014 1 commit
  29. 21 Mar, 2014 1 commit
  30. 29 Jan, 2014 2 commits
  31. 17 Jan, 2014 1 commit
  32. 31 Dec, 2013 1 commit
  33. 30 Dec, 2013 1 commit
    • Ken Thomases's avatar
      winemac: Implement support for maximizing windows. · 66736b4a
      Ken Thomases authored
      The user is prevented from moving or resizing a maximized window.  The zoom
      button is still present and enabled for a maximized window but requests that
      it be restored rather than simply resizing it, which is what it does for
      normal windows.
      
      If a window is not resizable (lacks WS_THICKFRAME) but has a maximize box
      (WS_MAXIMIZEBOX), then the zoom button requests that it be maximized rather
      than resizing it.
      66736b4a