Scribus
Open source desktop publishing at your fingertips
charzoom.h
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 
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 *);
25  QPixmap pixm;
27  QString valu;
28 };
29 
30 #endif
Base Class ScFace : This is a total rewrite of the old Foi class.
Definition: scface.h:73
"A magnifying glass" dialog for CharTableView cell.
Definition: charzoom.h:15