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¶
- class qgis.gui.QgsSymbolButton[source]¶
Bases:
QToolButton- __init__(parent: QWidget | None = None, dialogTitle: str | None = '')
Construct a new symbol button. Use
dialogTitlestring to define the title to show in the symbol settings dialog.- Parameters:
parent (Optional[QWidget] = None)
dialogTitle (Optional[str] = '')
- signal changed[source]¶
pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL
types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.
- 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
Noneif 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
- fixedSizeConstraints(self) bool[source]¶
Returns
Trueif the widget adopts fixed size constraints.Added in version 4.0.
- Return type:
bool
- isNull(self) bool[source]¶
Returns
Trueif 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
colorfor 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
Noneto disable the default symbol option. Ownership ofsymbolis transferred to the button.
See also
Added in version 3.30.
- setDialogTitle(self, title: str | None)[source]¶
Sets the
titlefor the symbol settings dialog window.See also
- Parameters:
title (Optional[str])
- setFixedSizeConstraints(self, fixedSizeConstraints: bool)[source]¶
Sets whether the widget adopts fixed size constraints.
Added in version 4.0.
- Parameters:
fixedSizeConstraints (bool)
- setLayer(self, layer: QgsVectorLayer | None)[source]¶
Sets a
layerto 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
canvasto 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
barassociated 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
Trueto show a null option
See also
See also
Added in version 3.26.
- setSymbol(self, symbol: QgsSymbol | None)[source]¶
Sets the
symbolfor the button. Ownership ofsymbolis transferred to the button.See also
See also
- Parameters:
symbol (Optional[QgsSymbol])
- setSymbolType(self, type: Qgis.SymbolType)[source]¶
Sets the symbol
typewhich 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: