for example if i re-implement
Qt Code:
  1. QPushButton: : setText(const QString &)
To copy to clipboard, switch view to plain text mode 
in subclass of QPushButton like this, what will happen?
Qt Code:
  1. void MyPushButton::setText(const QString &text)
  2. {
  3. QPushButton::setText(text);
  4. //do sth. i would like
  5. {
  6. .....
  7. }
  8. }
To copy to clipboard, switch view to plain text mode