summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/effects.h
authorsandman <sandman>2002-06-24 17:07:45 (UTC)
committer sandman <sandman>2002-06-24 17:07:45 (UTC)
commitf284f40fe5912736666a56143705f260d14feb34 (patch) (unidiff)
tree2aa6dee5e26aaeffc3505ca0c536651bce09cfe6 /noncore/styles/liquid/effects.h
parentdb5385bc16f56b4c5b84ad4a92ac6bdd46eea321 (diff)
downloadopie-f284f40fe5912736666a56143705f260d14feb34.zip
opie-f284f40fe5912736666a56143705f260d14feb34.tar.gz
opie-f284f40fe5912736666a56143705f260d14feb34.tar.bz2
Inital checkin of liquid style for OPIE
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