Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-05-17 | devdraw: use global drawlk instead of per-client | Russ Cox | 1 | -4/+3 | |
Setting up for a real window system. | |||||
2020-05-17 | devdraw: use indirect impl interface | Russ Cox | 1 | -8/+30 | |
Setting up for a real window system. | |||||
2020-02-03 | devdraw: fix `cmd-r` to toggle retina vs. non-retina mode on macOS (#361) | Martin Palma | 1 | -1/+1 | |
and not unexpectedly quitting an application. Fixes #360 | |||||
2020-01-16 | devdraw: abort alt sequence on window change on macOS | Russ Cox | 1 | -0/+4 | |
Fixes #3. | |||||
2020-01-14 | devdraw: notify window resize promptly on x11 | Russ Cox | 1 | -1/+0 | |
Fixes #339. | |||||
2020-01-14 | devdraw: do not force-hide menu and dock during full screen on mac | Russ Cox | 1 | -3/+15 | |
This hides the menu on dock on all screens which is more than we want. The code was added to fix a problem with Catalina that I can no longer reproduce, so I guess it works now. Fixes #336. | |||||
2020-01-13 | devdraw: hide dock in full screen mode | Russ Cox | 1 | -0/+13 | |
Unfortunately this hides the dock even if it is on a different screen. We need to figure out how to tell. But this is more usable than not. Probably. | |||||
2020-01-13 | devdraw: correctly hide Mac menu bar (#335) | Xiao-Yong | 1 | -9/+9 | |
`window:willUseFullScreenPresentationOptions:` is an instance method of the protocol `NSWindowDelegate`. | |||||
2020-01-13 | devdraw: AUTOFRAMEWORK CoreFoundation on macOS | Russ Cox | 1 | -0/+1 | |
Fixes #273. | |||||
2020-01-13 | devdraw: x11 working again | Russ Cox | 1 | -17/+37 | |
Need to think a bit more about locking, but overall it's a working devdraw. Multiclient mode may not be working but nothing is using it yet. | |||||
2020-01-13 | devdraw: multiclient mode | Russ Cox | 1 | -7/+8 | |
2020-01-13 | devdraw: more cleanup, clearer locking | Russ Cox | 1 | -166/+105 | |
2020-01-13 | devdraw: refactor, clean up mac screen | Russ Cox | 1 | -432/+395 | |
Also turn mac-srv.c into a generic srv.c, so we can remove the duplication with x11-srv.c. | |||||
2020-01-13 | devdraw: move per-window globals in mac-screen.m into Client | Russ Cox | 1 | -61/+80 | |
2020-01-13 | devdraw: move Client into devdraw.h and move global state in | Russ Cox | 1 | -35/+45 | |
2020-01-13 | devdraw: use consistent mac-* prefix on macOS files | Russ Cox | 1 | -0/+1248 | |
We were using osx- and cocoa- but it's not even OS X anymore. |