Support and General Use > Theming and Appearance Customization

is it possible to change the splash screen?

<< < (2/6) > >>

Kitty:
ok, and another question...

do you guys think it would be possible to change the Statusbar? not the player statusbar, the browser one... mabye add some imgs?

psycho_maniac:
i found this one
http://www.rockbox.org/tracker/task/2981
and this one
http://www.rockbox.org/tracker/task/2931
take a look and see which one you like
for more info this is a good site to search for stuff like this  http://www.rockbox.org/tracker/index.php?type=4

Mikerman:
Unfortunately, both very old . . . .

Mmmm:

--- Quote from: Davide-NYC on August 30, 2006, 08:55:41 PM ---Can I insert a delay of x seconds?
Is this easy to implement?

--- End quote ---
Yep, easy... Just add a sleep line in main.c in the function called app_main
so, change

--- Code: ---void app_main(void)
{
    init();
    browse_root();
}
--- End code ---
to

--- Code: ---void app_main(void)
{
    init();
    sleep(HZ * x);
    browse_root();
}

--- End code ---
where x is the no. of seconds delay you want.


--- Quote from: Kitty on August 31, 2006, 02:04:24 PM ---ok, and another question...

do you guys think it would be possible to change the Statusbar? not the player statusbar, the browser one... mabye add some imgs?

--- End quote ---
No, this isn't possible as there is only one statusbar so if you change one you change them all. It is possible to change the icons that are already there if you want though.
In apps/recorder/icons.c you can see lots of code that looks like this:

--- Code: ---const unsigned char bitmap_icons_7x8[][7] =
{
    {0x08,0x1c,0x3e,0x3e,0x3e,0x14,0x14}, /* Power plug */
    {0x1c,0x14,0x3e,0x2a,0x22,0x1c,0x08}, /* USB plug */
    {0x01,0x1e,0x1c,0x3e,0x7f,0x20,0x40}, /* Speaker mute */
    {0x00,0x7f,0x7f,0x3e,0x1c,0x08,0x00}, /* Play */
--- End code ---
etc...
Each row of numbers is an icon.
To make your own icons you need to change the numbers.
Your icon must be the same dimensions as it says at the top (in this case 7 wide 8 high).
so make your monochrome icon and then in the root of your source code type

--- Code: ---tools/bmp2rb -f 0 myicon.bmp
--- End code ---
and as if by magic the numbers you need will appear...Just copy and paste them into the code and you have your own icon!

not too bad eh?

Kitty:
yea pretty cool :]

hmm.. no way getting a real img into there? not those monochrome icons ?:

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version