Class: QgsSymbolButton¶
A button for creating and modifying QgsSymbol
settings.
The button shows a preview icon for the current symbol, and will open a detailed symbol editor dialog (or panel widget) when clicked.
Class Hierarchy¶
Base classes¶
Methods
Copies the current symbol color to the clipboard. |
|
Copies the current symbol to the clipboard. |
|
Returns the default symbol for the button, which is shown in the button's drop-down menu for the "default symbol" option. |
|
Returns the title for the symbol settings dialog window. |
|
Returns |
|
Returns the layer associated with the widget. |
|
Returns the map canvas associated with the widget. |
|
Returns the message bar associated with the widget. |
|
Pastes a color from the clipboard to the symbol. |
|
Pastes a symbol from the clipboard. |
|
Register an expression context generator class that will be used to retrieve an expression context for the button when required. |
|
Sets the current color for the symbol. |
|
Sets the default symbol for the button, which is shown in the button's drop-down menu for the "default symbol" option. |
|
Sets the title for the symbol settings dialog window. |
|
Sets a layer to associate with the widget. |
|
Sets a map canvas to associate with the widget. |
|
Sets the message bar associated with the widget. |
|
Sets whether a set to null (clear) option is shown in the button's drop-down menu. |
|
Sets the symbol for the button. |
|
Sets the symbol type which the button requires. |
|
Sets symbol to the button's default symbol, if set. |
|
Sets symbol to to null. |
|
Returns whether the set to null (clear) option is shown in the button's drop-down menu. |
|
Returns the current symbol defined by the button. |
|
Returns the symbol type which the button requires. |
Signals
Emitted when the symbol's settings are changed. |
- class qgis.gui.QgsSymbolButton[source]¶
Bases:
QToolButton
- __init__(parent: QWidget | None = None, dialogTitle: str | None = '')
Construct a new symbol button. Use
dialogTitle
string to define the title to show in the symbol settings dialog.- Parameters:
parent (Optional[QWidget] = None)
dialogTitle (Optional[str] = '')
- defaultSymbol(self) QgsSymbol | None [source]¶
Returns the default symbol for the button, which is shown in the button’s drop-down menu for the “default symbol” option.
- Return type:
Optional[QgsSymbol]
- Returns:
default symbol for the button. Returns
None
if the default symbol option is disabled.
See also
Added in version 3.30.
- dialogTitle(self) str [source]¶
Returns the title for the symbol settings dialog window.
See also
- Return type:
str
- isNull(self) bool [source]¶
Returns
True
if the current symbol is null.See also
See also
Added in version 3.26.
- Return type:
bool
- layer(self) QgsVectorLayer | None [source]¶
Returns the layer associated with the widget.
See also
- Return type:
Optional[QgsVectorLayer]
- mapCanvas(self) QgsMapCanvas | None [source]¶
Returns the map canvas associated with the widget.
See also
- Return type:
Optional[QgsMapCanvas]
- messageBar(self) QgsMessageBar | None [source]¶
Returns the message bar associated with the widget.
See also
Added in version 3.6.
- Return type:
Optional[QgsMessageBar]
- pasteColor(self)[source]¶
Pastes a color from the clipboard to the symbol. If clipboard does not contain a valid color or string representation of a color, then no change is applied.
See also
- pasteSymbol(self)[source]¶
Pastes a symbol from the clipboard. If clipboard does not contain a valid symbol then no change is applied.
See also
- registerExpressionContextGenerator(self, generator: QgsExpressionContextGenerator | None)[source]¶
Register an expression context generator class that will be used to retrieve an expression context for the button when required.
- Parameters:
generator (Optional[QgsExpressionContextGenerator])
- setColor(self, color: QColor | Qt.GlobalColor)[source]¶
Sets the current
color
for the symbol. Will emit achanged()
signal if the color is different to the previous symbol color.- Parameters:
color (Union[QColor, Qt.GlobalColor])
- setDefaultSymbol(self, symbol: QgsSymbol | None)[source]¶
Sets the default symbol for the button, which is shown in the button’s drop-down menu for the “default symbol” option.
- Parameters:
symbol (Optional[QgsSymbol]) – default symbol for the button. Set to
None
to disable the default symbol option. Ownership ofsymbol
is transferred to the button.
See also
Added in version 3.30.
- setDialogTitle(self, title: str | None)[source]¶
Sets the
title
for the symbol settings dialog window.See also
- Parameters:
title (Optional[str])
- setLayer(self, layer: QgsVectorLayer | None)[source]¶
Sets a
layer
to associate with the widget. This allows the widget to setup layer related settings within the symbol settings dialog, such as correctly populating data defined override buttons.See also
- Parameters:
layer (Optional[QgsVectorLayer])
- setMapCanvas(self, canvas: QgsMapCanvas | None)[source]¶
Sets a map
canvas
to associate with the widget. This allows the widget to fetch current settings from the map canvas, such as current scale.See also
- Parameters:
canvas (Optional[QgsMapCanvas])
- setMessageBar(self, bar: QgsMessageBar | None)[source]¶
Sets the message
bar
associated with the widget. This allows the widget to push feedback messages to the appropriate message bar.See also
Added in version 3.6.
- Parameters:
bar (Optional[QgsMessageBar])
- setShowNull(self, showNull: bool)[source]¶
Sets whether a set to null (clear) option is shown in the button’s drop-down menu.
- Parameters:
showNull (bool) – set to
True
to show a null option
See also
See also
Added in version 3.26.
- setSymbol(self, symbol: QgsSymbol | None)[source]¶
Sets the
symbol
for the button. Ownership ofsymbol
is transferred to the button.See also
See also
- Parameters:
symbol (Optional[QgsSymbol])
- setSymbolType(self, type: Qgis.SymbolType)[source]¶
Sets the symbol
type
which the button requires. If the type differs from the current symbol type, the symbol will be reset to a default symbol style of the new type.See also
- Parameters:
type (Qgis.SymbolType)
- setToDefaultSymbol(self)[source]¶
Sets symbol to the button’s default symbol, if set.
See also
See also
See also
Added in version 3.30.
- showNull(self) bool [source]¶
Returns whether the set to null (clear) option is shown in the button’s drop-down menu.
See also
See also
Added in version 3.26.
- Return type:
bool
- symbol(self) QgsSymbol | None [source]¶
Returns the current symbol defined by the button.
See also
See also
- Return type:
Optional[QgsSymbol]
- symbolType(self) Qgis.SymbolType [source]¶
Returns the symbol type which the button requires.
See also
- Return type: