]> git.sesse.net Git - kdenlive/blobdiff - src/videoglwidget.h
Const'ref
[kdenlive] / src / videoglwidget.h
index a7cd3b215afcdce87caf7612adc9f6360c49bb48..99e22e4e3dbc37fb5939c856919fa5fb67484823 100644 (file)
@@ -19,16 +19,8 @@ public:
         m_backgroundColor = color;
     }
 
-private:
-    int x, y, w, h;
-    int m_image_width, m_image_height;
-    GLuint m_texture;
-    double m_display_ratio;
-    QColor m_backgroundColor;
-    Qt::WindowFlags m_baseFlags;
-
 public slots:
-    void showImage(const QImage image);
+    void showImage(const QImage &image);
 
 protected:
     void initializeGL();
@@ -36,6 +28,14 @@ protected:
     void resizeEvent(QResizeEvent* event);
     void paintGL();
     void mouseDoubleClickEvent(QMouseEvent * event);
+
+private:
+    int x, y, w, h;
+    int m_image_width, m_image_height;
+    GLuint m_texture;
+    double m_display_ratio;
+    QColor m_backgroundColor;
+    Qt::WindowFlags m_baseFlags;
 };
 
 #endif