]> git.sesse.net Git - kdenlive/blobdiff - src/colorpickerwidget.h
const'ref.
[kdenlive] / src / colorpickerwidget.h
index 16782e79d7656e9854e45ae6b5a75aa5a372b1bf..def14f1f79f9b666a90130248456dd6a15eabcaf 100644 (file)
 
 #include <QtCore>
 #include <QWidget>
+#include <QFrame>
 
-class QSpinBox;
 class QFrame;
 #ifdef Q_WS_X11
 #include <X11/Xlib.h>
 #endif
 
 
+class MyFrame : public QFrame
+{
+    Q_OBJECT
+public:
+    MyFrame(QWidget* parent = 0);
+
+protected:
+    virtual void hideEvent ( QHideEvent * event );
+
+signals:
+    void getColor();
+};
+
 /**
  * @class ColorPickerWidget
  * @brief A widget to pick a color anywhere on the screen.
@@ -45,7 +58,7 @@ class ColorPickerWidget : public QWidget
 
 public:
     /** @brief Sets up the widget. */
-    ColorPickerWidget(QWidget *parent = 0);
+    explicit ColorPickerWidget(QWidget *parent = 0);
     /** @brief Makes sure the event filter is removed. */
     virtual ~ColorPickerWidget();
 
@@ -82,8 +95,10 @@ private slots:
     void slotGetAverageColor();
 
 signals:
-    void colorPicked(QColor);
+    void colorPicked(const QColor&);
     void displayMessage(const QString&, int);
+    /** @brief When user wants to pick a color, it's better to disable filter so we get proper color values. */
+    void disableCurrentFilter(bool);
 };
 
 #endif