38 lines
1,007 B
C#
38 lines
1,007 B
C#
/*
|
|
* Copyright (c) 2020 ETH Zürich, Educational Development and Technology (LET)
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
using System;
|
|
|
|
namespace SafeExamBrowser.SystemComponents.Contracts.Keyboard
|
|
{
|
|
/// <summary>
|
|
/// Defines a keyboard layout which can be loaded by the application.
|
|
/// </summary>
|
|
public interface IKeyboardLayout
|
|
{
|
|
/// <summary>
|
|
/// The three-letter ISO code of the culture to which this keyboard layout is associated.
|
|
/// </summary>
|
|
string CultureCode { get; }
|
|
|
|
/// <summary>
|
|
/// The unique identifier of the keyboard layout.
|
|
/// </summary>
|
|
Guid Id { get; }
|
|
|
|
/// <summary>
|
|
/// Indicates whether this is the currently active keyboard layout.
|
|
/// </summary>
|
|
bool IsCurrent { get; }
|
|
|
|
/// <summary>
|
|
/// The name of this keyboard layout.
|
|
/// </summary>
|
|
string Name { get; }
|
|
}
|
|
}
|