* Reworked padding rendering (now handled natively by View) * Fixed how ConsoleController renders dirty views * Explicitly added padding to the LayoutMeta dimensions computation * Added support for updating passwords in SessionContext * Completed account display system * Added many more resources * Simplified internationalization * Added clientside representations for accounts and transations * MOAR COMMENTS! * Optimized account serialization * Corrected issue where copying a user simply copied references to the user accounts; not actually copying accounts (which caused jank) * Fixed timestamp for TimeStampWriter * Probably some other minor things
121 lines
2.6 KiB
XML
121 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Elements xmlns="Client.ConsoleForms.Graphics">
|
|
<DialogView id="Success"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Options>
|
|
<Option>Quit</Option>
|
|
</Options>
|
|
<Text>Login succeeded!</Text>
|
|
</DialogView>
|
|
|
|
<TextView id="balance"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Text>@string/SE_bal</Text>
|
|
</TextView>
|
|
|
|
<TextView id="account_stall"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Text>@string/SE_account_stall</Text>
|
|
</TextView>
|
|
|
|
|
|
<!-- Password update prompt -->
|
|
<InputView id="password_update"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Fields>
|
|
<Field hide="true">@string/SU_pwd</Field>
|
|
<Field hide="true">@string/SU_pwdrep</Field>
|
|
</Fields>
|
|
|
|
<Text>@string/SE_pwdu</Text>
|
|
</InputView>
|
|
|
|
<!-- Session account actions -->
|
|
<ListView id="menu_options"
|
|
padding_left="2"
|
|
padding_right="2">
|
|
<Views>
|
|
<ButtonView id="add">
|
|
<Text>@string/SE_open</Text>
|
|
</ButtonView>
|
|
|
|
<ButtonView id="view">
|
|
<Text>@string/SE_view</Text>
|
|
</ButtonView>
|
|
|
|
<ButtonView id="update">
|
|
<Text>@string/SE_pwdu</Text>
|
|
</ButtonView>
|
|
|
|
<ButtonView id="exit">
|
|
<Text>@string/SE_exit</Text>
|
|
</ButtonView>
|
|
</Views>
|
|
</ListView>
|
|
|
|
<InputView id="account_create"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Fields>
|
|
<Field>@string/SE_account_name</Field>
|
|
</Fields>
|
|
<Text>@string/SE_account_create</Text>
|
|
</InputView>
|
|
|
|
<!-- Bank account list -->
|
|
<ListView id="account_show"
|
|
padding_left="2"
|
|
padding_right="2">
|
|
<Views>
|
|
<ButtonView id="close">
|
|
<Text>@string/GENERIC_dismiss</Text>
|
|
</ButtonView>
|
|
</Views>
|
|
</ListView>
|
|
|
|
<DialogView id="account_info"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Options>
|
|
<Option>@string/GENERIC_accept</Option>
|
|
</Options>
|
|
<Text>@string/SE_info</Text>
|
|
</DialogView>
|
|
|
|
<TextView id="update_stall"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Text>@string/SE_updatestall</Text>
|
|
</TextView>
|
|
|
|
<DialogView id="exit_prompt"
|
|
padding_left="2"
|
|
padding_right="2"
|
|
padding_top="1"
|
|
padding_bottom="1">
|
|
<Options>
|
|
<Option>@string/GENERIC_negative</Option>
|
|
<Option>@string/GENERIC_positive</Option>
|
|
</Options>
|
|
<Text>@string/SE_exit_prompt</Text>
|
|
</DialogView>
|
|
|
|
</Elements> |