Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | TIP #496 now final since the documentation updates that were missing at the time of voting are now done. Branch tip-496 is now merged. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9e44219b0d89cf4a1f9cc02db1cd5d61 |
User & Date: | fvogel 2018-05-13 19:35:55.768 |
Context
2018-05-13
| ||
20:31 | TIP #425 now final check-in: 093df0a6fb user: jan.nijtmans tags: trunk | |
19:35 | TIP #496 now final since the documentation updates that were missing at the time of voting are now done. Branch tip-496 is now merged. check-in: 9e44219b0d user: fvogel tags: trunk | |
18:36 | Added TIP #508: New subcommand [array default] check-in: bff18ba5f1 user: fbonnet tags: trunk | |
Changes
Changes to index.json.
cannot compute difference between binary files
Changes to index.md.
︙ | ︙ | |||
171 172 173 174 175 176 177 | <tr class='project projectdraft projectdraft90 project90'> <td valign='top'><a href='./tip/497.md'>497</a></td> <td valign='top'>Project</td> <td valign='top'>9.0</td> <td valign='top'>Draft</td> <td valign='top'># TIP 497: Full support for Unicode 11.0 and later (part 2)</td> </tr> | | | | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | <tr class='project projectdraft projectdraft90 project90'> <td valign='top'><a href='./tip/497.md'>497</a></td> <td valign='top'>Project</td> <td valign='top'>9.0</td> <td valign='top'>Draft</td> <td valign='top'># TIP 497: Full support for Unicode 11.0 and later (part 2)</td> </tr> <tr class='project projectfinal projectfinal87 project87'> <td valign='top'><a href='./tip/496.md'>496</a></td> <td valign='top'>Project</td> <td valign='top'>8.7</td> <td valign='top'>Final</td> <td valign='top'># TIP 496: Display hints in ::entry ::spinbox ::ttk::entry ::ttk::spinbox and ::ttk::combobox</td> </tr> <tr class='project projectdraft projectdraft87 project87'> <td valign='top'><a href='./tip/495.md'>495</a></td> <td valign='top'>Project</td> <td valign='top'>8.7</td> <td valign='top'>Draft</td> |
︙ | ︙ |
Changes to tip/496.md.
1 2 3 | # TIP 496: Display hints in ::entry ::spinbox ::ttk::entry ::ttk::spinbox and ::ttk::combobox Author: René Zaumseil <[email protected]> Author: François Vogel <[email protected]> | | | 1 2 3 4 5 6 7 8 9 10 11 | # TIP 496: Display hints in ::entry ::spinbox ::ttk::entry ::ttk::spinbox and ::ttk::combobox Author: René Zaumseil <[email protected]> Author: François Vogel <[email protected]> State: Final Type: Project Vote: Done Created: 17-Jan-2018 Post-History: Keywords: Tk Tcl-Version: 8.7 ----- |
︙ | ︙ | |||
31 32 33 34 35 36 37 | **-placeholderforeground**: The color of the text. This is a normal option for the Tk widgets and a style option for the Ttk widgets. Default value is #b3b3b3 (gray70). # Implementation A patch implementing these changes is available in the fossil repository in the [tip-496 branch] (https://core.tcl.tk/tk/timeline?r=tip-496). | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | **-placeholderforeground**: The color of the text. This is a normal option for the Tk widgets and a style option for the Ttk widgets. Default value is #b3b3b3 (gray70). # Implementation A patch implementing these changes is available in the fossil repository in the [tip-496 branch] (https://core.tcl.tk/tk/timeline?r=tip-496). Documentation updates are in the same branch. # Example of use package require Tk # tk entry grid [::ttk::entry .e];#normal display .e configure -placeholder test;#display text is: test |
︙ | ︙ |