Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 222 → Rev 223

/DUBwise/trunk/j2me/src/DUBwiseUIDefinitions.java
3,7 → 3,7
 
 
// id for each state - must just be uniq - order isnt important
public final static byte STATEID_SCANNING =0;
public final static byte STATEID_INITIAL =0;
public final static byte STATEID_DEVICESELECT =1;
public final static byte STATEID_MAINMENU =2;
public final static byte STATEID_MOTORTEST =3;
33,6 → 33,8
public final static byte STATEID_HORIZON =27;
//public final static byte STATEID_SELECT_SPEED_FORMAT=28;
public final static byte STATEID_STRINGINPUT =29;
public final static byte STATEID_SCANNING =30;
public final static byte LAST_STATEID =30;
 
 
 
63,7 → 65,8
public final static byte ACTIONID_MAINMENU = 21;
 
public final static byte ACTIONID_HORIZON = 22;
public final static byte ACTIONID_HORIZON = 22;
public final static byte ACTIONID_WRITE_PARAM_AS = 23;
// public final static byte ACTIONID_SOUNDTOGGLE = 23;
// public final static byte ACTIONID_VIBRATOGGLE = 24;
// public final static byte ACTIONID_GRAPHTOGGLE = 25;
100,8 → 103,8
 
 
 
public final static String[] handle_params_menu_items={"write to MK","don't write to MK","discard/read again","rename","all to default"};
public final static byte[] handle_params_menu_actions={ACTIONID_WRITE_PARAMS,ACTIONID_MAINMENU,ACTIONID_UNDO_PARAMS,ACTIONID_RENAME_PARAMS,ACTIONID_RESET_PARAMS};
public final static String[] handle_params_menu_items={"save","save as","discard/read again","rename","all to default","to Main-Menu"};
public final static byte[] handle_params_menu_actions={ACTIONID_WRITE_PARAMS,ACTIONID_WRITE_PARAM_AS,ACTIONID_UNDO_PARAMS,ACTIONID_RENAME_PARAMS,ACTIONID_RESET_PARAMS,ACTIONID_MAINMENU};