From: <sle...@us...> - 2006-12-03 17:25:46
|
Revision: 694 http://svn.sourceforge.net/hackndev/?rev=694&view=rev Author: sleep_walker Date: 2006-12-03 09:25:38 -0800 (Sun, 03 Dec 2006) Log Message: ----------- l4p: BFUGarux - forgotten resource Added Paths: ----------- linux4palm/BFUGarux/garux-genericK.rcp Added: linux4palm/BFUGarux/garux-genericK.rcp =================================================================== --- linux4palm/BFUGarux/garux-genericK.rcp (rev 0) +++ linux4palm/BFUGarux/garux-genericK.rcp 2006-12-03 17:25:38 UTC (rev 694) @@ -0,0 +1,129 @@ +/* + * garux.rcp + * + * Linux Loader for the Palm OS. + * + * Copyright (C) 2005 Romain Goyet + * Author: Romain Goyet [r....@gm...] + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include "gui.h" + +ALERT ID BFUAlert + INFORMATION +BEGIN + TITLE "BFUAlert" + MESSAGE "^1^2^3" + BUTTONS "OK" +END + +APPLICATIONICONNAME ID 7778 "BFUGarux" + +ICON +BEGIN + BITMAP "icons/icon_bw.bmp" BPP 1 TRANSPARENTINDEX 0 DENSITY 1 + BITMAP "icons/icon_256.bmp" BPP 8 TRANSPARENTINDEX 0 DENSITY 1 + BITMAP "icons/icon_hrK.bmp" BPP 8 TRANSPARENTINDEX 0 DENSITY 2 +END + +SMALLICON +BEGIN + BITMAP "icons/icon_bw_s.bmp" BPP 1 TRANSPARENTINDEX 0 DENSITY 1 + BITMAP "icons/icon_256_s.bmp" BPP 8 TRANSPARENTINDEX 0 DENSITY 1 + BITMAP "icons/icon_hr_s.bmp" BPP 8 TRANSPARENTINDEX 0 DENSITY 2 +END + +FORM ID MainForm AT (0 0 160 160) //2 2 156 156) +NOFRAME +USABLE +MENUID MainMenu +HELPID GnuGpl +BEGIN + TITLE "BFUGarux Linux Loader" + + LABEL "Linux 2.6.17-hnd0 T3" ID 2000 AT (CENTER 20) FONT 2 + + LABEL "REVISION SVN r. SVN_REV" ID 2001 AT (3 40) FONT 0 + LABEL "B.A.C.K.U.P. RAM !!! :-)" ID 2002 AT (3 PREVBOTTOM+1) FONT 0 + LABEL " boot=" ID 2003 AT (3 PREVBOTTOM+5) FONT 0 + FIELD ID KernelParam AT (PREVRIGHT+1 PREVTOP 100 55) MAXCHARS 1024 UNDERLINED MULTIPLELINES + + + BUTTON "Start Linux" ID LinuxButton AT (7 PREVBOTTOM+21 AUTO AUTO) + BUTTON "Quit to PalmOS" ID PalmOSButton AT (74 PREVTOP AUTO AUTO) +END + +MENU ID MainMenu +BEGIN + PULLDOWN "Options" + BEGIN + MENUITEM "About BFUGarux" MenuAbout +#here could be menu + MENUITEM "Quit" MenuQuit + END +END + +FORM ID AltForm AT (0 0 160 160) //2 2 156 156) +USABLE +MODAL +HELPID GnuGpl +BEGIN + TITLE "BFUGarux Linux Loader" + + LABEL "BFUGarux bootloader" ID 2005 AT (CENTER 20) FONT 2 + + LABEL "Wrong device !!!" ID 2006 AT (CENTER 40) FONT 1 + LABEL "You are not using a Tungsten E," ID 2006 AT (3 PREVBOTTOM+1) FONT 0 + LABEL "T2, T3 or LifeDrive." ID 2007 AT (3 PREVBOTTOM+1) FONT 0 + LABEL "This software is not compatible with" ID 2008 AT (3 PREVBOTTOM+1) FONT 0 + LABEL "the hardware you're using." ID 2009 AT (3 PREVBOTTOM+1) FONT 0 + + BUTTON "Quit to PalmOS" ID PalmOSButton AT (CENTER 110 AUTO AUTO) +END + +ALERT ID StartupAlert +WARNING +BEGIN + TITLE "Backup warning" + MESSAGE "Caution : You are about to unload the PalmOS from memory. ALL your data will be lost. Please ensure you backed-up your data before using this software." + BUTTON "I did a backup" "Back to PalmOS" + +END + + +STRING GnuGpl "(BFU)Garux, PalmOS Linux loader.\n"\ + "Copyright (C) 2005\n"\ + "\n"\ + "This program is free softwa-\n"\ + "re. you can redistribute it\n"\ + "and/or modify it under the\n"\ + "terms of the GNU General\n"\ + "Public License as published\n"\ + "by the Free Software\n"\ + "Foundation.\n"\ + "\n"\ + "This program is distributed\n"\ + "in the hope that it will be\n"\ + "useful, but WITHOUT ANY\n"\ + "WARRANTY; without even\n"\ + "the implied warranty of\n"\ + "MERCHANTABILITY or\n"\ + "FITNESS FOR A PARTICULAR\n"\ + "PURPOSE. See the GNU\n"\ + "General Public License for\n"\ + "more details.\n"\ + "\n"\ + "You should have received a\n"\ + "copy of the GNU General\n"\ + "Public License along with\n"\ + "this program; if not, write\n"\ + "to the Free Software\n"\ + "Foundation, Inc., 59 Temple\n"\ + "Place, Suite 330, Boston, MA\n"\ + "02111-1307 USA" + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |