#include <QtGui/qcombobox.h>
#ifndef QCOMBOBOX_H
#ifndef QT_NO_COMBOBOX
class QComboBox: public QWidget{
   /* Some contents are skipped to improve readability */
   public: enum InsertPolicy{
      NoInsert = 0,
      InsertAtTop = 1,
      InsertAtCurrent = 2,
      InsertAtBottom = 3,
      InsertAfterCurrent = 4,
      InsertBeforeCurrent = 5,
      InsertAlphabetically = 6,
   };
   /* ... */
};
#endif // QT_NO_COMBOBOX
#endif // QCOMBOBOX_H