home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / charzoom.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-05-24  |  511 b   |  31 lines

  1. #ifndef CHARZOOM_H
  2. #define CHARZOOM_H
  3.  
  4. #include <QDialog>
  5.  
  6. #include "scribusapi.h"
  7.  
  8. class ScFace;
  9. class QPixmap;
  10. class QPaintEvent;
  11.  
  12.  
  13. /*! \brief "A magnifying glass" dialog for CharTableView cell.
  14. */
  15. class SCRIBUS_API CharZoom : public QDialog
  16. {
  17.     Q_OBJECT
  18.  
  19.     public:
  20.         CharZoom(QWidget* parent, uint currentChar, ScFace face);
  21.         ~CharZoom() {};
  22.     private:
  23.         void paintEvent(QPaintEvent *);
  24.         //! \brief Pixmap generated in constructor
  25.         QPixmap pixm;
  26.         //! \brief A hex value as string
  27.         QString valu;
  28. };
  29.  
  30. #endif
  31.