summaryrefslogtreecommitdiffstats
path: root/generic/ttk
Commit message (Collapse)AuthorAgeFilesLines
* [3126428] Repaint ttk labels and buttons when the image is changed.patthoyts2016-09-213-4/+45
|\ | | | | | | | | | | In Tk the images associated with labels and buttons have their image changed callback set to cause the widget to be redrawn if the image is changed in any way. However, this has not been done for the ttk equivalent widgets.
| * [3126428] Repaint ttk labels and buttons when the image is changed.patthoyts2016-09-213-5/+46
| | | | | | | | | | | | In Tk the images associated with labels and buttons have their image changed callback set to cause the widget to be redrawn if the image is changed in any way. However, this has not been done for the ttk equivalent widgets.
* | Fix use of XMaxTransChars in stead of TCL_UTF_MAX in some places. This ↵jan.nijtmans2016-08-311-1/+2
| | | | | | | | | | should prevent possible buffer overflow when TCL_UTF_MAX=6 Micro-optimizations in tkEntry and ttkEntry
* | Fix [http://core.tcl.tk/tcl/info/3bd69eba99a395ee|3bd69eba99a395ee]: 'make ↵jan.nijtmans2016-06-011-2/+0
|\ \ | |/ | | | | dist' fails when tclsh9.0 is on $PATH
| * Fix [http://core.tcl.tk/tcl/info/3bd69eba99a395ee|3bd69eba99a395ee]: 'make ↵jan.nijtmans2016-06-011-2/+0
| | | | | | | | dist' fails when tclsh9.0 is on $PATH
| * NotebookAddCommand: fix off-by-one error counting objc/objvjenglish2016-01-251-1/+1
| | | | | | | | | | when readding an already-managed window with arguments. Bug reported on tcl-core by Sam Bromley (22 Jan 2016)
| * (cherry-pick) Fix [2049429]: Some options aren't picked up from the options ↵jan.nijtmans2016-01-121-2/+2
| | | | | | | | database.
* | NotebookAddCommand: fix off-by-one error counting objc/objvjenglish2016-01-251-1/+1
| | | | | | | | | | when readding an already-managed window with arguments. Bug reported on tcl-core by Sam Bromley (22 Jan 2016)
* | Merge trunk. jan.nijtmans2016-01-111-2/+2
| | | | | | | | ttkButton.c: Invalid use of TK_OPTION_DONT_SET_DEFAULT, should have been TK_OPTION_NULL_OK as in normal button. tkTextTag.c: Use of TK_OPTION_DONT_SET_DEFAULT means that the default value "0" is ignored, so better use NULL.
* | Silence some compiler warnings.dgp2015-02-121-0/+2
|\ \ | |/
| * Silence some compiler warningsdgp2015-02-121-0/+2
| |
| * Squash problem with native AIX cc not allowing direct macro redefinition.jan.nijtmans2014-02-031-0/+3
| |
* | Remove unnecessary end-of-line spacingjan.nijtmans2015-02-021-3/+3
| |
* | Eliminate all usage of WIN32 macro as well: _WIN32 is the portable macro.jan.nijtmans2014-02-103-3/+3
| |
* | Eliminate all usage of __WIN32__ macro: Some compilers (e.g. Clang/LLVM) ↵jan.nijtmans2014-02-102-6/+5
| | | | | | | | | | don't define it, and _WIN32 is much more portable anyway. See: [http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system#WindowsCygwinnonPOSIXandMinGW]
* | Squash problem with native AIX cc not allowing direct macro redefinition.andreask2014-02-031-0/+1
| |
* | Put extern "C" guards around all stub table struct definitions, jan.nijtmans2013-10-312-6/+10
|\ \ | |/ | | | | | | so it is usable to be used for C++ compilers as well without the danger of modifying the calling convention. For tkDecls.h, ttkDecls.h tkIntXlibDecls.h is was no problem, because tk.h, tkTheme.h and Xlib.h already contain those guards. But not for the other *Decls.h files.
| * Put extern "C" guards around all stub table struct definitions, jan.nijtmans2013-10-312-9/+27
| | | | | | | | | | so it is usable to be used for C++ compilers as well without the danger of modifying the calling convention. For tkDecls.h, ttkDecls.h tkIntXlibDecls.h is was no problem, because tk.h, tkTheme.h and Xlib.h already contain those guards. But not for the other *Decls.h files.
* | Fix [2100430]: ttk::entry widget index must be integerjan.nijtmans2013-06-052-4/+9
|\ \ | |/
| * Fix [2100430]: ttk::entry widget index must be integerjan.nijtmans2013-06-052-4/+9
| |
* | Fix [3613759] ttk::entry and symbolic index names.jan.nijtmans2013-06-051-2/+5
|\ \ | |/
| * Fix [3613759] ttk::entry and symbolic index names.jan.nijtmans2013-06-051-2/+5
| |\
| | * Suggested fix for [3613759]: ttk::entry and symbolic index namesbug_3613759jan.nijtmans2013-06-041-1/+5
| |/ |/|
* | Replace all Tcl_TraceVar/Tcl_UntraceVar with Tcl_TraceVar2/Tcl_UntraceVar2 ↵jan.nijtmans2013-02-221-2/+2
| | | | | | | | calls: The former are just thin wrappers around the latter.
* | ttk::theme::* packages don't Provide anything Extra.jenglish2013-02-153-3/+3
| | | | | | Change Tcl_PkgProvideEx() back to Tcl_PkgProvide().
* | Eliminate usage of Tcl_PkgProvide/Tcl_PkgRequire functions, use the 'Ex' ↵jan.nijtmans2013-02-155-5/+5
| | | | | | | | versions in stead.
* | ttk::treeview: schedule redisplay when adding or removing tags [Bug 3603077].jenglish2013-02-041-0/+5
|\ \ | |/
| * ttk::treeview: schedule redisplay when adding or removing tags [Bug 3603077].jenglish2013-02-041-0/+5
| |
* | Use internalRep.twoPtrValue.ptr1 in stead of internalRep.otherValuePtr ↵jan.nijtmans2013-02-011-2/+2
|\ \ | |/ | | | | | | everywhere. Change some internal "length" variables from type int to type size_t, so it could handle bigger string sizes (for "novem")
* | Use some more (void *)'s in FreeProc's, a step in the direction getting Tk ↵jan.nijtmans2013-01-261-2/+2
| | | | | | | | to work with "novem"
* | Merge core-8-5-branchjan.nijtmans2013-01-2410-45/+50
|\ \ | |/ | | Various Tcl_GetIndexFromObj -> Tcl_GetIndexFromObjStruct changes.
| * Eliminate use of deprecated Tcl_VarEval function from ttk.jan.nijtmans2013-01-231-1/+7
| |
* | Tk_CancelIdleCall -> Tcl_CancelIdleCalljan.nijtmans2013-01-231-1/+1
|\ \ | |/
| * Tk_CancelIdleCall -> Tcl_CancelIdleCalljan.nijtmans2013-01-231-1/+1
| |
* | Replace various functions calls, for functions which are small wrappers ↵jan.nijtmans2013-01-145-12/+13
| | | | | | | | around other functions, to call the wrapped function directly.
* | Eliminate all usage of deprecated Tcl_EvalObj, Tcl_GlobalEval and ↵jan.nijtmans2013-01-111-1/+1
|\ \ | |/ | | | | | | Tcl_GlobalEvalObj functions. Add [file normalize] to pkgIndex.tcl, in order to prevent '..' in file paths.
| * Eliminate all usage of deprecated Tcl_EvalObj, Tcl_GlobalEval and ↵jan.nijtmans2013-01-111-1/+1
| | | | | | | | | | | | | | Tcl_GlobalEvalObj functions. Add [file normalize] to pkgIndex.tcl, in order to prevent '..' in file paths. Remove unused TCLPATCHL, it should be ".0" for all final releases. Enable tk.h to be used with higher tcl.h versions which might lack _ANSI_ARGS_
* | Simplification: don't declare struct types that are never used.jan.nijtmans2012-11-152-5/+9
| |
* | [Bug 3567453]: Clip regions must be cleared with XSetClipMask and notdkf2012-09-132-6/+8
|\ \ | |/ | | TkSetRegion on X11.
| * [Bug 3567453]: Clip regions must be cleared with XSetClipMask and notdkf2012-09-132-6/+8
| | | | | | TkSetRegion on X11.
* | [Bug 3566594]: Fix clipping problem in classic X11; clip regions were leaking indkf2012-09-112-6/+9
|\ \ | |/ | | reused GCs.
| * [Bug 3566594]: Fix clipping problem in classic X11; clip regions were leaking indkf2012-09-112-6/+9
| | | | | | reused GCs.
* | merge trunkdkf2012-08-141-2/+2
|\ \
| * \ formatting, unnecessary if'sjan.nijtmans2012-08-091-2/+2
| |\ \ | | |/
| | * partly backport from 8.6jan.nijtmans2012-08-091-0/+4
| | |
* | | merge trunkdkf2012-08-081-3/+3
|\ \ \ | |/ /
| * | ttk::entry: Fix incorrect clip region computation [Bug 3552404]jenglish2012-07-311-3/+3
| | |
* | | minor improvements to flag handlingdkf2012-07-312-5/+7
| | |
* | | more auditing of error codesdkf2012-07-304-8/+10
| | |
* | | Ttk and Aqua donedkf2012-07-2410-129/+157
| | |