1
0
Fork 0
forked from len0rd/rockbox

rbutil: Add nice Buttons (FS 7294, heavily modified). Buttons are from the gnome-icon-theme (GPL) and are in png format. In rbutil/icons there is bin2c.c which can convert those pngs to *.c and *.h. Call it with bin2c *.png (shell expansion). The Makefile (Linux/ Mac) needs updates to use this.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13690 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Wenger 2007-06-22 23:46:47 +00:00
parent f5936c062f
commit 84f5939d5f
15 changed files with 233 additions and 17 deletions

View file

@ -78,6 +78,8 @@ bool rbutilFrmApp::OnInit()
}
ReadUserConfig();
wxInitAllImageHandlers(); //init Image handlers
rbutilFrm *myFrame = new rbutilFrm(NULL);
SetTopWindow(myFrame);
@ -86,8 +88,6 @@ bool rbutilFrmApp::OnInit()
initIpodpatcher(); // reserve mem for ipodpatcher
initSansaPatcher(); // reserve mem for sansapatcher
wxInitAllImageHandlers(); //init Image handlers
wxLogVerbose(wxT("=== end rbUtilFrmApp::OnInit()"));
return TRUE;
}