#include <QtGui/qstyle.h>
#ifndef QSTYLE_H
class QStyle: public QObject{
   /* Some contents are skipped to improve readability */
   public: enum ComplexControl{
      CC_SpinBox = 0,
      CC_ComboBox = 1,
      CC_ScrollBar = 2,
      CC_Slider = 3,
      CC_ToolButton = 4,
      CC_TitleBar = 5,
      CC_Q3ListView = 6,
      CC_Dial = 7,
      CC_GroupBox = 8,
      CC_CustomBase = -268435456,
   };
   /* ... */
};
#endif // QSTYLE_H