summaryrefslogtreecommitdiffstats
path: root/macosx
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Major fix for HITheme button metrics; thanks to Marc Culler for patch.Kevin Walzer2015-02-163-275/+201
| | |
| * | Better alingment of notebook tabs in Cocoa; thanks to Marc Culler for patchKevin Walzer2015-02-151-15/+4
| | |
| * | Remove calls during window resize notification that cause crash on CocoaKevin Walzer2015-02-141-12/+5
| | |
| * | Final adjustment of checkbutton flags in CocoaKevin Walzer2015-02-131-2/+2
| | |
| * | Apply same padding fix to Cocoa checkbuttonsKevin Walzer2015-02-121-3/+12
| | |
| * | Limit hard-coded padding in Cocoa buttons to radiobuttons indicatorOnKevin Walzer2015-02-121-4/+12
| | |
| * | Cleaner implementation of metrics for radiobuttons and checkbuttons under ↵Kevin Walzer2015-02-121-21/+26
| | | | | | | | | | | | Cocoa; still a bit of extra padding required, but only when absolutely necessary
| * | Silence some compiler warnings.dgp2015-02-128-25/+17
| |\ \ | | |/
| | * Silence some compiler warningsdgp2015-02-127-22/+12
| | |
| | * Further refinement of button metrics in CocoaKevin Walzer2015-02-121-1/+1
| | |
| | * Further refinement of button metrics in CocoaKevin Walzer2015-02-121-1/+1
| | |
| | * Further refinement of checkbutton metrics in CocoaKevin Walzer2015-02-121-1/+1
| | |
| | * Adjust metrics in buttons to remove extraneous padding in Cocoa checkbuttons ↵Kevin Walzer2015-02-111-1/+1
| | | | | | | | | | | | with images
| | * Restore build of backported scrollbar work.dgp2015-02-101-1/+1
| | |
| | * Scrolling now working at an acceptable level with HITheme API; Unix scroll ↵Kevin Walzer2015-01-302-470/+318
| | | | | | | | | | | | bindings driving scrolling in Tk window and Mac scrollbar just has to re-draw itself
| | * Fix conflicting types in tkMacOSXButton.cKevin Walzer2015-01-271-1/+1
| | |
| | * Commiting HITheme implementation obuttons; deferring scrolling for now ↵Kevin Walzer2015-01-244-1374/+1689
| | | | | | | | | | | | because no adequate solution, even using themed scrolling via ttk, exists
| | * Cleanup of scrollbar backport on CocoaKevin Walzer2015-01-121-28/+8
| | |
| | * Minor edit of window event code on CocoaKevin Walzer2015-01-121-5/+0
| | |
| | * Revert changes to Mac scrollbar; native implementation is best that can be ↵Kevin Walzer2015-01-121-94/+61
| | | | | | | | | | | | done, custom drawing in scrollbar is worse from UI standpoint.
| | * Improved scrolling for text under Cocoa; thanks to Marc Culler for patch.Kevin Walzer2015-01-041-4/+5
| | |
| * | Further refinement of button metrics in CocoaKevin Walzer2015-02-121-1/+1
| | |
| * | Further refinement of button metrics in CocoaKevin Walzer2015-02-121-1/+1
| | |
| * | Further refinement of checkbutton metrics in CocoaKevin Walzer2015-02-121-1/+1
| | |
| * | Adjust metrics in buttons to remove extraneous padding in Cocoa checkbuttons ↵Kevin Walzer2015-02-111-1/+1
| | | | | | | | | | | | with images
| * | Remove Mac-specific idle handler in tkTextDisp.c that caused delay in text ↵Kevin Walzer2015-02-021-1/+0
| | | | | | | | | | | | redraw during scrolling; no longer needed
| * | Remove unnecessary end-of-line spacingjan.nijtmans2015-02-024-94/+94
| | |
| * | Scrolling is now working at an acceptable level; using Unix bindings to ↵Kevin Walzer2015-01-302-488/+315
| | | | | | | | | | | | drive scrolling in Tk window, and just requiring Mac HITheme scrollbar to re-draw itself
| * | Commiting HITheme implementation on buttons; deferring scrolling for now ↵Kevin Walzer2015-01-244-1370/+1696
| | | | | | | | | | | | because no adequate solution, even using themed scrolling via ttk, exists
| * | remove some unnecessary eol-spacingjan.nijtmans2015-01-155-9/+9
| | |
| * | Revert additional changes to scrollbar codeKevin Walzer2015-01-121-2/+2
| | |
| * | Revert changes to Mac scrollbar; native implementation is best that can be ↵Kevin Walzer2015-01-123-92/+36
| | | | | | | | | | | | done, custom drawing in scrollbar is worse from UI standpoint.
| * | Improved scrolling for text under Cocoa; thanks to Marc Culler for patch.Kevin Walzer2015-01-041-2/+7
| | |
| * | Merge 8.5. Fix [winfo id] for Cocoa.dgp2015-01-022-11/+47
| |\ \ | | |/
| | * remove old commentdgp2015-01-021-1/+0
| | |
| | * The [winfo id] of a Tk window is meant to identify it. The actual valuedgp2015-01-022-10/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | returned, though, has been a hex-formatted int value -- that is 32 bits. On OS X Cocoa, the actual Window or XID is not an int but an unsigned long, and does not fit in 32 bits. (What's really stored even seems to be a (MacDrawable *) -- a pointer -- definitely not something 32-bits can capture). Thus generating [winfo id] loses info, and breaks totally. Has for a long time apparently. There are even explicit comments in place plainly stating that it is broken and what needs doing to fix it. Updated the platform-specific routines Tkp(Scan|Print)WindowId() so that window id's are no longer lossy and broken in Cocoa Tk.
| | * Reduce redraw issues during window zoom events on CocoaKevin Walzer2014-12-311-0/+6
| | |
| | * Refinement of redraw during window resizing in Cocoa; refinement of button ↵Kevin Walzer2014-12-282-8/+27
| | | | | | | | | | | | display
| | * Refinement of custom scrollbars on Tk-Cocoa; now more centered, virtually ↵Kevin Walzer2014-12-241-45/+47
| | | | | | | | | | | | identical to scrollbars in Safari, etc.
| | * Add method to tkMacOSXButton.cKevin Walzer2014-12-241-1/+1
| | |
| | * All on Tk/Cocoa: Improve view performance during resizing; implement custom ↵Kevin Walzer2014-12-242-24/+70
| | | | | | | | | | | | drawing of scroller to remove flickering and ghosted appearance during window operations; reduce flickering of menubutton during resizing, but do not completely eliminate ghosted rendering when widget is unmapped
| | * Minor optimization of drawing code in OSXKevin Walzer2014-12-211-0/+1
| | |
| | * Add header install flag to OS X GNUMakefile; thanks to Stephan Houben for patchKevin Walzer2014-12-131-1/+1
| | |
| | * Back out changes not pertaining to private API; those files should not have ↵Kevin Walzer2014-11-185-5/+5
| | | | | | | | | | | | been updated.
| | * Remove residual private API calls from Tk/Mac after Mac App Store review ↵Kevin Walzer2014-11-181-5/+3
| | | | | | | | | | | | flagged them as being present.
| * | Reduce redraw issues during window zoom events on CocoaKevin Walzer2014-12-311-0/+6
| | |
| * | Refinement of redraw during window resizing in Cocoa; refinement of button ↵Kevin Walzer2014-12-282-4/+16
| | | | | | | | | | | | display
| * | Refinement of custom scrollbars on Tk-Cocoa; now more centered, virtually ↵Kevin Walzer2014-12-241-9/+11
| | | | | | | | | | | | identical to scrollbars in Safari, etc.
| * | Revert change from ttk Mac themeKevin Walzer2014-12-241-4/+0
| | |
| * | All on Tk/Cocoa: Improve view performance during resizing; implement custom ↵Kevin Walzer2014-12-245-58/+119
| | | | | | | | | | | | drawing of scroller to remove flickering and ghosted appearance during window operations; reduce flickering of menubutton during resizing, but do not completely eliminate ghosted rendering when widget is unmapped