diff options
author | jenglish <jenglish@flightlab.com> | 2007-11-19 01:49:06 (GMT) |
---|---|---|
committer | jenglish <jenglish@flightlab.com> | 2007-11-19 01:49:06 (GMT) |
commit | 71bbd202de89a16773415860b57412a343fbb6f1 (patch) | |
tree | 27a7b6807b173726a57b78fdb076795bad391812 /library | |
parent | aa5ebe3414405d7b4ad1a8271f395866e8a65f79 (diff) | |
download | tk-71bbd202de89a16773415860b57412a343fbb6f1.zip tk-71bbd202de89a16773415860b57412a343fbb6f1.tar.gz tk-71bbd202de89a16773415860b57412a343fbb6f1.tar.bz2 |
* generic/ttk/ttkElements.c, macosx/ttkMacOSXTheme.c:
Add "fill" element: like "background" but only erases parcel.
* generic/ttk/ttkFrame.c: Use fill element in Labelframe Label
sublayout. Also improved default labelmargins for -labelanchor w*, e*.
* generic/ttk/ttkLabel.c: no longer need Labelframe hack.
* library/ttk/aquaTheme.tcl: ImageTextElement no longer needed.
TextElement no longer needs '-background' option.
Diffstat (limited to 'library')
-rw-r--r-- | library/ttk/aquaTheme.tcl | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/library/ttk/aquaTheme.tcl b/library/ttk/aquaTheme.tcl index bf34746..e25b2bf 100644 --- a/library/ttk/aquaTheme.tcl +++ b/library/ttk/aquaTheme.tcl @@ -1,5 +1,5 @@ # -# $Id: aquaTheme.tcl,v 1.9 2007/11/18 19:20:26 jenglish Exp $ +# $Id: aquaTheme.tcl,v 1.10 2007/11/19 01:49:07 jenglish Exp $ # # Aqua theme (OSX native look and feel) # @@ -50,12 +50,6 @@ namespace eval ttk::theme::aqua { # Enable animation for ttk::progressbar widget: ttk::style configure TProgressbar -period 100 -maxphase 255 - # Modify the the default Labelframe layout to use generic text element - # instead of Labelframe.text; the latter erases the window background - # (@@@ this still isn't right... want to fill with background pattern) - # - ttk::style layout TLabelframe.Label { text } - # For Aqua, labelframe labels should appear outside the border, # with a 14 pixel inset and 4 pixels spacing between border and label # (ref: Apple Human Interface Guidelines / Controls / Grouping Controls) |