I can change titlebar hegiht and frame width using qstyle like this :

Qt Code:
  1. int MyStyle::pixelMetric(PixelMetric which, const QStyleOption *option, const QWidget *widget) const
  2. {
  3. switch (which)
  4. {
  5. case PM_DefaultFrameWidth:
  6. return 5;
  7. case PM_TitleBarHeight:
  8. return 50;
  9. default:
  10. return QWindowsStyle::pixelMetric(which, option, widget);
  11. }
  12. }
To copy to clipboard, switch view to plain text mode 

but I want to change them using style sheet.

Is it possible?
I search method to change them using style sheet some hours, but I can't find.

Can I change titlebar height and frame width only using qstyle??