diff options
author | Ariya Hidayat <ariya.hidayat@nokia.com> | 2009-06-02 12:53:22 (GMT) |
---|---|---|
committer | Ariya Hidayat <ariya.hidayat@nokia.com> | 2009-06-02 12:53:22 (GMT) |
commit | 295c3927eb236483e6fd2e59f7588f35baa75ea2 (patch) | |
tree | b086f67e73d81c6582a810a391e575c9f8090ac5 /examples | |
parent | 8353f8b91246024563403d5cf416964fff414f46 (diff) | |
download | Qt-295c3927eb236483e6fd2e59f7588f35baa75ea2.zip Qt-295c3927eb236483e6fd2e59f7588f35baa75ea2.tar.gz Qt-295c3927eb236483e6fd2e59f7588f35baa75ea2.tar.bz2 |
Another QGraphicsEffect example: application chooser with blur effect.
Use left and right arrow to rotate the icons wheel. The blur effect
is applied to each icon, the farthest icon becomes the most blurry one.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/graphicsview/blurpicker/images/README.txt | 5 | ||||
-rw-r--r-- | examples/graphicsview/blurpicker/images/accessories-calculator.png | bin | 0 -> 3760 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/accessories-text-editor.png | bin | 0 -> 4746 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/background.jpg | bin | 0 -> 16259 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/help-browser.png | bin | 0 -> 5392 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/internet-group-chat.png | bin | 0 -> 2809 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/internet-mail.png | bin | 0 -> 3899 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/internet-web-browser.png | bin | 0 -> 6376 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/office-calendar.png | bin | 0 -> 4010 bytes | |||
-rw-r--r-- | examples/graphicsview/blurpicker/images/system-users.png | bin | 0 -> 5353 bytes | |||
-rw-r--r-- | examples/graphicsview/graphicsview.pro | 1 |
11 files changed, 6 insertions, 0 deletions
diff --git a/examples/graphicsview/blurpicker/images/README.txt b/examples/graphicsview/blurpicker/images/README.txt new file mode 100644 index 0000000..0927e17 --- /dev/null +++ b/examples/graphicsview/blurpicker/images/README.txt @@ -0,0 +1,5 @@ +The background is taken from a public domain photo at: +http://www.photos8.com/view/computer_board2-800x600.html + +All other icons are from the Tango Desktop project: +http://tango.freedesktop.org/Tango_Desktop_Project diff --git a/examples/graphicsview/blurpicker/images/accessories-calculator.png b/examples/graphicsview/blurpicker/images/accessories-calculator.png Binary files differnew file mode 100644 index 0000000..4e7661f --- /dev/null +++ b/examples/graphicsview/blurpicker/images/accessories-calculator.png diff --git a/examples/graphicsview/blurpicker/images/accessories-text-editor.png b/examples/graphicsview/blurpicker/images/accessories-text-editor.png Binary files differnew file mode 100644 index 0000000..33bef0b --- /dev/null +++ b/examples/graphicsview/blurpicker/images/accessories-text-editor.png diff --git a/examples/graphicsview/blurpicker/images/background.jpg b/examples/graphicsview/blurpicker/images/background.jpg Binary files differnew file mode 100644 index 0000000..e75b388 --- /dev/null +++ b/examples/graphicsview/blurpicker/images/background.jpg diff --git a/examples/graphicsview/blurpicker/images/help-browser.png b/examples/graphicsview/blurpicker/images/help-browser.png Binary files differnew file mode 100644 index 0000000..8ef4fae --- /dev/null +++ b/examples/graphicsview/blurpicker/images/help-browser.png diff --git a/examples/graphicsview/blurpicker/images/internet-group-chat.png b/examples/graphicsview/blurpicker/images/internet-group-chat.png Binary files differnew file mode 100644 index 0000000..dd92d93 --- /dev/null +++ b/examples/graphicsview/blurpicker/images/internet-group-chat.png diff --git a/examples/graphicsview/blurpicker/images/internet-mail.png b/examples/graphicsview/blurpicker/images/internet-mail.png Binary files differnew file mode 100644 index 0000000..7e6b93b --- /dev/null +++ b/examples/graphicsview/blurpicker/images/internet-mail.png diff --git a/examples/graphicsview/blurpicker/images/internet-web-browser.png b/examples/graphicsview/blurpicker/images/internet-web-browser.png Binary files differnew file mode 100644 index 0000000..a979a92 --- /dev/null +++ b/examples/graphicsview/blurpicker/images/internet-web-browser.png diff --git a/examples/graphicsview/blurpicker/images/office-calendar.png b/examples/graphicsview/blurpicker/images/office-calendar.png Binary files differnew file mode 100644 index 0000000..e095906 --- /dev/null +++ b/examples/graphicsview/blurpicker/images/office-calendar.png diff --git a/examples/graphicsview/blurpicker/images/system-users.png b/examples/graphicsview/blurpicker/images/system-users.png Binary files differnew file mode 100644 index 0000000..a7f630a --- /dev/null +++ b/examples/graphicsview/blurpicker/images/system-users.png diff --git a/examples/graphicsview/graphicsview.pro b/examples/graphicsview/graphicsview.pro index 7e372fa..185c856 100644 --- a/examples/graphicsview/graphicsview.pro +++ b/examples/graphicsview/graphicsview.pro @@ -7,6 +7,7 @@ SUBDIRS = \ dragdroprobot \ padnavigator \ lighting \ + blurpicker \ basicgraphicslayouts contains(QT_CONFIG, qt3support):SUBDIRS += portedcanvas portedasteroids |