GabrielTofvesson fc9bbb1d6b * Partially reworked key event system
* 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
2018-05-14 22:43:03 +02:00

30 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.ConsoleForms.Graphics
{
// Computes a Left and Top value for some specified window parameters
public delegate Tuple<int, int> PositionManager(int screenWidth, int screenHeight);
public sealed class LayoutMeta
{
private readonly PositionManager manager;
public LayoutMeta(PositionManager manager)
{
this.manager = manager;
}
public Tuple<int, int> ComputeLayoutParams(int width, int height) => manager(width, height);
public static LayoutMeta Centering(View view) => new LayoutMeta(
(w, h) =>
new Tuple<int, int>(
SpaceMaths.CenterPad(Console.WindowWidth, view.ContentWidth + view.padding.Left() + view.padding.Right()).Item1,
SpaceMaths.CenterPad(Console.WindowHeight, view.ContentHeight + view.padding.Top() + view.padding.Bottom() + 1).Item1
)
);
}
}