Are there default icons in PyQt/PySide?
What you need is Pyside QIcon.fromTheme function. Basicaly it creates QIcon object with needed icon from current system theme. Usage: undoicon = QIcon.fromTheme(“edit-undo”) “edit undo” – name of the icon “type”https://stackoverflow.com/”function” can be found here This works on X11 systems, for MacOSX and Windows check QIcon documentation QIcon.fromTheme Edit Inserting this from the website, since … Read more