/*
* 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
{
///
/// Defines a keyboard layout which can be loaded by the application.
///
public interface IKeyboardLayout
{
///
/// The three-letter ISO code of the culture to which this keyboard layout is associated.
///
string CultureCode { get; }
///
/// The unique identifier of the keyboard layout.
///
Guid Id { get; }
///
/// Indicates whether this is the currently active keyboard layout.
///
bool IsCurrent { get; }
///
/// The name of this keyboard layout.
///
string Name { get; }
}
}