mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-17 18:12:01 +01:00
add saved games dialog
This commit is contained in:
parent
db43afe13d
commit
02a299a73f
1 changed files with 46 additions and 0 deletions
|
@ -465,3 +465,49 @@ RESOURCE DIALOG r_xwords_blank_picker
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE DLG_BUTTONS r_savedgames_buttons
|
||||
{
|
||||
buttons = {
|
||||
DLG_BUTTON {
|
||||
id = XW_SGAMES_OPEN_COMMAND;
|
||||
buttontype = EEikCtCommandButton;
|
||||
flags = EEikLabeledButtonIsDefault;
|
||||
button = CMBUT { txt = "Open"; };
|
||||
}, DLG_BUTTON {
|
||||
id = XW_SGAMES_RENAME_COMMAND;
|
||||
buttontype = EEikCtCommandButton;
|
||||
button = CMBUT { txt = "Rename"; };
|
||||
}, DLG_BUTTON {
|
||||
id = XW_SGAMES_DELETE_COMMAND;
|
||||
buttontype = EEikCtCommandButton;
|
||||
button = CMBUT { txt = "Delete"; };
|
||||
}, DLG_BUTTON {
|
||||
id = EEikBidCancel;
|
||||
buttontype = EEikCtCommandButton;
|
||||
button = CMBUT { txt = "Cancel"; };
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE DIALOG r_xwords_savedgames_dlg
|
||||
{
|
||||
title = "Saved games";
|
||||
buttons = r_savedgames_buttons;
|
||||
flags = EEikDialogFlagWait | EEikDialogFlagNotifyEsc;
|
||||
items = {
|
||||
DLG_LINE {
|
||||
prompt = "Open:";
|
||||
id = ESelGameChoice;
|
||||
#if 0
|
||||
type = EEikCtChoiceList;
|
||||
control = CHOICELIST { flags = EEikChlistArrayOwnedExternally; };
|
||||
#else
|
||||
type = EEikCtListBox;
|
||||
control = LISTBOX { flags = EEikListBoxMultipleSelection;
|
||||
width = 20;
|
||||
};
|
||||
#endif
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue