summaryrefslogtreecommitdiffstats
path: root/kviewshell/sizePreview.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit47d455dd55be855e4cc691c32f687f723d9247ee (patch)
tree52e236aaa2576bdb3840ebede26619692fed6d7d /kviewshell/sizePreview.h
downloadtdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz
tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kviewshell/sizePreview.h')
-rw-r--r--kviewshell/sizePreview.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/kviewshell/sizePreview.h b/kviewshell/sizePreview.h
new file mode 100644
index 00000000..4d5a5b3b
--- /dev/null
+++ b/kviewshell/sizePreview.h
@@ -0,0 +1,47 @@
+// -*- C++ -*-
+// SizePreview.h
+//
+// Part of KVIEWSHELL - A framework for multipage text/gfx viewers
+//
+// (C) 2002 Stefan Kebekus
+// Distributed under the GPL
+
+// Add header files alphabetically
+
+#ifndef SIZEPREVIEW_H
+#define SIZEPREVIEW_H
+
+#include <qpixmap.h>
+#include <qwidget.h>
+
+class SimplePageSize;
+
+class SizePreview : public QWidget
+{
+ Q_OBJECT
+
+public:
+ SizePreview( QWidget *parent, const char* name=0, WFlags f=0 );
+
+public slots:
+ // Sets the size.
+ void setSize(const SimplePageSize&);
+
+ // or = 0 means "Portrait", anything else means "Landscape"
+ void setOrientation(int ori);
+
+protected:
+ void paintEvent(QPaintEvent*);
+ void resizeEvent(QResizeEvent*);
+
+private:
+ int orientation; // 0 = portrait, other = landscape
+
+ // Both must be positive at all times!
+ float _width; // in mm
+ float _height; // in mm
+
+ QPixmap pixmap;
+};
+
+#endif