diff options
author | bll <brad.lanam.comp@gmail.com> | 2018-04-07 16:06:23 (GMT) |
---|---|---|
committer | bll <brad.lanam.comp@gmail.com> | 2018-04-07 16:06:23 (GMT) |
commit | b8e8b04cbc139156ee15356180185446b08d1cbb (patch) | |
tree | 1de3814eee19ff7e5978c553302a61674f7c2bb9 /doc/ttk_combobox.n | |
parent | 7795bf617656bb629e6083af9effb6c7b7f792a3 (diff) | |
download | tk-b8e8b04cbc139156ee15356180185446b08d1cbb.zip tk-b8e8b04cbc139156ee15356180185446b08d1cbb.tar.gz tk-b8e8b04cbc139156ee15356180185446b08d1cbb.tar.bz2 |
draft 3: interim progress 2018-4-7 09.06.
Diffstat (limited to 'doc/ttk_combobox.n')
-rw-r--r-- | doc/ttk_combobox.n | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/doc/ttk_combobox.n b/doc/ttk_combobox.n index 5e5b3fc..f2a0cad 100644 --- a/doc/ttk_combobox.n +++ b/doc/ttk_combobox.n @@ -110,6 +110,74 @@ The combobox widget generates a \fB<<ComboboxSelected>>\fR virtual event when the user selects an element from the list of values. If the selection action unposts the listbox, this event is delivered after the listbox is unposted. +.SH "STYLING OPTIONS" +.PP +The class name for a \fBttk::combobox\fP is \fBTCombobox\fP. +The \fBttk::combobox\fP uses the pre-ttk \fBentry\fP and +\fBlistbox\fP widgets internally. +.PP +\fBTCombobox\fP styling options configurable with \fBttk::style\fP +are: +.PP +-background +.RS +.br +maps: disabled, readonly +.RE +.br +-foreground +.br +.RS +maps: disabled, readonly +.RE +.br +-fieldbackground +.br +.RS +Can only be changed when using non-native and non-graphical themes. +.br +maps: disabled, readonly +.RE +.br +-selectbackground +.br +.RS +Text entry select background. +.RE +.br +-selectforeground +.br +.RS +Text entry select foreground. +.RE +.br +-bordercolor +.br +.RS +Used by the Clam theme and derivatives. +.RE +.br +.mycombobox configure -font \fIfont\fP +.br +option add *TCombobox*Listbox.background \fIcolor\fP +.br +option add *TCombobox*Listbox.foreground \fIcolor\fP +.br +option add *TCombobox*Listbox.selectBackground \fIcolor\fP +.br +option add *TCombobox*Listbox.selectForeground \fIcolor\fP +.br +option add *TCombobox*Listbox.font \fIfont\fP +.PP +To set the font size for a specific listbox (subject to future change): +.PP +set popdown [ttk::combobox::PopdownWindow .mycombobox] +.br +$popdown.f.l configure -font namedfont +.br +.PP +See the \fBttk::style\fP manual page for information on how to configure +ttk styles. .SH "SEE ALSO" ttk::widget(n), ttk::entry(n) .SH KEYWORDS |