summaryrefslogtreecommitdiff
path: root/systems/android/hktex/HKtex2/src/worker4math/hktex2/DocumentBitmap.java
diff options
context:
space:
mode:
Diffstat (limited to 'systems/android/hktex/HKtex2/src/worker4math/hktex2/DocumentBitmap.java')
-rw-r--r--systems/android/hktex/HKtex2/src/worker4math/hktex2/DocumentBitmap.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/systems/android/hktex/HKtex2/src/worker4math/hktex2/DocumentBitmap.java b/systems/android/hktex/HKtex2/src/worker4math/hktex2/DocumentBitmap.java
new file mode 100644
index 0000000000..0fe9712489
--- /dev/null
+++ b/systems/android/hktex/HKtex2/src/worker4math/hktex2/DocumentBitmap.java
@@ -0,0 +1,29 @@
+//
+// Latex Project Public Licence (lppl1.3) applies
+// Originally written by Kwanleung Tse
+// First Release : 1st July, 2014
+// Last Update : 27th September, 2014
+//
+//
+
+package worker4math.hktex2;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import android.graphics.Bitmap;
+
+public class DocumentBitmap {
+
+ public static final ArrayList<String> bitmapname = new ArrayList<String>();
+ public static ArrayList<String> usedbitmap = new ArrayList<String>();
+ public static HashMap<String,Bitmap> bitmap = new HashMap<String,Bitmap>();
+ public static HashMap<String,Float> bitmapwidth = new HashMap<String,Float>();
+ public static HashMap<String,Float> bitmapheight = new HashMap<String,Float>();
+
+ public void documentbitmap(){
+ bitmapname.add("leftarrow.png");
+ bitmapname.add("rightarrow.png");
+ bitmapname.add("leftendarrow.png");
+ bitmapname.add("rightendarrow.png");
+ }
+}