Look at the code below......
I'm adding an item to the contextMenu like this.....where restore1() is a custom method.....

QMenu menu(this);
QAction *restore = menu.addAction(tr("&restore"));
restore->setShortcut(Qt::CTRL | Qt::Key_R);
connect(restore,SIGNAL(triggered()),this,SLOT(rest ore1()));

Until here its working fine but .....now i would like to add an Image before the context menu item (restore in this case.....) and not only that ......I want make the display of custom menu item(which is restore here) look BOLD...........