#include <QtGui/qframe.h>
#ifndef QFRAME_H
class QFrame: public QWidget{
   /* Some contents are skipped to improve readability */
   public: enum Shadow{
      Plain = 16,
      Raised = 32,
      Sunken = 48,
   };
   /* ... */
};
#endif // QFRAME_H