#include <QtGui/qstyleoption.h>
#ifndef QSTYLEOPTION_H
class QStyleOptionQ3ListViewItem: public QStyleOption{
   /* Some contents are skipped to improve readability */
   public: enum Q3ListViewItemFeature{
      None = 0,
      Expandable = 1,
      MultiLine = 2,
      Visible = 4,
      ParentControl = 8,
   };
   /* ... */
};
#endif // QSTYLEOPTION_H