summaryrefslogtreecommitdiffstats
path: root/generic/ttk
Commit message (Collapse)AuthorAgeFilesLines
* ttk::treeview widget: add 'tag names', 'tag add', and 'tag remove' methods.jenglish2010-03-285-16/+188
|
* ttk::treeview: Cache the result of the last call to EndPosition()jenglish2010-02-201-10/+30
| | | | | | | to avoid quadratic-time behavior in the common cases where the treeview is populated in depth-first or breadth-first order. (Translation for LM: that means "3X faster!")
* Laxative patch: Revert contravariant const qualifiers added by thejenglish2010-02-0513-44/+43
| | | | | previous commit to keep codebase in sync with the Tile extension, which must remain 8.4 compatible.
* Make the various stub tables and hook pointers const,nijtmans2010-02-0518-58/+74
| | | | | just as Tcl and Tk. Make more internal tables "const"
* Follow-up to [2010-01-29] commit:nijtmans2010-02-052-24/+30
| | | | | prevent space within stub table function parameters if the parameter type is a pointer.
* Change signature of widget subcommand procedures to match Tcl_ObjCmdProc.jenglish2010-01-3115-397/+341
| | | | Merge now-redundant ensemble dispatch code.
* genStubs.tcl: No longer generate a space afternijtmans2010-01-292-69/+74
| | | | | | "*" and immediately after a function name, so the format of function definitions in *Decls.h match all other *.h header files.
* fix more gcc warnings: missing initializernijtmans2010-01-2211-56/+57
| | | | | | | Eliminate use of __argc and __argv for CYGWIN Make cygwin configuration error into a warning: CYGWIN compilation works although there still are test failures.
* Eliminate tkpMenubuttonClassnijtmans2010-01-131-4/+6
| | | | | make tkpButtonProcs CONST fix gcc warnings: missing initializer
* Uniform, extensible syntax for [$w identify] methods:jenglish2009-11-013-46/+97
| | | | | | | | | | [$w identify $component $x $y]. All ttk::* widgets support [$w identify element $x $y]; widgets with other identifiable parts may have additional subcommands. Notebook widgets support [$nb identify tab], Panedwindow widgets support [$w identify sash]. Older 2-argument form [$w identify $x $y] still supported, though it does different things depending on the widget.
* Eliminate various gcc warningsnijtmans2009-08-091-10/+10
| | | | include <vssym32.h> only when available
* BUGFIX: last commit did not account for possibility of 0 tabs.jenglish2009-05-171-17/+20
|
* generic/ttkNotebook.c: More flexible tab placement [Bug 1470246]jenglish2009-05-171-23/+42
|
* Prevent zero-size malloc() calls. [Bug 2178820]dkf2009-03-251-3/+3
|
* ElementStateEventProc: Avoid dangling pointers when layout changesjenglish2009-02-092-17/+26
| | | | [Fix for #2431428].
* Renamed several internal data structures and functions:jenglish2009-02-0816-277/+283
| | | | | | | ElementImpl -> ElementClass, LayoutNode -> Element. Remove more unnecessary casts. Add function Ttk_ClientRegion, common factor of entry, scale, progress, and treeview widgets.
* * generic/tkImgPhInstance.c: fix numerous leaks discovered with thedas2009-02-061-1/+4
| | | | | | | | | | | * generic/tkMenu.c: Mac OS X Instruments.app Leaks tool. * generic/tkText.c: * generic/tkTextImage.c: * generic/tkTextIndex.c: * generic/tkUndo.c: * generic/tkUtil.c: * generic/ttk/ttkFrame.c: * macosx/tkMacOSXWm.c:
* - eliminate some unnessary type castsnijtmans2009-01-284-16/+16
| | | | | - some internal const decorations - spacing
* ttkNotebook.c(NotebookCleanup): Don't call Tk_DeleteOptionTable(),jenglish2009-01-111-4/+1
| | | | it's unnecessary and quite possibly harmful [Bug 2496162].
* * generic/ttk/ttkDefaultTheme.c: Fix color palette for radiobuttonjenglish2008-12-311-95/+62
| | | | | | | and checkbutton indicators. Fixes [Bug 2003310]; also makes "alt" theme check/radiobuttons look like Windows 98, as intended. * library/ttk/altTheme.tcl: Specify dark gray -bordercolor to soften edges.
* ttk::treeview: Fix inconsistent use of treeArea / headingArea;jenglish2008-12-271-28/+32
| | | | fixes [#2381555] ([$tv identify] didn't work when horizontally scrolled).
* fix 'make checkstubs' failure: make TtkEntry_Init MODULE_SCOPEdas2008-12-151-2/+2
|
* Remove leftover commented-out code, mistakenly included in last commitjenglish2008-12-111-2/+1
|
* Add native aqua elements for ttk::spinbox [Bug 2219588].jenglish2008-12-071-291/+126
| | | | | Moved most spinbox "business logic" out of ttkEntry.c into Tcl bindings. Minor spinbox appearance improvements in clam theme.
* Fix potential null dereference flagged by clang static analyzerdas2008-12-071-2/+2
|
* Add new "hover" statejenglish2008-12-033-4/+21
| | | | (patch from Pat Thoyts; needed to support proper visual feedback on Vista).
* Widget self-destruction is not necessarily an error [Bug 2298720].jenglish2008-11-162-8/+7
|
* ttkWidget.c: Reworked widget construction and destruction sequence;jenglish2008-11-132-109/+129
| | | | | | | fixes [#2207435] and several other problems discovered during investigation of same. ttkButton.c(CheckbuttonInitialize): Account for initializeProc being called earlier in the construction sequence now.
* Don't crash when application uses nondefault visual [#2264732].jenglish2008-11-111-3/+2
|
* Ttk widget initializeProc()s now return void instead ofjenglish2008-11-0911-49/+30
| | | | | a status code, and are no longer allowed to fail. (Fix for #2207435 in progress).
* Remove unnecessary casts from ttkWidget.c.jenglish2008-11-091-15/+14
| | | | (More remain in other files; will get to those later).
* ttkEntry.c: fix warning: unused variable 'currentValue'nijtmans2008-11-031-14/+13
| | | | tkOldTest.c: fix warning: assignment discards qualifiers from pointer target type
* more internal -Wwrite-strings warning fixesnijtmans2008-11-023-18/+18
|
* Implemented the themed spinbox widget ttk::spinbox.patthoyts2008-11-011-68/+350
|
* Temporary workaround for [Bug 2207435]jenglish2008-10-311-1/+2
|
* Disable test ttk-6.3, it's not applicable [Bug 2175411].jenglish2008-10-241-10/+5
| | | | | | Use different Tcl_AssocData key for Ttk so the tile extension can be loaded into an 8.6 interp, in the off-chance that anyone wants to do this.
* Letting CONST die a slow and graceful death, since NO_CONST wasnijtmans2008-10-223-43/+43
| | | | broken since 8.4 and no-one complained about it.
* generic/ttk/ttkScroll.c: Don't use sprintf "%g" to format floatingjenglish2008-08-191-11/+11
| | | | | point numbers in -[xy]scrollcommand callbacks or [xy]view methods. Minor incompatibility: 0 and 1 now formatted as "0.0" resp "1.0".
* fix [2021443] inconsistant "wrong # args" messages (for Tk)nijtmans2008-07-235-32/+32
|
* Audit: ensure that output arguments to Tk_Get*FromObj() are initialized,jenglish2008-07-044-17/+15
| | | | in case of erroneous style specifications [#2009213].
* * generic/ttk/ttkTreeview.c: fix warning.das2008-06-121-3/+4
|
* NSCjenglish2008-06-011-3/+3
|
* [ttk::style theme use] without an argument now returns the current themepatthoyts2008-05-271-3/+40
|
* fix warningdas2008-05-231-2/+3
|
* Batch of ttk::treeview enhancements:jenglish2008-05-237-334/+567
| | | | | | | | | | | + Added [$tv identify region], [$tv identify element], and [$tv identify item] subcommands. + Simplified bindings. + Added [$tv tag has] subcommand. + Tag-related display improvements: setting a tag -background or -foreground no longer overrides selection feedback. + Don't need separate 'Item', 'Cell', and 'Row' style settings anymore, only the base "Treeview" style is used.
* Avoid passing width or height <= 0 to Tk_RedrawImage,jenglish2008-05-231-1/+7
| | | | as this leads to a panic on Windows [Bug 1967576]
* Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-2712-69/+69
|
* * generic/tkStubLib.c: make symbols in libtkstub.a MODULE_SCOPE todas2008-04-021-4/+2
| | | | | | | | | avoid exporting them from libraries that link with -ltkstub; constify tk*StubsPtr and stub table hook pointers. [Bug 1819422] * generic/tkStubLib.c: undef USE_TCL_STUBS before defining it * generic/ttk/ttkStubLib.c: unconditionally; remove needless #ifdef
* * generic/ttk/ttkStubLib.c: ensure tcl stubs are used in libtkstubdas2008-03-272-4/+14
| | | | | | even in a static build of Tk. * generic/ttk/ttkDecls.h: fix incorrect number of arguments in Ttk_InitStubs macro definition.
* Keep ttkStubLib.o in libtkstub instead of libtk. [Bug 1920030]jenglish2008-03-211-3/+4
|