I'm sure you cannot add icons directly in Designer, but you can programmatically reference them using:
QIcon QStyle::standardIcon ( StandardPixmap standardIcon, const QStyleOption * option = 0, const QWidget * widget = 0 ) const
The returned QIcon should match the style depending on your current style. You can see a list of standard characters in the official documentation .
source
share