Methods
gtk.Item.select
    def select()
The select() method emits the "select"
signal on the item.
gtk.Item.deselect
    def deselect()
The deselect() method emits the
"deselect" signal on the item.
gtk.Item.toggle
    def toggle()
The toggle() method emits the "toggle"
signal on the item.
Signals
The "deselect" gtk.Item Signal
    def callback(item, user_param1, ...)
| item:
 | the item that received the
signal | 
| user_param1:
 | the first user parameter (if any) specified
with the connect()
method | 
| ...:
 | additional user parameters (if
any) | 
The "deselect" signal is emitted when the item is
deselected.
The "select" gtk.Item Signal
    def callback(item, user_param1, ...)
| item:
 | the item that received the
signal | 
| user_param1:
 | the first user parameter (if any) specified
with the connect()
method | 
| ...:
 | additional user parameters (if
any) | 
The "select" signal is emitted when the item is selected.
The "toggle" gtk.Item Signal
    def callback(item, user_param1, ...)
| item:
 | the item that received the
signal | 
| user_param1:
 | the first user parameter (if any) specified
with the connect()
method | 
| ...:
 | additional user parameters (if
any) | 
The "toggle" signal is emitted when the item is toggled.