ColourData¶This class holds a variety of information related to colour dialogs.
See also
Methods Summary¶| __init__ | Constructor. |
| FromString | Decodes the given string, which should be in the same format returned by ToString , and sets the internal colours. |
| GetChooseFull | Under Windows, determines whether the Windows colour dialog will display the full dialog with custom colour selection controls. |
| GetColour | Gets the current colour associated with the colour dialog. |
| GetCustomColour | Returns custom colours associated with the colour dialog. |
| SetChooseFull | Under Windows, tells the Windows colour dialog to display the full dialog with custom colour selection controls. |
| SetColour | Sets the default colour for the colour dialog. |
| SetCustomColour | Sets custom colours for the colour dialog. |
| ToString | Converts the colours saved in this class in a string form, separating the various colours with a comma. |
Properties Summary¶| ChooseFull | See GetChooseFull and SetChooseFull |
| Colour | See GetColour and SetColour |
Class API¶This class holds a variety of information related to colour dialogs.
Possible constructors:
ColourData()
Constructor.
Initializes the custom colours to NullColour , the data colour setting to black, and the choose full setting to True.
Decodes the given string, which should be in the same format returned by ToString , and sets the internal colours.
| Parameters: | str (string) – |
|---|---|
| Return type: | bool |
Under Windows, determines whether the Windows colour dialog will display the full dialog with custom colour selection controls.
Has no meaning under other platforms.
The default value is True.
| Return type: | bool |
|---|
Gets the current colour associated with the colour dialog.
The default colour is black.
| Return type: | Colour |
|---|
Returns custom colours associated with the colour dialog.
| Parameters: | i (int) – An integer between 0 and 15, being any of the 15 custom colours that the user has saved. The default custom colours are invalid colours. |
|---|---|
| Return type: | Colour |
Under Windows, tells the Windows colour dialog to display the full dialog with custom colour selection controls.
Under other platforms, has no effect.
The default value is True.
| Parameters: | flag (bool) – |
|---|
Sets the default colour for the colour dialog.
The default colour is black.
| Parameters: | colour (Colour) – |
|---|
Sets custom colours for the colour dialog.
| Parameters: |
|
|---|
Converts the colours saved in this class in a string form, separating the various colours with a comma.
| Return type: | string |
|---|
See GetChooseFull and SetChooseFull