Hi,

coding manually is possible to write code like...
Qt Code:
  1. QIcon fileOpenIcon;
  2. fileOpenIcon.addFile(":/small_icons/file_open.png", QSize(22, 22));
  3. fileOpenIcon.addFile(":/normal_icons/file_open.png", QSize(32, 32));
  4. fileOpenIcon.addFile(":/large_icons/file_open.png", QSize(64, 64));
  5.  
  6. ...
  7.  
  8. actionFileOpen->setIcon(fileOpenIcon);
To copy to clipboard, switch view to plain text mode 

It's possible to do the same thing in action editor?

Thanks and sorry for my english