Add facility to read frames in RGB & RGBA format
[imageviewer.git] / transformDialog.h
blobff6e8694462c5ceb27c626bf79b167fca57997fe
1 /* ***** BEGIN LICENSE BLOCK *****
3 * $Id$
5 * The MIT License
7 * Copyright (c) 2008 BBC Research
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 * THE SOFTWARE.
27 * ***** END LICENSE BLOCK ***** */
29 #ifndef TRANSFORMDIALOG_H
30 #define TRANSFORMDIALOG_H
32 #include <QtGui>
34 class TransformDialog : public QDialog
36 Q_OBJECT
38 public:
39 TransformDialog(const QString &name, QWidget *parent=0);
41 signals:
42 void zoomChanged(float value);
43 void rotationChanged(int value);
45 public slots:
46 void setZoom(float value);
47 void setRotation(int value);
49 private slots:
50 void resetZoom(void);
51 void zoomNumberChanged(double value);
52 void zoomSliderChanged(int value);
53 void resetRotation(void);
54 void rotationValueChanged(int value);
56 private:
57 QLabel *zoomLabel;
58 QPushButton *zoomReset;
59 QDoubleSpinBox *zoomNumber;
60 QSlider *zoomSlider;
62 QLabel *rotationLabel;
63 QPushButton *rotationReset;
64 QSpinBox *rotationNumber;
65 QSlider *rotationSlider;
67 float zoomRatio;
68 int rotation;
71 #endif