43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2024 ETH Zürich, IT Services
 | |
|  * 
 | |
|  * 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 culture name of this keyboard layout.
 | |
| 		/// </summary>
 | |
| 		string CultureName { 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 LayoutName { get; }
 | |
| 	}
 | |
| }
 | 
