summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | Fix [e3ad5e0fca]: macOS XQuartz : issue with menujan.nijtmans2021-05-202-2/+2
|/ / / / /
* | | | | Fix warning with msvc: LINK : warning LNK4044: unrecognized option ↵jan.nijtmans2021-05-191-1/+1
| | | | | | | | | | | | | | | | | | | | '/DCONSOLE'; ignored
* | | | | comment fixjan.nijtmans2021-05-111-1/+1
| | | | |
* | | | | Make return values for tkMacOSXPutImage consistent between 8.6 and 8.7, and ↵culler2021-05-111-4/+5
| | | | | | | | | | | | | | | | | | | | document them.
* | | | | eol-spacingjan.nijtmans2021-05-111-7/+7
| | | | |
* | | | | Finish fixing [171ba701e55]: make sure that a grab window gets focus when ↵culler2021-05-101-0/+17
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | the app is reactivated.
| * | | | | If an app has a grab window, ensure that it gets focus if the app is ↵culler2021-05-091-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | deactivated and reactivated.
* | | | | | Fix [72de53dab2]: unreachable code after Tcl_Panic() in tkWinDraw.cjan.nijtmans2021-05-101-3/+0
|\ \ \ \ \ \ | | |/ / / / | |/| | | |
| * | | | | Fix [72de53dab2]: unreachable code after Tcl_Panic() in tkWinDraw.c.jan.nijtmans2021-05-101-3/+0
| |\ \ \ \ \
| | * | | | | Also remove unreachable return statement.fvogel2021-05-081-1/+0
| | | | | | |
| | * | | | | Fix [72de53dab2]: unreachable code after Tcl_Panic() in tkWinDraw.c.fvogel2021-05-081-2/+0
| | | |_|_|/ | | |/| | |
* | | | | | Merging fix for 7bb246b072, thanks to M. Wayne Davis for the reportKevin Walzer2021-05-081-1/+21
|\ \ \ \ \ \
| * | | | | | Restore processing of Apple Events on app launchKevin Walzer2021-05-051-1/+21
| | |/ / / / | |/| | | |
* | | | | | Prevent the crash related to [171ba701e5]. More work is needed to preserve ↵culler2021-05-081-1/+4
|\ \ \ \ \ \ | |/ / / / / |/| | / / / | | |/ / / | |/| | | the grab state when the app is deactivated.
| * | | | Try to fix [171ba701e5]: crash when key is pressed after grab window loses ↵culler2021-05-061-1/+4
|/ / / / | | | | | | | | | | | | focus.
* | | | uint32 -> uint32_t, more TCL_UNUSED() and typecastsjan.nijtmans2021-05-041-11/+15
| | | |
* | | | Eliminate TkpPutRGBAImage's first 2 parameters, since they are unusedjan.nijtmans2021-05-035-6/+6
| | | |
* | | | Fix typoculler2021-05-021-3/+0
| | | |
* | | | Fix [2ecb09d118]: Aqua ignores preference setting to disable key repeats.culler2021-05-021-1/+12
|\ \ \ \ | |_|_|/ |/| | |
| * | | Fix typo.culler2021-05-011-1/+1
| | | |
| * | | Edit comments.culler2021-05-011-5/+2
| | | |
| * | | Take care to only check the aRepeat property of an NSKeyDown event. Isolate ↵culler2021-05-011-3/+12
| | | | | | | | | | | | | | | | the test for discarding them from the other logic
| * | | Completely ignore repeat events if the repeat interval is set to off. How ↵culler2021-05-011-5/+8
| | | | | | | | | | | | | | | | does this affect the TextInputClient?
| * | | Fix [2ecb09d118]: Aqua ignores preferences setting to disable key repeats.culler2021-04-301-4/+6
| | | |
* | | | Fix [eafa029f3a]: Set the backing CALayer's contentsScale to avoid fuzzy ↵culler2021-05-011-0/+13
|\ \ \ \ | | | | | | | | | | | | | | | text on Retina diplays.
| * | | | Fix [eafa029f3a]: blurry text on retina screens when using backing CALayer. ↵culler2021-05-011-0/+13
| |/ / / | | | | | | | | | | | | Sets the layer.contentsScale to equal the backingScaleFactor of the screen where its view is being displayed.
* | | | Fix [4c7d935e97]: Alt theme ttk::checkbutton image is not rendered on macOS. ↵culler2021-05-013-35/+69
|\ \ \ \ | | | | | | | | | | | | | | | Introduces TkpPutRGBAImage for rendering 32bpp ZPixmap XImages with an alpha channel.
| * | | | Edit comments. Use uint32_t since Apple documentation specifies that type ↵culler2021-05-011-7/+18
| | | | | | | | | | | | | | | | | | | | for kCGImageAlphaLast etc.
| * | | | Fix [4c7d935e97]: on Aqua, checkbuttons are not rendered in the Alt theme.culler2021-04-303-30/+53
| |/ / /
* | | | Fix [ff9c815a83]: Some macOS tests fail if the dock is on the left side, due ↵culler2021-05-012-17/+22
|\ \ \ \ | | | | | | | | | | | | | | | to OS restrictions on window locations.
| * | | | Fix [ff9c815a83]: 8 Aqua unixWm tests fail if the dock is positioned on the ↵culler2021-04-302-17/+22
| |/ / / | | | | | | | | | | | | left side. Also fixes a segfault at exit in ximage.c.
* | | | Aqua: don't process idle tasks before withdrawing a window; this helps ↵culler2021-05-011-1/+11
|\ \ \ \ | |/ / / |/| | | | | | | prevent a flashing window if the root is immediately withdrawn.
| * | | Edit commentculler2021-04-301-6/+6
| | | |
| * | | Do not process idle events before withdrawing a window.culler2021-04-301-1/+11
|/ / /
* | | For Aqua, use an explicit backing CALayer for the TKContentView. Fixes ↵culler2021-04-2918-331/+435
|\ \ \ | | | | | | | | | | | | [d281848f97] and other rendering issues.
| * | | Fix textWind.test à la François Vogelculler2021-04-291-10/+10
| | | |
| * | | Add a call to [window display] after creating a new window. This makes the ↵marc_culler2021-04-293-230/+234
| | | | | | | | | | | | | | | | tests work in High Sierra.
| * | | Synchonize the needsDisplay for the NSView and its backing layer.culler2021-04-292-0/+2
| | | |
| * | | Deal with new test failures revealed by changing the order of the tests.culler2021-04-284-16/+41
| | | |
| * | | For Aqua, use an explicit backing CALayer for NSViews. This fixes several ↵culler2021-04-2815-77/+150
| |\ \ \ | | | | | | | | | | | | | | | mysterious rendering failures, including [d281848f97]
| | * \ \ Close accidental forkculler2021-04-2829-174/+250
| | |\ \ \
| | | * \ \ Merge 8.6culler2021-04-2715-77/+151
| | | |\ \ \ | | |/ / / / | |/| | | |
| | * | | | Remove extra release of CGContextculler2021-04-281-1/+0
| | |/ / /
| | * | | Adjust textWind-17.10culler2021-04-271-12/+16
| | | | |
| | * | | Try to avoid the rare crash in Tk_MacOSXGetTkWindow which has been seen at ↵culler2021-04-271-3/+6
| | | | | | | | | | | | | | | | | | | | exit a few times.
| | * | | Set the CALayer's contentsGravity property so that programmatic resizes look ↵culler2021-04-261-0/+2
| | | | | | | | | | | | | | | | | | | | better.
| | * | | One more bit of code cleanup.culler2021-04-251-1/+1
| | | | |
| | * | | Code cleanup. Thanks to Christopher Chavez for the careful review.culler2021-04-251-24/+22
| | | | |
| | * | | Fix the flip transform for pixmaps. This makes bitmap buttons work again.culler2021-04-251-1/+4
| | | | |
| | * | | Use the release method instead of CFRelease for NSBitmapImageRep objects.culler2021-04-251-2/+2
| | | | |