1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsalignmentcombobox.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsAlignmentComboBox : QComboBox
{
%Docstring(signature="appended")
A combo box which allows choice of alignment settings (e.g. left, right,
...).
Currently only horizontal alignments are supported. Available alignment
choices can be manually specified by calling
:py:func:`~setAvailableAlignments`, which is useful when only a subset
of Qt's alignment options should be exposed.
.. versionadded:: 3.10
%End
%TypeHeaderCode
#include "qgsalignmentcombobox.h"
%End
public:
QgsAlignmentComboBox( QWidget *parent /TransferThis/ = 0 );
%Docstring
Constructor for QgsAlignmentComboBox, with the specified parent widget.
%End
void setAvailableAlignments( Qt::Alignment alignments );
%Docstring
Sets the available alignment choices shown in the combo box.
%End
Qt::Alignment currentAlignment() const;
%Docstring
Returns the current alignment choice.
.. seealso:: :py:func:`setCurrentAlignment`
%End
void setCurrentAlignment( Qt::Alignment alignment );
%Docstring
Sets the current ``alignment`` choice.
.. seealso:: :py:func:`currentAlignment`
%End
void customizeAlignmentDisplay( Qt::Alignment alignment, const QString &text = QString(), const QIcon &icon = QIcon() );
%Docstring
Sets the ``text`` and ``icon`` to use for a particular ``alignment``
option, replacing the default text or icon.
If ``text`` or ``icon`` is not specified, they will not be changed from
the default.
.. note::
This must be called after first filtering the available alignment options via :py:func:`~QgsAlignmentComboBox.setAvailableAlignments`.
%End
signals:
void changed();
%Docstring
Emitted when the alignment is changed.
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsalignmentcombobox.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|