You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
497 B
27 lines
497 B
#ifndef BLURDIALOG_HPP |
|
#define BLURDIALOG_HPP |
|
|
|
#include <QDialog> |
|
#include <QGraphicsBlurEffect> |
|
|
|
namespace Ui { |
|
class BlurDialog; |
|
} |
|
|
|
class BlurDialog : public QDialog { |
|
Q_OBJECT |
|
|
|
public: |
|
explicit BlurDialog(QGraphicsBlurEffect *effect, QWidget *parent = 0); |
|
~BlurDialog(); |
|
|
|
private slots: |
|
void on_radSpinner_valueChanged(double arg1); |
|
void on_radSlider_sliderMoved(int position); |
|
|
|
private: |
|
Ui::BlurDialog *ui; |
|
QGraphicsBlurEffect *effect; |
|
}; |
|
|
|
#endif // BLURDIALOG_HPP
|
|
|