As to QComboBox you could try the following:
1. Set styled item delegate to your combobox:
Qt Code:
  1. combo->setItemDelegate( new QStyledItemDelegate );
To copy to clipboard, switch view to plain text mode 
2. Set style-sheet like the following:
Qt Code:
  1. min-height : 32px;
  2. }
To copy to clipboard, switch view to plain text mode