kviewshell
sizePreview.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef SIZEPREVIEW_H
00012 #define SIZEPREVIEW_H
00013
00014 #include <qpixmap.h>
00015 #include <qwidget.h>
00016
00017 class SimplePageSize;
00018
00019 class SizePreview : public QWidget
00020 {
00021 Q_OBJECT
00022
00023 public:
00024 SizePreview( QWidget *parent, const char* name=0, WFlags f=0 );
00025
00026 public slots:
00027
00028 void setSize(const SimplePageSize&);
00029
00030
00031 void setOrientation(int ori);
00032
00033 protected:
00034 void paintEvent(QPaintEvent*);
00035 void resizeEvent(QResizeEvent*);
00036
00037 private:
00038 int orientation;
00039
00040
00041 float _width;
00042 float _height;
00043
00044 QPixmap pixmap;
00045 };
00046
00047 #endif