Subversion Repositories Projects

Rev

Rev 252 | Rev 258 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 252 Rev 255
Line 1... Line 1...
1
public interface DUBwiseUIDefinitions
1
public interface DUBwiseUIDefinitions
-
 
2
 
2
{
3
{
Line -... Line 4...
-
 
4
 
3
 
5
 
4
    // colors
6
    // colors
5
    public final static int BG_COLOR_SKIN_DARK  = 0x000000;    
7
    public final static int BG_COLOR_SKIN_DARK  = 0x000000;    
6
    public final static int BG_COLOR_SKIN_LIGHT = 0xFFFFFF;    
8
    public final static int BG_COLOR_SKIN_LIGHT = 0xFFFFFF;    
7
    public final static int FG_COLOR_SKIN_DARK  = 0xFFFFFF;    
9
    public final static int FG_COLOR_SKIN_DARK  = 0xFFFFFF;    
Line 42... Line 44...
42
    public final static byte STATEID_STRINGINPUT      =29;
44
    public final static byte STATEID_STRINGINPUT      =29;
43
    public final static byte STATEID_SCANNING         =30;
45
    public final static byte STATEID_SCANNING         =30;
44
    public final static byte STATEID_RESET_PARAMS     =31;
46
    public final static byte STATEID_RESET_PARAMS     =31;
45
    public final static byte STATEID_PARAM_MENU       =32;
47
    public final static byte STATEID_PARAM_MENU       =32;
46
    public final static byte STATEID_PARAM_MASSWRITE  =33;
48
    public final static byte STATEID_PARAM_MASSWRITE  =33;
-
 
49
    public final static byte STATEID_SELECT_FIRMWARE  =34;
-
 
50
 
47
    public final static byte STATEID_COUNT            =34;
51
    public final static byte STATEID_COUNT            =35;
Line 48... Line 52...
48
 
52
 
49
 
53
 
Line 85... Line 89...
85
    public final static byte ACTIONID_FLASH                 = 34;
89
    public final static byte ACTIONID_FLASH                 = 34;
86
    public final static byte ACTIONID_RESET_PARAMS          = 35;
90
    public final static byte ACTIONID_RESET_PARAMS          = 35;
87
    public final static byte ACTIONID_BACK_TO_CONNDETAILS   = 36;    
91
    public final static byte ACTIONID_BACK_TO_CONNDETAILS   = 36;    
88
    public final static byte ACTIONID_SELECT_PARAMS         = 37;    
92
    public final static byte ACTIONID_SELECT_PARAMS         = 37;    
89
    public final static byte ACTIONID_RENAME_PARAMS         = 38;
93
    public final static byte ACTIONID_RENAME_PARAMS         = 38;
-
 
94
    public final static byte ACTIONID_SELECT_FIRMWARE       = 39;
-
 
95
   
90
    public final static byte ACTIONID_QUIT                  = 100;
96
    public final static byte ACTIONID_QUIT                  = 100;
Line 91... Line 97...
91
 
97
 
92
 
-
 
-
 
98
 
-
 
99
 
-
 
100
 
-
 
101
    //    public  final static String[] param_menu_items={"Edit Settings","Copy all to Mobile","Load from Mobile","Reinitialize all","back"};
Line 93... Line -...
93
 
-
 
94
 
-
 
Line 95... Line 102...
95
    public  final static String[] param_menu_items={"Edit Settings","Copy all to Mobile","Load from Mobile","Reinitialize all","back"};
102
 
96
    public  final static byte[] param_menu_actions={ACTIONID_SELECT_PARAMS,ACTIONID_PARAM_COPY_MOBILE,ACTIONID_PARAM_LOAD_MOBILE,ACTIONID_RESET_PARAMS,ACTIONID_MAINMENU};
103
 
97
 
104
 
98
 
105
 
Line 99... Line -...
99
    public  final static String[] handle_params_menu_items={"Edit Content","Rename","Save AS","Save","Read Again","back"};
-
 
100
    public  final static byte[] handle_params_menu_actions={ACTIONID_EDIT_PARAMS,ACTIONID_RENAME_PARAMS,ACTIONID_WRITE_PARAM_AS,ACTIONID_WRITE_PARAMS,ACTIONID_UNDO_PARAMS,ACTIONID_SELECT_PARAMS };
-
 
Line 101... Line 106...
101
 
106
 
102
 
107