rockbox/utils/themeeditor/resources/deviceoptions

49 lines
1.9 KiB
Text
Raw Normal View History

# This file defines the options for the device configuration panel
# Declare a section with a line containing a string inside brackets, i.e.
# [Some Section]
# Declare options within the section in the following format, one per line
# tag;Tag Label;[input];default
# tag is the skin tag represented by that option
#
# Tag Label is a human-readable label to attach to the input
#
# [input] is the type of widget that should be used for the tag, and its range
# if applicable. The valid forms are:
# check - Inserts a true/false checkbox
# text - Inserts a line edit box
# slider(min, max) - Inserts a horizontal slider with range specified
# spin(min, max) - Inserts a spin box with range specified
# fspin(min, max) - Inserts a floating point spin box with range specified
# combo(option1, option2...) - Inserts a combo box with the options specified
#
# default is the default value for the input
#
# Note that there aren't any provisions for escaping characters at the moment,
# so don't include [, ], or ; in your text, or (, ) in combo box choices
#
# Blank lines are ignored
#
# Be warned: because this file is compiled into the application, I'm not
# performing much of any error checking on it: screwing up the syntax may very
# well segfault the application on startup
[Screen Sizes]
screenwidth ; Screen Width ; spin(0,800) ; 300
screenheight ; Screen Height ; spin(0,800) ; 200
remotewidth ; Remote Width ; spin(0,800) ; 100
remoteheight ; Remote Height ; spin(0,800); 50
[ID3 Info]
ia ; Artist ; text ; Current Artist
ic ; Composer ; text ; Current Composer
iA ; Album Artist ; text ; Current Album Artist
id ; Album Name ; text ; Current Album Name
iG ; Grouping ; text ; Current Grouping
ig ; Genre Name ; text ; Current Genre
in ; Track number ; spin(1,100) ; 3
it ; Track Title ; text ; Current Title
iC ; Comment ; text ; Current Comment
iv ; ID3 Version ; fspin(1,2.4); 2.0
iy ; Year ; spin(1000,2020) ; 2008
ik ; Disk Number ; spin(1,100) ; 1