2022-08-03 14:04:40 +02:00
|
|
|
|
namespace Quik
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An object which QUIK commands may be issued to.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class QuikContext
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Draw queue.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public QuikDraw Draw { get; } = new QuikDraw();
|
2022-08-04 15:40:58 +02:00
|
|
|
|
|
|
|
|
|
public QuikStrokeStyle DefaultStroke { get; set; } = new QuikStrokeStyle(new QuikColor(0x000000FF), 4);
|
|
|
|
|
|
|
|
|
|
public QuikFillStyle DefaultFill { get; set; } = new QuikFillStyle()
|
|
|
|
|
{
|
2022-08-16 20:35:12 +02:00
|
|
|
|
Color = new QuikColor(0xA0A0A0FF)
|
2022-08-04 15:40:58 +02:00
|
|
|
|
};
|
2022-08-03 14:04:40 +02:00
|
|
|
|
}
|
|
|
|
|
}
|