aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-07-17 17:30:58 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-07-17 17:31:37 +0200
commit8dcffd4d0717e71226da8c3a848b7b6905074637 (patch)
treec7f8c90d0bd27fb9538caf7f9a2b7b79a1a8e845 /scripts
parent5df0b03c950184b2e2fdbfc6e9f8075dcf81c75c (diff)
downloadbitcoin-8dcffd4d0717e71226da8c3a848b7b6905074637.tar.xz
show rotating spinner when block download out of date, tick otherwise
Diffstat (limited to 'scripts')
-rw-r--r--scripts/img/reload.xcfbin0 -> 28597 bytes
-rw-r--r--scripts/img/reload_scaled.pngbin0 -> 905 bytes
-rwxr-xr-xscripts/make_spinner.py41
3 files changed, 41 insertions, 0 deletions
diff --git a/scripts/img/reload.xcf b/scripts/img/reload.xcf
new file mode 100644
index 0000000000..c3ce165adb
--- /dev/null
+++ b/scripts/img/reload.xcf
Binary files differ
diff --git a/scripts/img/reload_scaled.png b/scripts/img/reload_scaled.png
new file mode 100644
index 0000000000..9a45b1bd1d
--- /dev/null
+++ b/scripts/img/reload_scaled.png
Binary files differ
diff --git a/scripts/make_spinner.py b/scripts/make_spinner.py
new file mode 100755
index 0000000000..c1f94c12c2
--- /dev/null
+++ b/scripts/make_spinner.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+# W.J. van der Laan, 2011
+# Make spinning .mng animation from a .png
+# Requires imagemagick 6.7+
+from __future__ import division
+from os import path
+from PIL import Image
+from subprocess import Popen
+
+SRC='img/reload_scaled.png'
+DST='../src/qt/res/movies/update_spinner.mng'
+TMPDIR='/tmp'
+TMPNAME='tmp-%03i.png'
+NUMFRAMES=35
+FRAMERATE=10.0
+CONVERT='convert'
+CLOCKWISE=True
+
+im_src = Image.open(SRC)
+
+if CLOCKWISE:
+ im_src = im_src.transpose(Image.FLIP_LEFT_RIGHT)
+
+def frame_to_filename(frame):
+ return path.join(TMPDIR, TMPNAME % frame)
+
+frame_files = []
+for frame in xrange(NUMFRAMES):
+ rotation = (frame + 0.5) / NUMFRAMES * 360.0
+ if CLOCKWISE:
+ rotation = -rotation
+ im_new = im_src.rotate(rotation, Image.BICUBIC)
+ outfile = frame_to_filename(frame)
+ im_new.save(outfile, 'png')
+ frame_files.append(outfile)
+
+p = Popen([CONVERT, "-delay", str(FRAMERATE), "-dispose", "2"] + frame_files + [DST])
+p.communicate()
+
+
+