mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
initial import
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@2 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
2cadbd5e56
commit
cc68a136aa
341 changed files with 180839 additions and 0 deletions
150
platform/s60/PicoDriveS60.rss
Normal file
150
platform/s60/PicoDriveS60.rss
Normal file
|
@ -0,0 +1,150 @@
|
|||
// PicoDriveS60.RSS
|
||||
//
|
||||
//
|
||||
|
||||
NAME Pico
|
||||
#include <eikon.rh>
|
||||
#include <eikon.rsg>
|
||||
#include <avkon.rsg>
|
||||
#include <avkon.rh>
|
||||
RESOURCE RSS_SIGNATURE { }
|
||||
|
||||
RESOURCE TBUF16 { buf=""; }
|
||||
|
||||
RESOURCE EIK_APP_INFO
|
||||
{
|
||||
menubar = r_miniapp_menubar;
|
||||
cba=R_AVKON_SOFTKEYS_OPTIONS_BACK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
RESOURCE MENU_BAR r_miniapp_menubar // *** Menu bar
|
||||
{
|
||||
titles =
|
||||
{
|
||||
MENU_TITLE { menu_pane = r_miniapp_menu; txt = "PicoDrive"; }
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE MENU_PANE r_miniapp_menu // *** Submenu 1
|
||||
{
|
||||
items =
|
||||
{
|
||||
MENU_ITEM { command = EEikCmdExit; txt = "Close";}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE ARRAY r_picodrive_keys
|
||||
{
|
||||
items=
|
||||
{
|
||||
LBUF{txt="Up";},
|
||||
LBUF{txt="Down";},
|
||||
LBUF{txt="Left";},
|
||||
LBUF{txt="Right";},
|
||||
LBUF{txt="A";},
|
||||
LBUF{txt="B";},
|
||||
LBUF{txt="C";},
|
||||
LBUF{txt="X";},
|
||||
LBUF{txt="Y";},
|
||||
LBUF{txt="Z";},
|
||||
LBUF{txt="Mode";},
|
||||
LBUF{txt="Start";},
|
||||
LBUF{txt="Up&Left";},
|
||||
LBUF{txt="Up&Right";},
|
||||
LBUF{txt="Down&Right";},
|
||||
LBUF{txt="Down&Left";},
|
||||
LBUF{txt="Soft reset";},
|
||||
LBUF{txt="Pan left";},
|
||||
LBUF{txt="Pan right";}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
RESOURCE DIALOG r_pico_file_select_dialog
|
||||
{
|
||||
flags = EGeneralQueryFlags;
|
||||
buttons = R_AVKON_SOFTKEYS_DONE_CANCEL;
|
||||
items =
|
||||
{
|
||||
DLG_LINE
|
||||
{
|
||||
type = EAknCtListQueryControl;
|
||||
id = EListQueryControl;
|
||||
|
||||
control = AVKON_LIST_QUERY_CONTROL
|
||||
{
|
||||
heading = "Files";
|
||||
listtype = EAknCtSinglePopupMenuListBox;
|
||||
listbox = LISTBOX
|
||||
{
|
||||
flags = EAknDialogSelectionList;
|
||||
height = 3;
|
||||
width = 1;
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE DIALOG r_pico_add_cheat
|
||||
{
|
||||
title="Add cheatcode";
|
||||
flags=EEikDialogFlagNoDrag |
|
||||
EEikDialogFlagCbaButtons |
|
||||
EEikDialogFlagModeless|EEikDialogFlagWait;
|
||||
buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
|
||||
items=
|
||||
{
|
||||
DLG_LINE
|
||||
{
|
||||
type=EEikCtLabel;
|
||||
id=0x2002;
|
||||
itemflags = EEikDlgItemNonFocusing;
|
||||
control= LABEL
|
||||
|
||||
{
|
||||
txt = "Enter cheatcode";
|
||||
|
||||
};
|
||||
},
|
||||
DLG_LINE
|
||||
{
|
||||
itemflags = EEikDlgItemNonFocusing;
|
||||
id=0x2001;
|
||||
type=EEikCtLabel;
|
||||
control= LABEL {
|
||||
horiz_align=EEikLabelAlignHLeft;
|
||||
txt = "\nGG: XXXX-XXXX\nPatch: XXXXXX:YYYY";
|
||||
};
|
||||
},
|
||||
DLG_LINE
|
||||
{
|
||||
type=EEikCtEdwin;
|
||||
id=0x2000;
|
||||
itemflags = EEikDlgItemOfferAllHotKeys|EEikDlgItemSeparatorAfter;
|
||||
|
||||
control= EDWIN {
|
||||
maxlength=12;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE ARRAY r_picodrive_regions
|
||||
{
|
||||
items=
|
||||
{
|
||||
LBUF{txt="Region: Auto";},
|
||||
LBUF{txt="Region: Jap NTSC";},
|
||||
LBUF{txt="Region: Jap PAL";},
|
||||
LBUF{txt="Region: US NTSC";},
|
||||
LBUF{txt="Region: EUR PAL";}
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue