* Fixed TextView text formatting
* Added tutorial
This commit is contained in:
parent
856e16b3f2
commit
fdad3be98d
@ -67,6 +67,7 @@
|
||||
<Compile Include="ConsoleForms\Region.cs" />
|
||||
<Compile Include="ConsoleForms\Timer.cs" />
|
||||
<Compile Include="ConsoleForms\ViewData.cs" />
|
||||
<Compile Include="Context\IntroContext.cs" />
|
||||
<Compile Include="Context\NetContext.cs" />
|
||||
<Compile Include="BankNetInteractor.cs" />
|
||||
<Compile Include="ParseException.cs" />
|
||||
@ -97,6 +98,7 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Resources\Layout\Common.xml" />
|
||||
<Content Include="Resources\Layout\Intro.xml" />
|
||||
<Content Include="Resources\Layout\Session.xml" />
|
||||
<Content Include="Resources\Layout\Setup.xml">
|
||||
<SubType>Designer</SubType>
|
||||
|
@ -38,11 +38,11 @@ namespace Client.ConsoleForms.Graphics
|
||||
private static int ComputeLength(Tuple<string, string>[] opts) => opts.CollectiveLength(true) + opts.Length - 1;
|
||||
|
||||
public DialogView(ViewData parameters, LangManager lang) :
|
||||
base(parameters.SetAttribute("width",
|
||||
base(parameters/*.SetAttribute("width",
|
||||
Math.Max(
|
||||
parameters.AttribueAsInt("width") < 1 ? parameters.NestedText("Text").Length : parameters.AttribueAsInt("width"),
|
||||
ComputeLength(parameters.Get("Options")?.CollectSub("Option") ?? new Tuple<string, string>[0])
|
||||
)), lang)
|
||||
))*/, lang)
|
||||
{
|
||||
ViewData optionsData = parameters.Get("Options");
|
||||
this.options = optionsData.nestedData.Filter(p => p.Name.Equals("Option")).ToArray();
|
||||
|
@ -85,8 +85,59 @@ namespace Client.ConsoleForms.Graphics
|
||||
if (maxHeight == 0)
|
||||
return new string[0];
|
||||
|
||||
// Extract newlines
|
||||
List<string> l = new List<string>();
|
||||
int afterCount = 0;
|
||||
foreach (var t in text)
|
||||
{
|
||||
string txt = t;
|
||||
while (txt.StartsWith("\n"))
|
||||
{
|
||||
l.Add("\n");
|
||||
txt = txt.Substring(1);
|
||||
}
|
||||
while (txt.EndsWith("\n"))
|
||||
{
|
||||
++afterCount;
|
||||
txt = txt.Substring(0, txt.Length - 1);
|
||||
}
|
||||
|
||||
var lines = txt.Split('\n');
|
||||
for (int i = 0; i < lines.Length; ++i)
|
||||
{
|
||||
l.Add(lines[i]);
|
||||
if (i != lines.Length - 1) l.Add("\n");
|
||||
}
|
||||
|
||||
while (afterCount-- > 0) l.Add("\n");
|
||||
|
||||
}
|
||||
|
||||
BoundedList<string> generate = new BoundedList<string>(maxHeight);
|
||||
|
||||
int height = 0;
|
||||
|
||||
for (int i = 0; i < l.Count; ++i)
|
||||
{
|
||||
bool hasHeight = height < generate.Count;
|
||||
string get = height >= generate.Count ? null : generate[height];
|
||||
if (l[i].Equals("\n"))
|
||||
{
|
||||
if (hasHeight) generate[height] = get ?? "";
|
||||
else if (!generate.Add("")) goto Done;
|
||||
++height;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (get == null || get.Length == 0)
|
||||
{
|
||||
if(hasHeight) generate[height] = l[i];
|
||||
else if (!generate.Add(l[i])) goto Done;
|
||||
}
|
||||
else generate[height] = get + " " + l[i];
|
||||
}
|
||||
Done:
|
||||
return generate.ToArray();
|
||||
for (int i = 0; i < text.Length; ++i)
|
||||
{
|
||||
if (generate.Count == 0)
|
||||
|
@ -125,6 +125,7 @@ namespace Client.ConsoleForms.Graphics
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public virtual void TriggerKeyEvent(ConsoleKeyInfo info) => TriggerKeyEvent(new ConsoleController.KeyEvent(info));
|
||||
public virtual void TriggerKeyEvent(ConsoleController.KeyEvent info) => HandleKeyEvent(info, true, true);
|
||||
protected void DrawTopPadding(int left, ref int top) => DrawPadding(left, ref top, padding.Top());
|
||||
protected void DrawBottomPadding(int left, ref int top) => DrawPadding(left, ref top, padding.Bottom());
|
||||
|
98
Client/Context/IntroContext.cs
Normal file
98
Client/Context/IntroContext.cs
Normal file
@ -0,0 +1,98 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Client.ConsoleForms;
|
||||
using Client.ConsoleForms.Graphics;
|
||||
|
||||
namespace Client
|
||||
{
|
||||
public sealed class IntroContext : Context
|
||||
{
|
||||
public IntroContext(ContextManager manager, Action onComplete) : base(manager, "Intro", "Common")
|
||||
{
|
||||
GetView<DialogView>("welcome").RegisterSelectListener((v, i, s) =>
|
||||
{
|
||||
if (i == 1)
|
||||
{
|
||||
Hide(v);
|
||||
onComplete();
|
||||
}
|
||||
else
|
||||
{
|
||||
Hide(v);
|
||||
Show("describe1");
|
||||
}
|
||||
});
|
||||
|
||||
GetView<DialogView>("describe1").RegisterSelectListener((v, i, s) =>
|
||||
{
|
||||
if (i == 1) v.TriggerKeyEvent(new ConsoleKeyInfo('\0', ConsoleKey.Escape, false, false, false));
|
||||
else
|
||||
{
|
||||
Hide(v);
|
||||
Show("describe2");
|
||||
}
|
||||
});
|
||||
|
||||
GetView<DialogView>("describe2").RegisterSelectListener((v, i, s) =>
|
||||
{
|
||||
if (i == 1) v.TriggerKeyEvent(new ConsoleKeyInfo('\0', ConsoleKey.Escape, false, false, false));
|
||||
else
|
||||
{
|
||||
Hide(v);
|
||||
Show("describe3");
|
||||
}
|
||||
});
|
||||
|
||||
GetView<InputView>("describe3").SubmissionsListener = v =>
|
||||
{
|
||||
Hide(v);
|
||||
Show("describe4");
|
||||
};
|
||||
|
||||
GetView<InputView>("describe4").SubmissionsListener = v =>
|
||||
{
|
||||
Hide(v);
|
||||
Show("describe4_1");
|
||||
};
|
||||
|
||||
GetView<InputView>("describe4_1").SubmissionsListener = v =>
|
||||
{
|
||||
Hide(v);
|
||||
Show("describe5");
|
||||
};
|
||||
|
||||
GetView<DialogView>("describe5").RegisterSelectListener((v, i, s) =>
|
||||
{
|
||||
Hide(v);
|
||||
Show("describe4_1");
|
||||
});
|
||||
|
||||
GetView<DialogView>("describe5").OnBackEvent = v =>
|
||||
{
|
||||
Hide(v);
|
||||
onComplete();
|
||||
};
|
||||
}
|
||||
|
||||
public override void OnCreate()
|
||||
{
|
||||
Show("welcome");
|
||||
}
|
||||
|
||||
public override void OnDestroy()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// Graphics update trigger
|
||||
public override bool Update(ConsoleController.KeyEvent keypress, bool hasKeypress = true)
|
||||
{
|
||||
|
||||
// Return: whether or not to redraw graphics
|
||||
return base.Update(keypress, hasKeypress);
|
||||
}
|
||||
}
|
||||
}
|
@ -32,8 +32,10 @@ namespace ConsoleForms
|
||||
|
||||
// Start with the networking context
|
||||
ContextManager manager = new ContextManager();
|
||||
NetContext networking = new NetContext(manager);
|
||||
|
||||
manager.LoadContext(new NetContext(manager));
|
||||
if (CheckIsNewUser()) manager.LoadContext(new IntroContext(manager, () => manager.LoadContext(networking)));
|
||||
else manager.LoadContext(networking);
|
||||
|
||||
// Start input listener loop. Graphics happen here too (triggered by keystrokes)
|
||||
ConsoleController.KeyEvent info = new ConsoleController.KeyEvent(default(ConsoleKeyInfo))
|
||||
@ -58,6 +60,14 @@ namespace ConsoleForms
|
||||
} while ((!info.ValidEvent || info.Event.Key != ConsoleKey.Escape) && !controller.ShouldExit);
|
||||
}
|
||||
|
||||
private static bool CheckIsNewUser()
|
||||
{
|
||||
if (File.Exists(".cfvfy")) return false;
|
||||
File.Create(".cfvfy").Close();
|
||||
File.SetAttributes(".cfvfy", FileAttributes.Hidden);
|
||||
return true;
|
||||
}
|
||||
|
||||
// Detects if a key has been hit without blocking
|
||||
[DllImport("msvcrt")]
|
||||
public static extern int _kbhit();
|
||||
|
91
Client/Properties/Resources.Designer.cs
generated
91
Client/Properties/Resources.Designer.cs
generated
@ -73,7 +73,14 @@ namespace Client.Properties {
|
||||
/// </Options>
|
||||
/// <Text>@string/ERR_empty</Text>
|
||||
/// </DialogView>
|
||||
///</Resources>.
|
||||
///
|
||||
/// <DialogView id="ConnectionError"
|
||||
/// padding_left="2"
|
||||
/// padding_right="2"
|
||||
/// padding_top="1"
|
||||
/// padding_bottom="1"
|
||||
/// border="4">
|
||||
/// <Opt [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string Common {
|
||||
get {
|
||||
@ -101,6 +108,33 @@ namespace Client.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?>
|
||||
///<Elements xmlns="Client.ConsoleForms.Graphics">
|
||||
///
|
||||
/// <!-- First dialog that welcomes new user -->
|
||||
/// <DialogView id="welcome"
|
||||
/// padding_left="2"
|
||||
/// padding_right="2"
|
||||
/// padding_top="1"
|
||||
/// padding_bottom="1">
|
||||
/// <Options>
|
||||
/// <Option>@string/WS_accept</Option>
|
||||
/// <Option>@string/WS_dismiss</Option>
|
||||
/// </Options>
|
||||
/// <Text>@string/WS_welcome</Text>
|
||||
/// </DialogView>
|
||||
///
|
||||
/// <!-- First intro dialog -->
|
||||
/// <DialogView id="describe1"
|
||||
/// padding_left="2" [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string Intro {
|
||||
get {
|
||||
return ResourceManager.GetString("Intro", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Byte[].
|
||||
/// </summary>
|
||||
@ -163,8 +197,8 @@ namespace Client.Properties {
|
||||
/// padding_bottom="1">
|
||||
/// <Text>@string/SE_bal</Text>
|
||||
/// </TextView>
|
||||
///
|
||||
/// <ListView id="me [rest of string was truncated]";.
|
||||
///
|
||||
/// <TextView id="acco [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string Session {
|
||||
get {
|
||||
@ -198,14 +232,15 @@ namespace Client.Properties {
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?>
|
||||
///<Strings label="English">
|
||||
/// <Entry name="NC_head">Server configuration</Entry>
|
||||
/// <Entry name="NC_sec">The selected server's identity could not be verified. This implies that it is not an official server. Continue?</Entry>
|
||||
/// <Entry name="NC_stall">Connecting to server...</Entry>
|
||||
/// <Entry name="NC_next">Continue</Entry>
|
||||
/// <Entry name="NC_cancel">Cancel</Entry>
|
||||
/// <Entry name="NC_ip">Server IP:</Entry>
|
||||
/// <Entry name="NC_port">Port:</Entry>
|
||||
/// <Entry name="NC_iperr">The s [rest of string was truncated]";.
|
||||
/// <Entry name="WS_welcome">Hello and welcome to the ConsoleForms bank project!
|
||||
///If you are unfamiliar with ConsoleForms and would like to
|
||||
///familiarize yourself with it, we are offering a beginner's
|
||||
///guide to the format! Note: This dialog will never be show again.
|
||||
///Would you like to be shown the features of ConsoleForms
|
||||
///before proceeding?</Entry>
|
||||
/// <Entry name="WS_dismiss">No thank you</Entry>
|
||||
/// <Entry name="WS_accept">Teach me</Entry>
|
||||
/// <E [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string strings_lang_en_GB {
|
||||
get {
|
||||
@ -216,14 +251,15 @@ namespace Client.Properties {
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?>
|
||||
///<Strings label="English">
|
||||
/// <Entry name="NC_head">Server configuration</Entry>
|
||||
/// <Entry name="NC_sec">The selected server's identity could not be verified. This implies that it is not an official server. Continue?</Entry>
|
||||
/// <Entry name="NC_stall">Connecting to server...</Entry>
|
||||
/// <Entry name="NC_next">Continue</Entry>
|
||||
/// <Entry name="NC_cancel">Cancel</Entry>
|
||||
/// <Entry name="NC_ip">Server IP:</Entry>
|
||||
/// <Entry name="NC_port">Port:</Entry>
|
||||
/// <Entry name="NC_iperr">The s [rest of string was truncated]";.
|
||||
/// <Entry name="WS_welcome">Hello and welcome to the ConsoleForms bank project!
|
||||
///If you are unfamiliar with ConsoleForms and would like to
|
||||
///familiarize yourself with it, we are offering a beginner's
|
||||
///guide to the format! Note: This dialog will never be show again.
|
||||
///Would you like to be shown the features of ConsoleForms
|
||||
///before proceeding?</Entry>
|
||||
/// <Entry name="WS_dismiss">No thank you</Entry>
|
||||
/// <Entry name="WS_accept">Teach me</Entry>
|
||||
/// <E [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string strings_lang_en_US {
|
||||
get {
|
||||
@ -234,14 +270,15 @@ namespace Client.Properties {
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to <?xml version="1.0" encoding="utf-8" ?>
|
||||
///<Strings label="Svenska">
|
||||
/// <Entry name="NC_head">Serverkonfiguration</Entry>
|
||||
/// <Entry name="NC_sec">Den valda serverns identitet kunde inte verifieras. Detta innebär att det inte är en officiell server. Fortsätt?</Entry>
|
||||
/// <Entry name="NC_stall">Kopplar upp mot servern...</Entry>
|
||||
/// <Entry name="NC_next">Fortsätt</Entry>
|
||||
/// <Entry name="NC_cancel">Avbryt</Entry>
|
||||
/// <Entry name="NC_ip">Server IP:</Entry>
|
||||
/// <Entry name="NC_port">Port:</Entry>
|
||||
/// <Entry name="NC_iperr">De [rest of string was truncated]";.
|
||||
/// <Entry name="WS_welcome">Hej och välkommen till ConsoleForms bankprojektet!
|
||||
///Om du är ovan vid ConsoleForms-gränssnittet och vill
|
||||
///vänja dig vid dess funktioner, så finns det en guide
|
||||
///till gränssnittet!
|
||||
///Notera att denna dialog aldrig kommer att visas igen.
|
||||
///Vill du gå igenom en introduktion till gränssnittet?</Entry>
|
||||
/// <Entry name="WS_dismiss">Nej tack</Entry>
|
||||
/// <Entry name="WS_accept">Ja tack</Entry>
|
||||
/// <Entry name="WS_continue">Nästa</ [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string strings_lang_sv_SE {
|
||||
get {
|
||||
|
@ -154,4 +154,7 @@
|
||||
<data name="n_0x100" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\0x100.n;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="Intro" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Layout\Intro.xml;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
|
||||
</data>
|
||||
</root>
|
100
Client/Resources/Layout/Intro.xml
Normal file
100
Client/Resources/Layout/Intro.xml
Normal file
@ -0,0 +1,100 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Elements xmlns="Client.ConsoleForms.Graphics">
|
||||
|
||||
<!-- First dialog that welcomes new user -->
|
||||
<DialogView id="welcome"
|
||||
padding_left="2"
|
||||
padding_right="2"
|
||||
padding_top="1"
|
||||
padding_bottom="1">
|
||||
<Options>
|
||||
<Option>@string/WS_accept</Option>
|
||||
<Option>@string/WS_dismiss</Option>
|
||||
</Options>
|
||||
<Text>@string/WS_welcome</Text>
|
||||
</DialogView>
|
||||
|
||||
<!-- First intro dialog -->
|
||||
<DialogView id="describe1"
|
||||
padding_left="2"
|
||||
padding_right="2"
|
||||
padding_top="1"
|
||||
padding_bottom="1"
|
||||
back="Intro:welcome">
|
||||
<Options>
|
||||
<Option>@string/WS_continue</Option>
|
||||
</Options>
|
||||
<Text>@string/WS_describe1</Text>
|
||||
</DialogView>
|
||||
|
||||
<!-- Second intro view. Teaches dialog nav -->
|
||||
<DialogView id="describe2"
|
||||
padding_left="2"
|
||||
padding_right="2"
|
||||
padding_top="1"
|
||||
padding_bottom="1"
|
||||
back="Intro:describe1">
|
||||
<Options>
|
||||
<Option>@string/WS_continue</Option>
|
||||
<Option>@string/WS_back</Option>
|
||||
</Options>
|
||||
<Text>@string/WS_describe2</Text>
|
||||
</DialogView>
|
||||
|
||||
<!-- Third intro view. Show Inputs -->
|
||||
<InputView id="describe3"
|
||||
padding_left="2"
|
||||
padding_right="2"
|
||||
padding_top="1"
|
||||
padding_bottom="1"
|
||||
back="Intro:describe2">
|
||||
<Fields>
|
||||
<Field>@string/WS_input</Field>
|
||||
<Field>@string/WS_input</Field>
|
||||
<Field>@string/WS_input</Field>
|
||||
</Fields>
|
||||
<Text>@string/WS_describe3</Text>
|
||||
</InputView>
|
||||
|
||||
<!-- Fourth intro view. Input formats -->
|
||||
<InputView id="describe4"
|
||||
padding_left="2"
|
||||
padding_right="2"
|
||||
padding_top="1"
|
||||
padding_bottom="1"
|
||||
back="Intro:describe3">
|
||||
<Fields>
|
||||
<Field>@string/WS_input</Field>
|
||||
<Field input_type="integer">@string/WS_input_integer</Field>
|
||||
<Field input_type="decimal">@string/WS_input_decimal</Field>
|
||||
<Field input_type="alphabet">@string/WS_input_alphabet</Field>
|
||||
</Fields>
|
||||
<Text>@string/WS_describe4</Text>
|
||||
</InputView>
|
||||
|
||||
<InputView id="describe4_1"
|
||||
padding_left="2"
|
||||
padding_right="2"
|
||||
padding_top="1"
|
||||
padding_bottom="1"
|
||||
back="Intro:describe4">
|
||||
<Fields>
|
||||
<Field input_type="alphanumeric">@string/WS_input_alphanum</Field>
|
||||
<Field hide="true">@string/WS_input_password</Field>
|
||||
<Field max_length="5">@string/WS_input_limited</Field>
|
||||
</Fields>
|
||||
<Text>@string/WS_describe4_1</Text>
|
||||
</InputView>
|
||||
|
||||
<!-- Final intro view. Teaches ESC-based nav -->
|
||||
<DialogView id="describe5"
|
||||
padding_left="2"
|
||||
padding_right="2"
|
||||
padding_top="1"
|
||||
padding_bottom="1">
|
||||
<Options>
|
||||
<Option>@string/WS_back</Option>
|
||||
</Options>
|
||||
<Text>@string/WS_describe5</Text>
|
||||
</DialogView>
|
||||
</Elements>
|
@ -1,5 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Strings label="English">
|
||||
<Entry name="WS_welcome">Hello and welcome to the ConsoleForms bank project!
|
||||
If you are unfamiliar with ConsoleForms and would like to
|
||||
familiarize yourself with it, we are offering a beginner's
|
||||
guide to the format! Note: This dialog will never appear again.
|
||||
Would you like to be shown the features of ConsoleForms
|
||||
before proceeding?</Entry>
|
||||
<Entry name="WS_dismiss">No thank you</Entry>
|
||||
<Entry name="WS_accept">Teach me</Entry>
|
||||
<Entry name="WS_continue">Next</Entry>
|
||||
<Entry name="WS_back">Back</Entry>
|
||||
<Entry name="WS_describe1">ConsoleForms is a graphical interface API heavily inspired
|
||||
by the graphics of Windows 1.0, and the functionality
|
||||
of the Android UI experience.</Entry>
|
||||
<Entry name="WS_describe2">As ConsoleForms is entirely based on the console, it relies
|
||||
completely on keyboard-based events.
|
||||
For example, press the [LEFT] and [RIGHT] arrow keys to select the
|
||||
options listed below.</Entry>
|
||||
<Entry name="WS_describe3">ConsoleForms also supports input fields like the one below.
|
||||
To enter information into an input field, simply type.
|
||||
To switch which input field you are writing in, use
|
||||
the [UP] and [DOWN] arrow keys to navigate in the
|
||||
corresponding direction. To navigate within a field,
|
||||
use the [LEFT] and/or [RIGHT] arrow keys.
|
||||
Note: to quickly navigate to the inut field below the
|
||||
currently selected one, use [TAB]. To submit the input,
|
||||
press [ENTER].</Entry>
|
||||
<Entry name="WS_describe4">Excellent! Now, some input fields require a certain
|
||||
input format, for example: integer, decimal, e.t.c.
|
||||
This means that if you enter characters that don't
|
||||
conform to the set format, the characters will be
|
||||
discarded.</Entry>
|
||||
<Entry name="WS_input">Input field:</Entry>
|
||||
<Entry name="WS_input_integer">Integer input:</Entry>
|
||||
<Entry name="WS_input_decimal">Decimal input:</Entry>
|
||||
<Entry name="WS_input_alphabet">Letters input:</Entry>
|
||||
<Entry name="WS_describe4_1">More input types are demonstrated below...</Entry>
|
||||
<Entry name="WS_input_alphanum">Alphanumeric input:</Entry>
|
||||
<Entry name="WS_input_password">Password input:</Entry>
|
||||
<Entry name="WS_input_limited">Limited-length input:</Entry>
|
||||
<Entry name="WS_describe5">To exit (or go back) in most situations,
|
||||
simply press the [ESC] key. With that,
|
||||
the guide is complete. Press [ESC] to exit
|
||||
the tutorial and start using the program!</Entry>
|
||||
|
||||
<Entry name="NC_head">Server configuration</Entry>
|
||||
<Entry name="NC_sec">The selected server's identity could not be verified. This implies that it is not an official server. Continue?</Entry>
|
||||
<Entry name="NC_stall">Connecting to server...</Entry>
|
||||
@ -53,7 +97,7 @@ Is this correct?</Entry>
|
||||
<Entry name="SE_pwdu">Update password</Entry>
|
||||
<Entry name="SE_exit">Log out</Entry>
|
||||
<Entry name="SE_open">Open an account</Entry>
|
||||
<Entry name="SE_close">Close an account</Entry>
|
||||
<Entry name="SE_close">Close account</Entry>
|
||||
<Entry name="SE_accounts">Show accounts</Entry>
|
||||
<Entry name="SE_balance_toohigh">Supplied balance is higher than available amount in source account!
|
||||
Available balance: $0 SEK</Entry>
|
||||
|
@ -1,5 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Strings label="English">
|
||||
<Entry name="WS_welcome">Hello and welcome to the ConsoleForms bank project!
|
||||
If you are unfamiliar with ConsoleForms and would like to
|
||||
familiarize yourself with it, we are offering a beginner's
|
||||
guide to the format! Note: This dialog will never appear again.
|
||||
Would you like to be shown the features of ConsoleForms
|
||||
before proceeding?</Entry>
|
||||
<Entry name="WS_dismiss">No thank you</Entry>
|
||||
<Entry name="WS_accept">Teach me</Entry>
|
||||
<Entry name="WS_continue">Next</Entry>
|
||||
<Entry name="WS_back">Back</Entry>
|
||||
<Entry name="WS_describe1">ConsoleForms is a graphical interface API heavily inspired
|
||||
by the graphics of Windows 1.0, and the functionality
|
||||
of the Android UI experience.</Entry>
|
||||
<Entry name="WS_describe2">As ConsoleForms is entirely based on the console, it relies
|
||||
completely on keyboard-based events.
|
||||
For example, press the [LEFT] and [RIGHT] arrow keys to select the
|
||||
options listed below.</Entry>
|
||||
<Entry name="WS_describe3">ConsoleForms also supports input fields like the one below.
|
||||
To enter information into an input field, simply type.
|
||||
To switch which input field you are writing in, use
|
||||
the [UP] and [DOWN] arrow keys to navigate in the
|
||||
corresponding direction. To navigate within a field,
|
||||
use the [LEFT] and/or [RIGHT] arrow keys.
|
||||
Note: to quickly navigate to the inut field below the
|
||||
currently selected one, use [TAB]. To submit the input,
|
||||
press [ENTER].</Entry>
|
||||
<Entry name="WS_describe4">Excellent! Now, some input fields require a certain
|
||||
input format, for example: integer, decimal, e.t.c.
|
||||
This means that if you enter characters that don't
|
||||
conform to the set format, the characters will be
|
||||
discarded.</Entry>
|
||||
<Entry name="WS_input">Input field:</Entry>
|
||||
<Entry name="WS_input_integer">Integer input:</Entry>
|
||||
<Entry name="WS_input_decimal">Decimal input:</Entry>
|
||||
<Entry name="WS_input_alphabet">Letters input:</Entry>
|
||||
<Entry name="WS_describe4_1">More input types are demonstrated below...</Entry>
|
||||
<Entry name="WS_input_alphanum">Alphanumeric input:</Entry>
|
||||
<Entry name="WS_input_password">Password input:</Entry>
|
||||
<Entry name="WS_input_limited">Limited-length input:</Entry>
|
||||
<Entry name="WS_describe5">To exit (or go back) in most situations,
|
||||
simply press the [ESC] key. With that,
|
||||
the guide is complete. Press [ESC] to exit
|
||||
the tutorial and start using the program!</Entry>
|
||||
|
||||
<Entry name="NC_head">Server configuration</Entry>
|
||||
<Entry name="NC_sec">The selected server's identity could not be verified. This implies that it is not an official server. Continue?</Entry>
|
||||
<Entry name="NC_stall">Connecting to server...</Entry>
|
||||
@ -53,7 +97,7 @@ Is this correct?</Entry>
|
||||
<Entry name="SE_pwdu">Update password</Entry>
|
||||
<Entry name="SE_exit">Log out</Entry>
|
||||
<Entry name="SE_open">Open an account</Entry>
|
||||
<Entry name="SE_close">Close an account</Entry>
|
||||
<Entry name="SE_close">Close account</Entry>
|
||||
<Entry name="SE_accounts">Show accounts</Entry>
|
||||
<Entry name="SE_balance_toohigh">Supplied balance is higher than available amount in source account!
|
||||
Available balance: $0 SEK</Entry>
|
||||
|
@ -1,5 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Strings label="Svenska">
|
||||
<Entry name="WS_welcome">Hej och välkommen till ConsoleForms bankprojektet!
|
||||
Om du är ovan vid ConsoleForms-gränssnittet och vill
|
||||
vänja dig vid dess funktioner, så finns det en guide
|
||||
till gränssnittet!
|
||||
Notera att denna dialog aldrig kommer att visas igen.
|
||||
Vill du gå igenom en introduktion till gränssnittet?</Entry>
|
||||
<Entry name="WS_dismiss">Nej tack</Entry>
|
||||
<Entry name="WS_accept">Ja tack</Entry>
|
||||
<Entry name="WS_continue">Nästa</Entry>
|
||||
<Entry name="WS_back">Backa</Entry>
|
||||
<Entry name="WS_describe1">ConsoleForms är ett grafiskt gränssnitt som tar
|
||||
inspiration ifrån Windows 1.0's gränssnitt
|
||||
och från Android's kodningssätt samt
|
||||
eventsystem.</Entry>
|
||||
<Entry name="WS_describe2">Eftersom ConsoleForms är helt och hållet konsollbaserat,
|
||||
beror den på tangentborsbaserade events.
|
||||
T.ex. kan du trycka på [VÄNSTER] och [HÖGER]
|
||||
tangenterna för att göra ett val här nedan.</Entry>
|
||||
<Entry name="WS_describe3">ConsoleForms stöder dessutom input-fält som den här nedan.
|
||||
För att mata in information så är det bara att skriva.
|
||||
För att byta filket vält som du skriver i, använd
|
||||
[UPP] och [NED] tangenterna för att navigera i den
|
||||
korresponderande riktningen. För att navigera inom
|
||||
ett fält använder du bara [HÖGER] och [VÄNSTER]
|
||||
piltangent som i dialogrutan.
|
||||
Notera att man dessutom kan navigera till nästa
|
||||
inputfält genom att trycka på [TABB].
|
||||
För att lämna in informationen i inputfälten
|
||||
trycker du [ENTER]. Detta gör du dessutom för att
|
||||
fortsätta.</Entry>
|
||||
<Entry name="WS_describe4">Underbart! I vissa fall kan det ske att inputfälten
|
||||
kräver ett visst format på den text som anges t.ex:
|
||||
Heltal, decimaltal, et.c. Detta innebär att om en
|
||||
karaktär anges som inte matchar det bestämda
|
||||
formatet, kommer den angivna karaktären att
|
||||
ignoreras.</Entry>
|
||||
<Entry name="WS_input">Inputfält:</Entry>
|
||||
<Entry name="WS_input_integer">Heltals-input:</Entry>
|
||||
<Entry name="WS_input_decimal">Decimaltals-input:</Entry>
|
||||
<Entry name="WS_input_alphabet">Bokstavs-input:</Entry>
|
||||
<Entry name="WS_describe4_1">Fler inmatningsformat...</Entry>
|
||||
<Entry name="WS_input_alphanum">Alfanumerisk input:</Entry>
|
||||
<Entry name="WS_input_password">Lösenords-input:</Entry>
|
||||
<Entry name="WS_input_limited">Längdbegränsad input:</Entry>
|
||||
<Entry name="WS_describe4">För att avbryta (eller back) så används [ESC]-
|
||||
tangenten, och med det var guiden slut.
|
||||
För att lämna guiden och börja använda
|
||||
programmet, tryck [ESC].</Entry>
|
||||
|
||||
<Entry name="NC_head">Serverkonfiguration</Entry>
|
||||
<Entry name="NC_sec">Den valda serverns identitet kunde inte verifieras. Detta innebär att det inte är en officiell server. Fortsätt?</Entry>
|
||||
<Entry name="NC_stall">Kopplar upp mot servern...</Entry>
|
||||
@ -53,7 +102,7 @@ Till kontot: $2
|
||||
<Entry name="SE_pwdu">Uppdatera lösenord</Entry>
|
||||
<Entry name="SE_exit">Logga ut</Entry>
|
||||
<Entry name="SE_open">Öppna ett konto</Entry>
|
||||
<Entry name="SE_close">Stäng ett konto</Entry>
|
||||
<Entry name="SE_close">Stäng konto</Entry>
|
||||
<Entry name="SE_accounts">Visa konton</Entry>
|
||||
<Entry name="SE_balance_toohigh">Angivet belopp är högre än det tillgängliga beloppet i ursprungskontot!
|
||||
Tillgängligt saldo: $0 SEK</Entry>
|
||||
|
Loading…
x
Reference in New Issue
Block a user