Subversion Repositories Projects

Rev

Rev 252 | Rev 258 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
211 ligi 1
public interface DUBwiseUIDefinitions
255 ligi 2
 
211 ligi 3
{
252 ligi 4
 
255 ligi 5
 
252 ligi 6
    // colors
7
    public final static int BG_COLOR_SKIN_DARK  = 0x000000;    
8
    public final static int BG_COLOR_SKIN_LIGHT = 0xFFFFFF;    
9
    public final static int FG_COLOR_SKIN_DARK  = 0xFFFFFF;    
10
    public final static int FG_COLOR_SKIN_LIGHT = 0x000000;    
11
 
12
 
13
 
211 ligi 14
    // id for each state - must just be uniq - order isnt important
223 ligi 15
    public final static byte STATEID_INITIAL          =0;
211 ligi 16
    public final static byte STATEID_DEVICESELECT     =1;
17
    public final static byte STATEID_MAINMENU         =2;
18
    public final static byte STATEID_MOTORTEST        =3;
19
    public final static byte STATEID_SELECT_PARAMSET  =4;
20
    public final static byte STATEID_EDIT_PARAMS      =5;
21
    public final static byte STATEID_HANDLE_PARAMS    =6;
245 ligi 22
    public final static byte STATEID_LCD              =7;
211 ligi 23
    public final static byte STATEID_RAWDEBUG         =8;
24
    public final static byte STATEID_KEYCONTROL       =9;
25
    public final static byte STATEID_SETTINGSMENU     =10;
26
    public final static byte STATEID_STICKVIEW        =11;
27
    public final static byte STATEID_CAMMODE          =12;
28
    public final static byte STATEID_READ_PARAMS      =13;
29
    public final static byte STATEID_GPSVIEW          =14;
30
    public final static byte STATEID_FILEOPEN         =15;
31
    public final static byte STATEID_GRAPH            =16;
32
    public final static byte STATEID_CONN_DETAILS     =17;
33
    public final static byte STATEID_IPINPUT          =18;
34
    public final static byte STATEID_PROXY            =19;
35
    public final static byte STATEID_TRAFFIC          =20;
36
    public final static byte STATEID_SELECT_COMPORT   =21;
37
    public final static byte STATEID_ABOUT            =22;
224 ligi 38
    public final static byte STATEID_ERROR_MSG        =23;
211 ligi 39
    public final static byte STATEID_FLASHING         =24;
40
    public final static byte STATEID_NAMEINPUT        =25;
41
    public final static byte STATEID_DATABUFF         =26;
222 ligi 42
    public final static byte STATEID_HORIZON          =27;
224 ligi 43
    public final static byte STATEID_SUCCESS_MSG      =28;
213 ligi 44
    public final static byte STATEID_STRINGINPUT      =29;
223 ligi 45
    public final static byte STATEID_SCANNING         =30;
224 ligi 46
    public final static byte STATEID_RESET_PARAMS     =31;
47
    public final static byte STATEID_PARAM_MENU       =32;
252 ligi 48
    public final static byte STATEID_PARAM_MASSWRITE  =33;
255 ligi 49
    public final static byte STATEID_SELECT_FIRMWARE  =34;
211 ligi 50
 
255 ligi 51
    public final static byte STATEID_COUNT            =35;
211 ligi 52
 
53
 
255 ligi 54
 
242 ligi 55
    public final static byte ACTIONID_SETTINGS              = 0;
56
    public final static byte ACTIONID_DEVICESELECT          = 1;
57
    public final static byte ACTIONID_DEBUG                 = 2;
58
    public final static byte ACTIONID_CONN_DETAILS          = 3;
59
    public final static byte ACTIONID_SWITCH_NC             = 4;
60
    public final static byte ACTIONID_SWITCH_FC             = 5;
61
    public final static byte ACTIONID_GRAPH                 = 6;
62
    public final static byte ACTIONID_LCD                   = 7;
63
    public final static byte ACTIONID_RAWDEBUG              = 8;
64
    public final static byte ACTIONID_RCDATA                = 9;
65
    public final static byte ACTIONID_KEYCONTROL            = 10;
66
    public final static byte ACTIONID_MOTORTEST             = 11;
67
    public final static byte ACTIONID_EDIT_PARAMS           = 12;
68
    public final static byte ACTIONID_CAM                   = 13;
69
    public final static byte ACTIONID_PROXY                 = 14;
70
    public final static byte ACTIONID_GPSDATA               = 15;
71
    public final static byte ACTIONID_TRAFFIC               = 16;
72
    public final static byte ACTIONID_ABOUT                 = 17;
73
    public final static byte ACTIONID_NC_ERRORS             = 18;
74
    public final static byte ACTIONID_WRITE_PARAMS          = 19;
75
    public final static byte ACTIONID_UNDO_PARAMS           = 20;
76
    public final static byte ACTIONID_MAINMENU              = 21;
77
    public final static byte ACTIONID_HORIZON               = 22;
78
    public final static byte ACTIONID_WRITE_PARAM_AS        = 23;
79
    public final static byte ACTIONID_PARAM_WRITE_OK        = 24;
80
    public final static byte ACTIONID_PARAM_MENU            = 25;
81
    public final static byte ACTIONID_PARAM_LOAD_MOBILE     = 26;
82
    public final static byte ACTIONID_PARAM_COPY_MOBILE     = 27;
83
    public final static byte ACTIONID_DATABUFF              = 28;
84
    public final static byte ACTIONID_SWITCH_MK3MAG         = 29;
85
    public final static byte ACTIONID_CONNECT_TCP           = 30;
86
    public final static byte ACTIONID_SCAN_BT               = 31;
87
    public final static byte ACTIONID_SELECT_COM            = 32;
88
    public final static byte ACTIONID_PROXY_INPUT           = 33;
89
    public final static byte ACTIONID_FLASH                 = 34;
90
    public final static byte ACTIONID_RESET_PARAMS          = 35;
91
    public final static byte ACTIONID_BACK_TO_CONNDETAILS   = 36;    
92
    public final static byte ACTIONID_SELECT_PARAMS         = 37;    
93
    public final static byte ACTIONID_RENAME_PARAMS         = 38;
255 ligi 94
    public final static byte ACTIONID_SELECT_FIRMWARE       = 39;
95
 
242 ligi 96
    public final static byte ACTIONID_QUIT                  = 100;
211 ligi 97
 
98
 
99
 
100
 
255 ligi 101
    //    public  final static String[] param_menu_items={"Edit Settings","Copy all to Mobile","Load from Mobile","Reinitialize all","back"};
211 ligi 102
 
103
 
104
 
105
 
255 ligi 106
 
107
 
108
 
109
 
224 ligi 110
    /*
214 ligi 111
    public final static String[] conn_details_menu_items={ "packet Traffic","view Data","connect via TCP/IP","connect via BT","connect via COM","set Proxy","back" };
211 ligi 112
    public  final static byte[]  conn_details_menu_actions={ ACTIONID_TRAFFIC,ACTIONID_DATABUFF,ACTIONID_CONNECT_TCP,ACTIONID_SCAN_BT, ACTIONID_SELECT_COM,ACTIONID_PROXY_INPUT,ACTIONID_MAINMENU};
242 ligi 113
    */
211 ligi 114
 
115
 
116
 
117
    final static byte SKINID_DARK= 0;
118
    final static byte SKINID_LIGHT = 1;
119
 
120
 
121
 
122
    final static String[] credits= {
123
//#expand "About DUBwise v%VERSION%",
124
        "",
213 ligi 125
        "",
211 ligi 126
        "Digital UFO",
127
        "Broadcasting With ",
128
        "Byteelligent Service",
129
        "Equipment",
130
        "",
131
        "2007-2008 by ",
132
        "Marcus LiGi B"+(char)(252)+"schleb",
133
        "mailto:ligi"+"@"+"ligi.de",
134
        "",
135
        "Licence:",
136
        "Creative Commons(CC)",
137
        " -Attribution",
138
        " -Noncommercial",
139
        " -Share Alike",
140
        " -No Violence",
141
        " ",
142
        "Credits: ",
143
        " -HolgerB&IngoB",
144
        " -CaScAdE",
145
        " -Orion8",
146
        " -Joko",
147
        " -Speedy",
148
        " -Jamiro",
149
        "",
150
        "More Infos:",
151
        " www.ligi.de",
152
        " www.mikrokopter.com"};
153
 
154
 
155
    public final static char[] idle_seq={'.','_','-','='};
156
 
157
 
158
    public final static int[] default_ip={192,168,1,42,4242};
159
 
160
 
161
 
162
 
163
}