Generic physical phone key to SDL key remapper, only dialog is implemented - it's not saved and not working yet

This commit is contained in:
pelya
2010-12-07 20:05:52 +02:00
parent dfb09282c8
commit 3dd4da9b0b
7 changed files with 114 additions and 15 deletions

View File

@@ -3,10 +3,13 @@ package net.sourceforge.clonekeenplus;
import android.app.Activity;
import android.content.Context;
import java.util.Vector;
class Globals {
public static String ApplicationName = "CommanderGenius";
public static final boolean Using_SDL_1_3 = false;
// Should be zip file
public static String DataDownloadUrl = "Data files are 2 Mb|https://sourceforge.net/projects/libsdl-android/files/CommanderGenius/commandergenius-data.zip/download^High-quality GFX and music - 40 Mb|https://sourceforge.net/projects/libsdl-android/files/CommanderGenius/commandergenius-hqp.zip/download";
@@ -78,6 +81,8 @@ class Globals {
public static boolean KeepAspectRatio = false;
public static int ClickScreenPressure = 0;
public static int ClickScreenTouchspotSize = 0;
public static Vector<Integer> RemapHwKeycodeJava = new Vector<Integer>();
public static Vector<Integer> RemapHwKeycodeSdl = new Vector<Integer>();
}
class LoadLibrary {