RTL language enhancements by Tomers Shalev and I.
[kugel-rb.git] / apps / gui / skin_engine / skin_tokens.h
blob25acfdacefbd94f7dfd3b79fa030c5bddcbb4522
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 Nicolas Pennequin
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef _SKIN_TOKENS_H_
23 #define _SKIN_TOKENS_H_
25 #include <stdbool.h>
28 enum wps_token_type {
30 TOKEN_MARKER_CONTROL_TOKENS = -1,
31 WPS_NO_TOKEN = 0, /* for WPS tags we don't want to save as tokens */
32 WPS_TOKEN_UNKNOWN,
34 /* Markers */
35 WPS_TOKEN_CHARACTER,
36 WPS_TOKEN_STRING,
37 WPS_TOKEN_TRANSLATEDSTRING,
39 /* Alignment */
40 WPS_TOKEN_ALIGN_LEFT,
41 WPS_TOKEN_ALIGN_LEFT_RTL,
42 WPS_TOKEN_ALIGN_CENTER,
43 WPS_TOKEN_ALIGN_RIGHT,
44 WPS_TOKEN_ALIGN_RIGHT_RTL,
46 /* Sublines */
47 WPS_TOKEN_SUBLINE_TIMEOUT,
49 /* Conditional */
50 WPS_TOKEN_CONDITIONAL,
51 WPS_TOKEN_CONDITIONAL_START,
52 WPS_TOKEN_CONDITIONAL_OPTION,
53 WPS_TOKEN_CONDITIONAL_END,
55 /* Viewport display */
56 WPS_VIEWPORT_ENABLE,
58 /* Battery */
59 TOKEN_MARKER_BATTERY,
60 WPS_TOKEN_BATTERY_PERCENT,
61 WPS_TOKEN_BATTERY_VOLTS,
62 WPS_TOKEN_BATTERY_TIME,
63 WPS_TOKEN_BATTERY_CHARGER_CONNECTED,
64 WPS_TOKEN_BATTERY_CHARGING,
65 WPS_TOKEN_BATTERY_SLEEPTIME,
66 WPS_TOKEN_USB_POWERED,
68 /* Sound */
69 TOKEN_MARKER_SOUND,
70 #if (CONFIG_CODEC != MAS3507D)
71 WPS_TOKEN_SOUND_PITCH,
72 #endif
73 #if (CONFIG_CODEC == SWCODEC)
74 WPS_TOKEN_SOUND_SPEED,
75 WPS_TOKEN_REPLAYGAIN,
76 WPS_TOKEN_CROSSFADE,
77 #endif
79 /* Time */
80 TOKEN_MARKER_RTC,
81 WPS_TOKEN_RTC_PRESENT,
83 /* The begin/end values allow us to know if a token is an RTC one.
84 New RTC tokens should be added between the markers. */
86 WPS_TOKENS_RTC_BEGIN, /* just the start marker, not an actual token */
88 WPS_TOKEN_RTC_DAY_OF_MONTH,
89 WPS_TOKEN_RTC_DAY_OF_MONTH_BLANK_PADDED,
90 WPS_TOKEN_RTC_12HOUR_CFG,
91 WPS_TOKEN_RTC_HOUR_24_ZERO_PADDED,
92 WPS_TOKEN_RTC_HOUR_24,
93 WPS_TOKEN_RTC_HOUR_12_ZERO_PADDED,
94 WPS_TOKEN_RTC_HOUR_12,
95 WPS_TOKEN_RTC_MONTH,
96 WPS_TOKEN_RTC_MINUTE,
97 WPS_TOKEN_RTC_SECOND,
98 WPS_TOKEN_RTC_YEAR_2_DIGITS,
99 WPS_TOKEN_RTC_YEAR_4_DIGITS,
100 WPS_TOKEN_RTC_AM_PM_UPPER,
101 WPS_TOKEN_RTC_AM_PM_LOWER,
102 WPS_TOKEN_RTC_WEEKDAY_NAME,
103 WPS_TOKEN_RTC_MONTH_NAME,
104 WPS_TOKEN_RTC_DAY_OF_WEEK_START_MON,
105 WPS_TOKEN_RTC_DAY_OF_WEEK_START_SUN,
107 WPS_TOKENS_RTC_END, /* just the end marker, not an actual token */
109 /* Database */
110 TOKEN_MARKER_DATABASE,
111 #ifdef HAVE_TAGCACHE
112 WPS_TOKEN_DATABASE_PLAYCOUNT,
113 WPS_TOKEN_DATABASE_RATING,
114 WPS_TOKEN_DATABASE_AUTOSCORE,
115 #endif
117 /* File */
118 TOKEN_MARKER_FILE,
119 WPS_TOKEN_FILE_BITRATE,
120 WPS_TOKEN_FILE_CODEC,
121 WPS_TOKEN_FILE_FREQUENCY,
122 WPS_TOKEN_FILE_FREQUENCY_KHZ,
123 WPS_TOKEN_FILE_NAME,
124 WPS_TOKEN_FILE_NAME_WITH_EXTENSION,
125 WPS_TOKEN_FILE_PATH,
126 WPS_TOKEN_FILE_SIZE,
127 WPS_TOKEN_FILE_VBR,
128 WPS_TOKEN_FILE_DIRECTORY,
130 /* Image */
131 TOKEN_MARKER_IMAGES,
132 #ifdef HAVE_LCD_BITMAP
133 WPS_TOKEN_IMAGE_BACKDROP,
134 WPS_TOKEN_IMAGE_PROGRESS_BAR,
135 WPS_TOKEN_IMAGE_PRELOAD,
136 WPS_TOKEN_IMAGE_PRELOAD_DISPLAY,
137 WPS_TOKEN_IMAGE_DISPLAY,
138 #endif
140 #ifdef HAVE_ALBUMART
141 /* Albumart */
142 WPS_TOKEN_ALBUMART_DISPLAY,
143 WPS_TOKEN_ALBUMART_FOUND,
144 #endif
146 /* Metadata */
147 TOKEN_MARKER_METADATA,
148 WPS_TOKEN_METADATA_ARTIST,
149 WPS_TOKEN_METADATA_COMPOSER,
150 WPS_TOKEN_METADATA_ALBUM_ARTIST,
151 WPS_TOKEN_METADATA_GROUPING,
152 WPS_TOKEN_METADATA_ALBUM,
153 WPS_TOKEN_METADATA_GENRE,
154 WPS_TOKEN_METADATA_DISC_NUMBER,
155 WPS_TOKEN_METADATA_TRACK_NUMBER,
156 WPS_TOKEN_METADATA_TRACK_TITLE,
157 WPS_TOKEN_METADATA_VERSION,
158 WPS_TOKEN_METADATA_YEAR,
159 WPS_TOKEN_METADATA_COMMENT,
161 TOKEN_MARKER_PLAYBACK_INFO,
162 /* Mode */
163 WPS_TOKEN_REPEAT_MODE,
164 WPS_TOKEN_PLAYBACK_STATUS,
165 /* Progressbar */
166 WPS_TOKEN_PROGRESSBAR,
167 #ifdef HAVE_LCD_CHARCELLS
168 WPS_TOKEN_PLAYER_PROGRESSBAR,
169 #endif
170 #ifdef HAVE_LCD_BITMAP
171 /* Peakmeter */
172 WPS_TOKEN_PEAKMETER,
173 #endif
175 /* Current track */
176 WPS_TOKEN_TRACK_ELAPSED_PERCENT,
177 WPS_TOKEN_TRACK_TIME_ELAPSED,
178 WPS_TOKEN_TRACK_TIME_REMAINING,
179 WPS_TOKEN_TRACK_LENGTH,
181 /* Playlist */
182 TOKEN_MARKER_PLAYLIST,
183 WPS_TOKEN_PLAYLIST_ENTRIES,
184 WPS_TOKEN_PLAYLIST_NAME,
185 WPS_TOKEN_PLAYLIST_POSITION,
186 WPS_TOKEN_PLAYLIST_SHUFFLE,
189 /* buttons */
190 TOKEN_MARKER_MISC,
191 WPS_TOKEN_BUTTON_VOLUME,
192 WPS_TOKEN_LASTTOUCH,
193 #if (CONFIG_LED == LED_VIRTUAL) || defined(HAVE_REMOTE_LCD)
194 /* Virtual LED */
195 WPS_TOKEN_VLED_HDD,
196 #endif
197 /* Volume level */
198 WPS_TOKEN_VOLUME,
199 /* hold */
200 WPS_TOKEN_MAIN_HOLD,
201 #ifdef HAS_REMOTE_BUTTON_HOLD
202 WPS_TOKEN_REMOTE_HOLD,
203 #endif
205 /* Setting option */
206 WPS_TOKEN_SETTING,
207 WPS_TOKEN_CURRENT_SCREEN,
208 WPS_TOKEN_LANG_IS_RTL,
210 /* Recording Tokens */
211 TOKEN_MARKER_RECORDING,
212 WPS_TOKEN_HAVE_RECORDING,
213 WPS_TOKEN_REC_FREQ,
214 WPS_TOKEN_REC_ENCODER,
215 WPS_TOKEN_REC_BITRATE, /* SWCODEC: MP3 bitrate, HWCODEC: MP3 "quality" */
216 WPS_TOKEN_REC_MONO,
218 TOKEN_MARKER_END, /* this needs to be the last value in this enum */
221 struct wps_token {
222 unsigned char type; /* enough to store the token type */
224 /* Whether the tag (e.g. track name or the album) refers the
225 current or the next song (false=current, true=next) */
226 bool next;
228 union {
229 char c;
230 unsigned short i;
231 void* data;
232 } value;
235 struct skin_token_list {
236 struct wps_token *token;
237 struct skin_token_list *next;
241 #endif