blob: d6d596a8c9fd8cd651cbeec293c181d15389b451 [file] [log] [blame]
Edric Milaret864a2052016-01-14 15:45:03 -05001/***************************************************************************
2 * Copyright (C) 2016 by Savoir-faire Linux *
3 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
19#pragma once
20
21#include <QDialog>
22
Nicolas Jager0a9fc602016-03-11 18:35:42 -050023class QPropertyAnimation;
24class QGraphicsOpacityEffect;
25
Edric Milaret864a2052016-01-14 15:45:03 -050026namespace Ui {
27class QualityDialog;
28}
29
30class QualityDialog : public QDialog
31{
32 Q_OBJECT
33
34public:
35 explicit QualityDialog(QWidget *parent = 0);
36 ~QualityDialog();
37
38protected:
39 void showEvent(QShowEvent* event);
Nicolas Jager0a9fc602016-03-11 18:35:42 -050040 void closeEvent(QCloseEvent* event);
Edric Milaret864a2052016-01-14 15:45:03 -050041
42private slots:
43 void on_autoCheckBox_toggled(bool checked);
44 void on_qualitySlider_sliderReleased();
45
46private:
47 Ui::QualityDialog *ui;
48 void setQuality();
Nicolas Jager0a9fc602016-03-11 18:35:42 -050049 QPixmap* spikeMask_;
50 QPropertyAnimation* fadeAnim_;
51 constexpr static int fadeOverlayTime_ = 250; //msec
52 QGraphicsOpacityEffect* effect_;
53
54signals:
55 void isVisible(bool visible);
56
Edric Milaret864a2052016-01-14 15:45:03 -050057};