''' This class type is used to describe the check status.
..autosummary::
@ -103,7 +103,7 @@ class TTkConstant:
PartiallyChecked=CheckState.PartiallyChecked
Checked=CheckState.Checked
classInsertPolicy:
classInsertPolicy(int):
NoInsert=0x00# The string will not be inserted into the combobox.
InsertAtTop=0x01# The string will be inserted as the first item in the combobox.
# InsertAtCurrent = 0x02 # The current item will be replaced by the string.
@ -112,7 +112,7 @@ class TTkConstant:
# InsertBeforeCurrent = 0x05 # The string is inserted before the current item in the combobox.
# InsertAlphabetically = 0x06 # The string is inserted in the alphabetic order in the combobox.
classChildIndicatorPolicy:
classChildIndicatorPolicy(int):
ShowIndicator=0x00#The controls for expanding and collapsing will be shown for this item even if there are no children.
DontShowIndicator=0x01#The controls for expanding and collapsing will never be shown even if there are children. If the node is forced open the user will not be able to expand or collapse the item.
DontShowIndicatorWhenChildless=0x02#The controls for expanding and collapsing will be shown if the item contains children.
''' This class type is used to describe alignment.
..autosummary::
@ -257,7 +257,7 @@ class TTkConstant:
CENTER_ALIGN=Alignment.CENTER_ALIGN
JUSTIFY=Alignment.JUSTIFY
classFileMode():
classFileMode(int):
AnyFile=0#The name of a file, whether it exists or not.
# ExistingFile = 1 #The name of a single existing file.
Directory=2#The name of a directory. Both files and directories are displayed. However, the native Windows file dialog does not support displaying files in the directory chooser.
@ -269,7 +269,7 @@ class TTkConstant:
# ExistingFiles = FileMode.ExistingFiles
# LayoutItem Types
classLayoutItemTypes:
classLayoutItemTypes(int):
'''Types used internally in :mod:`~TermTk.TTkLayouts`'''
LayoutItem=0x01
'''Item Type Layout'''
@ -280,7 +280,7 @@ class TTkConstant:
LayoutItem=LayoutItemTypes.LayoutItem
WidgetItem=LayoutItemTypes.WidgetItem
classWindowFlag:
classWindowFlag(int):
# FramelessWindowHint = 0x00000800
# ''' Produces a borderless window.'''
# CustomizeWindowHint = 0x02000000
@ -308,7 +308,7 @@ class TTkConstant:
# WindowStaysOnBottomHint = 0x04000000
# ''' Informs the window system that the window should stay on bottom of all other windows.'''