| |
- AddListboxSelection
-
- DeleteListboxSelection
- BooleanPreference
-
- Filename
- FloatPreference
-
- IntPreference
- ListPreference
- ListboxPreference
- Radio
-
- RadioCapitalized
- StringPreference
- DisplayToolButton
-
- DisplayToolButtonBesidePrevious
- LabelDisplay
- PreferencesDialog
class BooleanPreference |
|
A class to display, read & write a boolean. |
|
Methods defined here:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setToDisplay(self)
- Do nothing because toggleCheckbox is handling the value.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- setValueToString(self, valueString)
- Set the boolean to the string.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
|
class Filename(BooleanPreference) |
| |
Methods defined here:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- execute(self)
- getFilenameFirstTypes(self)
- Get the file types with the file type of the filename moved to the front of the list.
- getFromFilename(self, fileTypes, name, value)
- Initialize.
- setToDisplay(self)
- Pass.
- setValueToString(self, valueString)
- Set the filename to the string.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
|
class FloatPreference(BooleanPreference) |
|
A class to display, read & write a float. |
|
Methods defined here:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- setToDisplay(self)
- Set the float to the entry field.
- setValueToString(self, valueString)
- Set the float to the string.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
|
class IntPreference(FloatPreference) |
|
A class to display, read & write an int. |
|
- Method resolution order:
- IntPreference
- FloatPreference
- BooleanPreference
Methods defined here:
- setValueToString(self, valueString)
- Set the integer to the string.
Methods inherited from FloatPreference:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- setToDisplay(self)
- Set the float to the entry field.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
|
class ListPreference(BooleanPreference) |
| |
Methods defined here:
- addToDialog(self, preferencesDialog)
- Do nothing because the list preference does not have a graphical interface.
- setToDisplay(self)
- Do nothing because the list preference does not have a graphical interface.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second and later words of a split line.
- setValueToString(self, valueString)
- Do nothing because the list preference does not have a graphical interface.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and list to the archive writer.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
|
class ListboxPreference(BooleanPreference) |
| |
Methods defined here:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- getFromListPreference(self, listPreference, name, value)
- Initialize.
- setListboxItems(self)
- Set the listbox items to the list preference.
- setToDisplay(self)
- Set the selection value to the listbox selection.
- setValueToString(self, valueString)
- Set the selection value to the string.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
|
class Radio(BooleanPreference) |
|
A class to display, read & write a boolean with associated radio button. |
|
Methods defined here:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- clickRadio(self)
- Workaround for Tkinter bug, set the value.
- getFromRadio(self, name, radio, value)
- Initialize.
- getIntVar(self)
- Get the IntVar for this radio button group.
- setDisplayState(self, row)
- Set the boolean to the checkbox.
- setToDisplay(self)
- Set the boolean to the checkbox.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- setValueToString(self, valueString)
- Set the boolean to the string.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
|
class RadioCapitalized(Radio) |
|
A class to display, read & write a boolean with associated radio button. |
|
- Method resolution order:
- RadioCapitalized
- Radio
- BooleanPreference
Methods defined here:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- getLowerName(self)
- Get the lower case name.
Methods inherited from Radio:
- clickRadio(self)
- Workaround for Tkinter bug, set the value.
- getFromRadio(self, name, radio, value)
- Initialize.
- getIntVar(self)
- Get the IntVar for this radio button group.
- setDisplayState(self, row)
- Set the boolean to the checkbox.
- setToDisplay(self)
- Set the boolean to the checkbox.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- setValueToString(self, valueString)
- Set the boolean to the string.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
|
class StringPreference(BooleanPreference) |
|
A class to display, read & write a string. |
|
Methods defined here:
- addToDialog(self, preferencesDialog)
- Add this to the dialog.
- setToDisplay(self)
- Set the string to the entry field.
- setValueToString(self, valueString)
- Set the string to the value string.
Methods inherited from BooleanPreference:
- addToPreferenceTable(self, preferenceTable)
- Add this to the preference table.
- getFromValue(self, name, value)
- Initialize.
- setStateToValue(self)
- Set the checkbox to the boolean.
- setValueToSplitLine(self, lineIndex, lines, splitLine)
- Set the value to the second word of a split line.
- toggleCheckbox(self)
- Workaround for Tkinter bug, toggle the value.
- writeToArchiveWriter(self, archiveWriter)
- Write tab separated name and value to the archive writer.
| |