summaryrefslogtreecommitdiff
path: root/tools/icons/collapse.py
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2019-01-23 20:16:14 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2019-01-23 20:16:14 (GMT)
commitd0a287a4e57b299cec22c94b028e3553d5b36fcd (patch)
tree86a274d6c894ec6506f0b5d55436d958a556f9fc /tools/icons/collapse.py
parentf251814cf0fd10a767972530c119f8f109613c48 (diff)
Prepared a toolbar for actions on basic blocks.
Diffstat (limited to 'tools/icons/collapse.py')
-rw-r--r--tools/icons/collapse.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/tools/icons/collapse.py b/tools/icons/collapse.py
new file mode 100644
index 0000000..c3fe508
--- /dev/null
+++ b/tools/icons/collapse.py
@@ -0,0 +1,46 @@
+#!/usr/bin/env python
+
+import cairo
+import sys
+
+
+WIDTH, HEIGHT = 256, 256
+WIDTH, HEIGHT = 12, 12
+
+surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, WIDTH, HEIGHT)
+ctx = cairo.Context(surface)
+
+ctx.scale(WIDTH, HEIGHT)
+
+if len(sys.argv) > 1 and sys.argv[1] == '--dark':
+ ctx.set_source_rgb(1.0, 1.0, 1.0)
+ dark = '_dark'
+else:
+ ctx.set_source_rgb(0.0, 0.0, 0.0)
+ dark = ''
+
+ctx.move_to(0.4, 0.4)
+ctx.line_to(0.4, 0.0)
+ctx.line_to(0.0, 0.4)
+
+ctx.fill()
+
+ctx.move_to(0.6, 0.4)
+ctx.line_to(0.6, 0.0)
+ctx.line_to(1.0, 0.4)
+
+ctx.fill()
+
+ctx.move_to(0.6, 0.6)
+ctx.line_to(1.0, 0.6)
+ctx.line_to(0.6, 1.0)
+
+ctx.fill()
+
+ctx.move_to(0.4, 0.6)
+ctx.line_to(0.4, 1.0)
+ctx.line_to(0.0, 0.6)
+
+ctx.fill()
+
+surface.write_to_png('../../pixmaps/collapse%s.png' % dark)