aboutsummaryrefslogtreecommitdiff
path: root/plugins/omemo/vapi
diff options
context:
space:
mode:
authorSamuel Hand <samuel.d.hand@gmail.com>2018-08-08 21:57:24 +0100
committerSamuel Hand <samuel.d.hand@gmail.com>2018-08-08 22:02:51 +0100
commit18419b3268c2b00d1099b55a22a1c11c349bafd9 (patch)
tree9a601a2ff9a658a605ee6aa7248941db734c9c7b /plugins/omemo/vapi
parentcdaa29d7f08fcee1099c53184ba8b36bb93a1bc1 (diff)
downloaddino-18419b3268c2b00d1099b55a22a1c11c349bafd9.tar.gz
dino-18419b3268c2b00d1099b55a22a1c11c349bafd9.zip
Show a verification QR code for an accounts own key
Diffstat (limited to 'plugins/omemo/vapi')
-rw-r--r--plugins/omemo/vapi/qrencode.vapi50
1 files changed, 50 insertions, 0 deletions
diff --git a/plugins/omemo/vapi/qrencode.vapi b/plugins/omemo/vapi/qrencode.vapi
new file mode 100644
index 00000000..54c201ab
--- /dev/null
+++ b/plugins/omemo/vapi/qrencode.vapi
@@ -0,0 +1,50 @@
+using Gdk;
+
+[CCode (cheader_filename = "qrencode.h")]
+namespace Qrencode {
+
+ [CCode (cname = "QRecLevel", cprefix = "QR_ECLEVEL_")]
+ public enum ECLevel {
+ L,
+ M,
+ Q,
+ H
+ }
+
+ [CCode (cname = "QRencodeMode", cprefix = "QR_MODE_")]
+ public enum EncodeMode {
+ NUL,
+ NUM,
+ AN,
+ [CCode (cname = "QR_MODE_8")]
+ EIGHT_BIT,
+ KANJI,
+ STRUCTURE,
+ ECI,
+ FNC1FIRST,
+ FNC1SECOND
+ }
+
+ [CCode (cname = "QRcode", free_function = "QRcode_free", has_type_id = false)]
+ [Compact]
+ public class QRcode {
+ private int version;
+ private int width;
+ [CCode (array_length = false)]
+ private uint8[] data;
+
+ [CCode (cname = "QRcode_encodeString")]
+ public QRcode (string str, int version = 0, ECLevel level = ECLevel.L, EncodeMode hint = EncodeMode.EIGHT_BIT, bool casesensitive = true);
+
+ public Pixbuf to_pixbuf() {
+ uint8[] bitmap = new uint8[3*width*width];
+ for (int i = 0; i < width*width; i++) {
+ uint8 color = (data[i] & 1) == 1 ? 0 : 255;
+ bitmap[i*3] = color;
+ bitmap[i*3+1] = color;
+ bitmap[i*3+2] = color;
+ }
+ return new Pixbuf.from_data(bitmap, Colorspace.RGB, false, 8, width, width, width*3);
+ }
+ }
+}