#include <QtGui/qprinter.h>
#ifndef QPRINTER_H
#ifndef QT_NO_PRINTER
class QPrinter: public QPaintDevice{
   /* Some contents are skipped to improve readability */
   public: enum PaperSource{
      OnlyOne = 0,
      Lower = 1,
      Middle = 2,
      Manual = 3,
      Envelope = 4,
      EnvelopeManual = 5,
      Auto = 6,
      Tractor = 7,
      SmallFormat = 8,
      LargeFormat = 9,
      LargeCapacity = 10,
      Cassette = 11,
      FormSource = 12,
   };
   /* ... */
};
#endif // QT_NO_PRINTER
#endif // QPRINTER_H