]> git.sesse.net Git - kdenlive/blobdiff - src/videoglwidget.h
Fix indent, minor optimization. Const'ref etc.
[kdenlive] / src / videoglwidget.h
index 9b089da53910ef5e8ebc6f181d72de16b04f84f4..c9016e64d2b880fa50234b09ade38e56aba6d748 100644 (file)
@@ -9,15 +9,13 @@ class VideoGLWidget : public QGLWidget
     Q_OBJECT
 
 public:
-    VideoGLWidget(QWidget *parent = 0);
+    explicit VideoGLWidget(QWidget *parent = 0);
     ~VideoGLWidget();
-
+    void activateMonitor();
     QSize minimumSizeHint() const;
     QSize sizeHint() const;
-    void setImageAspectRatio(double ratio) {
-        m_display_ratio = ratio;
-    }
-    void setBackgroundColor(QColor color) {
+    void setImageAspectRatio(double ratio);
+    void setBackgroundColor(const QColor &color) {
         m_backgroundColor = color;
     }
 
@@ -27,14 +25,17 @@ private:
     GLuint m_texture;
     double m_display_ratio;
     QColor m_backgroundColor;
+    Qt::WindowFlags m_baseFlags;
 
 public slots:
-    void showImage(QImage image);
+    void showImage(const QImage &image);
 
 protected:
     void initializeGL();
     void resizeGL(int width, int height);
+    void resizeEvent(QResizeEvent* event);
     void paintGL();
+    void mouseDoubleClickEvent(QMouseEvent * event);
 };
 
 #endif