Does Qt have a set of standard icons? (Like for Back,Forward, etc.)
How would I add these to a button or toolbar in Qt Creator/Designer?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m fairly certain you can’t add the icons directly in Designer, but you can programmatically reference them using:
QIcon QStyle::standardIcon ( StandardPixmap standardIcon, const QStyleOption * option = 0, const QWidget * widget = 0 ) constThe returned QIcon should be style-appropriate based on your current style. You can see the list of standardIcons in the official documentation.