summaryrefslogtreecommitdiff
path: root/manual/advanced_topics/main.tex
diff options
context:
space:
mode:
Diffstat (limited to 'manual/advanced_topics/main.tex')
-rw-r--r--manual/advanced_topics/main.tex22
1 files changed, 18 insertions, 4 deletions
diff --git a/manual/advanced_topics/main.tex b/manual/advanced_topics/main.tex
index 5b12ef7033..f870af70ef 100644
--- a/manual/advanced_topics/main.tex
+++ b/manual/advanced_topics/main.tex
@@ -38,6 +38,19 @@ If your language is not yet supported and you want to write your own language
38file find the instructions on the Rockbox website: 38file find the instructions on the Rockbox website:
39\wikilink{HowtoUpdateLangfile} 39\wikilink{HowtoUpdateLangfile}
40 40
41\nopt{archos}{%
42 \subsection{\label{ref:LoadingBackdrops}Loading Backdrops}
43 Rockbox supports showing an image as a backdrop in the \setting{File Browser}
44 and the menus. The backdrop image must be a \fname{.bmp} file of the exact
45 same dimensions as the display in your \dap{} (\genericimg{} with the last
46 number giving the colour depth in bits). To use an image as a backdrop browse
47 to it in the \setting{File Browser} and open the \setting{File Menu}
48 (see \reference{ref:Filemenu}) on it and select the option
49 \setting{Set As Backdrop}. If you want rockbox to remember your
50 backdrop the next time you start your \dap{} the backdrop must be placed in
51 the \fname{/.rockbox/backdrops} folder.
52}%
53
41\section{\label{ref:ConfiguringtheWPS}Configuring the WPS} 54\section{\label{ref:ConfiguringtheWPS}Configuring the WPS}
42 55
43\subsection{WPS -- General Info} 56\subsection{WPS -- General Info}
@@ -197,19 +210,20 @@ displaying images:
197 \item Load and always show the image, using the \config{\%x} tag 210 \item Load and always show the image, using the \config{\%x} tag
198 \item Preload the image with \config{\%xl} and show it with \config{\%xd}. 211 \item Preload the image with \config{\%xl} and show it with \config{\%xd}.
199 This way you can have your images displayed conditionally. 212 This way you can have your images displayed conditionally.
200 \opt{HAVE_LCD_COLOR}{ 213 \nopt{archos}{%
201 \item Load an image and show as backdrop using the \config{\%X} tag. The 214 \item Load an image and show as backdrop using the \config{\%X} tag. The
202 image must be of the same exact dimensions as your display. 215 image must be of the same exact dimensions as your display.
203 } 216 }%
204\end{enumerate} 217\end{enumerate}
205 218
206\optv{HAVE_LCD_COLOR}{ 219\optv{SWCODEC}{% This doesn't depend on SWCODEC but we don't have a \noptv
220 % command.
207 Example on background image use: 221 Example on background image use:
208 \begin{example} 222 \begin{example}
209 %X|background.bmp| 223 %X|background.bmp|
210 \end{example} 224 \end{example}
211 The image with filename \fname{background.bmp} is loaded and used in the WPS. 225 The image with filename \fname{background.bmp} is loaded and used in the WPS.
212} 226}%
213 227
214Example on bitmap preloading and use: 228Example on bitmap preloading and use:
215\begin{example} 229\begin{example}