Pencil2D  ff90c0872e88be3bf81c548cd60f01983012ec49
Pencil2D is an animation software for both bitmap and vector graphics. It is free, multi-platform, and open source.
 All Classes Functions
backgroundwidget.h
1 /*
2 
3 Pencil - Traditional Animation Software
4 Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
5 Copyright (C) 2012-2017 Matthew Chiawen Chang
6 
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; version 2 of the License.
10 
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15 
16 */
17 
18 #ifndef BACKGROUNDWIDGET_H
19 #define BACKGROUNDWIDGET_H
20 
21 #include <QWidget>
22 #include "preferencemanager.h"
23 
24 class BackgroundWidget : public QWidget
25 {
26  Q_OBJECT
27 public:
28  BackgroundWidget( QWidget *parent );
30 
31  void init(PreferenceManager* prefs);
32 
33 signals:
34 
35 public slots:
36 
37 protected:
38 
39  void paintEvent( QPaintEvent* ) override;
40 
41 
42 private slots:
43 
44  void settingUpdated(SETTING setting);
45 
46 private:
47 
48  void drawShadow(QPainter &painter);
49  void loadBackgroundStyle();
50 
51  PreferenceManager* mPrefs = nullptr;
52 
53  QString mStyle;
54  bool mHasShadow = false;
55 
56 };
57 
58 #endif // BACKGROUNDWIDGET_H