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
|
Usage
-----
.. code:: python
import qtawesome as qta
Use Font Awesome and Elusive Icons.
.. code:: python
# Get icons by name.
fa_icon = qta.icon('fa.flag')
fa_button = QtGui.QPushButton(fa_icon, 'Font Awesome!')
asl_icon = qta.icon('ei.asl')
elusive_button = QtGui.QPushButton(asl_icon, 'Elusive Icons!')
Apply some styling
.. code:: python
# Styling icons
styling_icon = qta.icon('fa.music',
active='fa.legal',
color='blue',
color_active='orange')
music_button = QtGui.QPushButton(styling_icon, 'Styling')
Stack multiple icons
.. code:: python
# Stacking icons
camera_ban = qta.icon('fa.camera', 'fa.ban',
options=[{
'scale_factor': 0.5,
'active': 'fa.legal'
}, {
'color': 'red'
}])
stack_button = QtGui.QPushButton(camera_ban, 'Stack')
stack_button.setIconSize(QtCore.QSize(32, 32))
Animations
.. code:: python
# Spining icons
spin_button = QtGui.QPushButton(' Spinning icon')
spin_icon = qta.icon('fa.spinner', color='red',
animation=qta.Spin(spin_button))
spin_button.setIcon(spin_icon)
Screenshot
.. image:: ../../qtawesome-screenshot.gif
|