summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/effects.h
Unidiff
Diffstat (limited to 'noncore/styles/liquid/effects.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/styles/liquid/effects.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/noncore/styles/liquid/effects.h b/noncore/styles/liquid/effects.h
new file mode 100644
index 0000000..23c3f0a
--- a/dev/null
+++ b/noncore/styles/liquid/effects.h
@@ -0,0 +1,20 @@
1#ifndef __EFFECTS_H__
2#define __EFFECTS_H__
3
4class QImage;
5class QPixmap;
6class QColor;
7
8class QImageEffect {
9 public:
10 static QImage &fade ( QImage &, float, const QColor & );
11};
12
13class QPixmapEffect {
14 public:
15 static QPixmap &fade ( QPixmap &, float, const QColor & );
16};
17
18
19#endif
20