#include <QtGui/qframe.h>
#ifndef QFRAME_H
class QFrame: public QWidget{
   /* Some contents are skipped to improve readability */
   public: enum Shape{
      NoFrame = 0,
      Box = 1,
      Panel = 2,
      WinPanel = 3,
      HLine = 4,
      VLine = 5,
      StyledPanel = 6,
   };
   /* ... */
};
#endif // QFRAME_H