├── README.md ├── .gitattributes ├── LayoutParser.vb ├── borno_lite.ico ├── Resources ├── borno_lite.png ├── close_icon.png ├── Borno.kbl ├── National.kbl └── Borno Encoding.kbl ├── BornoLite.vbproj.user ├── My Project ├── Settings.settings ├── Application.myapp ├── AssemblyInfo.vb ├── Application.Designer.vb ├── Settings.Designer.vb ├── Resources.Designer.vb └── Resources.resx ├── App.config ├── BornoLite.sln ├── NativeMethods.vb ├── LayoutList_PopUp.vb ├── BornoLite.vbproj ├── MainUI.resx ├── MainUI.Designer.vb ├── MainUI.vb ├── Keyboard.vb └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | # borno-lite 2 | A FREE OPEN SOURCE Bangla IME for Windows OS 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /LayoutParser.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepotro/borno-lite/HEAD/LayoutParser.vb -------------------------------------------------------------------------------- /borno_lite.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepotro/borno-lite/HEAD/borno_lite.ico -------------------------------------------------------------------------------- /Resources/borno_lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepotro/borno-lite/HEAD/Resources/borno_lite.png -------------------------------------------------------------------------------- /Resources/close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepotro/borno-lite/HEAD/Resources/close_icon.png -------------------------------------------------------------------------------- /BornoLite.vbproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /My Project/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /My Project/Application.myapp: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | MainUI 5 | true 6 | 0 7 | true 8 | 0 9 | false 10 | -------------------------------------------------------------------------------- /BornoLite.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "BornoLite", "BornoLite.vbproj", "{3854C5CE-EFED-4A3D-AD28-2A20C8C1FCEB}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {3854C5CE-EFED-4A3D-AD28-2A20C8C1FCEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {3854C5CE-EFED-4A3D-AD28-2A20C8C1FCEB}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {3854C5CE-EFED-4A3D-AD28-2A20C8C1FCEB}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {3854C5CE-EFED-4A3D-AD28-2A20C8C1FCEB}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | ' Review the values of the assembly attributes 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 'The following GUID is for the ID of the typelib if this project is exposed to COM 21 | 22 | 23 | ' Version information for an assembly consists of the following four values: 24 | ' 25 | ' Major Version 26 | ' Minor Version 27 | ' Build Number 28 | ' Revision 29 | ' 30 | ' You can specify all the values or you can default the Build and Revision Numbers 31 | ' by using the '*' as shown below: 32 | ' 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | 'NOTE: This file is auto-generated; do not modify it directly. To make changes, 18 | ' or if you encounter build errors in this file, go to the Project Designer 19 | ' (go to Project Properties or double-click the My Project node in 20 | ' Solution Explorer), and make changes on the Application tab. 21 | ' 22 | Partial Friend Class MyApplication 23 | 24 | _ 25 | Public Sub New() 26 | MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) 27 | Me.IsSingleInstance = true 28 | Me.EnableVisualStyles = true 29 | Me.SaveMySettingsOnExit = false 30 | Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses 31 | End Sub 32 | 33 | _ 34 | Protected Overrides Sub OnCreateMainForm() 35 | Me.MainForm = Global.CodepotroBornoLite.MainUI 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /NativeMethods.vb: -------------------------------------------------------------------------------- 1 | 2 | 3 | Imports System.Runtime.InteropServices 4 | 5 | Public Class NativeMethods 6 | 7 | 8 | Friend Shared Function SendInput(ByVal cInputs As Int32, ByRef pInputs As INPUT, ByVal cbSize As Int32) As Int32 9 | End Function 10 | 11 | 12 | Friend Structure INPUT 13 | Public dwType As InputType 14 | Public ki As KEYBDINPUT 15 | Public hi As HARDWAREINPUT 16 | End Structure 17 | 18 | 19 | Friend Structure KEYBDINPUT 20 | Public wVk As Int16 21 | Public wScan As Int16 22 | Public dwFlags As KEYEVENTF 23 | Public time As Int32 24 | Public dwExtraInfo As IntPtr 25 | End Structure 26 | 27 | 28 | Friend Structure HARDWAREINPUT 29 | Public uMsg As Int32 30 | Public wParamL As Int16 31 | Public wParamH As Int16 32 | End Structure 33 | 34 | Friend Enum InputType As Integer 35 | Keyboard = 1 36 | Hardware = 2 37 | End Enum 38 | 39 | 40 | Friend Enum KEYEVENTF As Integer 41 | KEYDOWN = 0 42 | EXTENDEDKEY = 1 43 | KEYUP = 2 44 | [UNICODE] = 4 45 | SCANCODE = 8 46 | End Enum 47 | 48 | 49 | 50 | Friend Enum MOUSEEVENTF As Integer 51 | MOVE = &H1 52 | LEFTDOWN = &H2 53 | LEFTUP = &H4 54 | RIGHTDOWN = &H8 55 | RIGHTUP = &H10 56 | MIDDLEDOWN = &H20 57 | MIDDLEUP = &H40 58 | XDOWN = &H80 59 | XUP = &H100 60 | VIRTUALDESK = &H400 61 | WHEEL = &H800 62 | ABSOLUTE = &H8000 63 | End Enum 64 | 65 | 66 | End Class 67 | -------------------------------------------------------------------------------- /LayoutList_PopUp.vb: -------------------------------------------------------------------------------- 1 | ' 2 | ' 3 | ' This program Is free software; you can redistribute it And/Or modify 4 | ' it under the terms Of the GNU General Public License As published by 5 | ' the Free Software Foundation; either version 3 Of the License, Or 6 | ' (at your option) any later version. 7 | ' 8 | ' Software distributed under the License Is distributed On an "AS IS" 9 | ' basis, WITHOUT WARRANTY Of ANY KIND, either express Or implied. See the 10 | ' License for the specific language governing rights And limitations 11 | ' under the License. 12 | ' 13 | ' The Initial Developer of this Code is Jayed Ahsan Saad 14 | ' Copyright© Jayed Ahsan Saad. All Rights Reserved 15 | ' 16 | ' 17 | 18 | Public Class LayoutList_PopUp 19 | Inherits ToolStripRenderer 20 | 21 | Protected Overloads Overrides Sub OnRenderMenuItemBackground(e As ToolStripItemRenderEventArgs) 22 | Dim xa = New Point(0, 0) 23 | Dim rc As New Rectangle(xa, e.Item.Size) 24 | Dim c As Color 25 | If e.Item.Selected Then 26 | 27 | c = Color.FromArgb(201, 222, 245) 28 | e.Item.ForeColor = Color.FromArgb(20, 20, 20) 29 | Else 30 | c = Color.FromArgb(246, 246, 246) 31 | e.Item.ForeColor = Color.FromArgb(20, 20, 20) 32 | 33 | 34 | End If 35 | 36 | Using brush As New SolidBrush(c) 37 | e.Graphics.FillRectangle(brush, rc) 38 | 39 | 40 | End Using 41 | End Sub 42 | 43 | 44 | Protected Overloads Overrides Sub OnRenderItemCheck(e As ToolStripItemImageRenderEventArgs) 45 | 46 | Dim xa = New Point(0, 0) 47 | Dim rc As New Rectangle(xa, e.Item.Size) 48 | Dim c As Color 49 | 50 | c = Color.FromArgb(253, 253, 253) 51 | e.Item.ForeColor = Color.FromArgb(20, 20, 20) 52 | 53 | 54 | 55 | 56 | 57 | Using brush As New SolidBrush(c) 58 | e.Graphics.FillRectangle(brush, rc) 59 | 60 | 61 | End Using 62 | 63 | End Sub 64 | 65 | 66 | Protected Overloads Overrides Sub OnRenderToolStripBorder(e As ToolStripRenderEventArgs) 67 | 68 | End Sub 69 | End Class 70 | -------------------------------------------------------------------------------- /My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | _ 20 | Partial Friend NotInheritable Class MySettings 21 | Inherits Global.System.Configuration.ApplicationSettingsBase 22 | 23 | Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) 24 | 25 | #Region "My.Settings Auto-Save Functionality" 26 | #If _MyType = "WindowsForms" Then 27 | Private Shared addedHandler As Boolean 28 | 29 | Private Shared addedHandlerLockObject As New Object 30 | 31 | _ 32 | Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) 33 | If My.Application.SaveMySettingsOnExit Then 34 | My.Settings.Save() 35 | End If 36 | End Sub 37 | #End If 38 | #End Region 39 | 40 | Public Shared ReadOnly Property [Default]() As MySettings 41 | Get 42 | 43 | #If _MyType = "WindowsForms" Then 44 | If Not addedHandler Then 45 | SyncLock addedHandlerLockObject 46 | If Not addedHandler Then 47 | AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings 48 | addedHandler = True 49 | End If 50 | End SyncLock 51 | End If 52 | #End If 53 | Return defaultInstance 54 | End Get 55 | End Property 56 | End Class 57 | End Namespace 58 | 59 | Namespace My 60 | 61 | _ 64 | Friend Module MySettingsProperty 65 | 66 | _ 67 | Friend ReadOnly Property Settings() As Global.CodepotroBornoLite.My.MySettings 68 | Get 69 | Return Global.CodepotroBornoLite.My.MySettings.Default 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | Imports System 15 | 16 | Namespace My.Resources 17 | 18 | 'This class was auto-generated by the StronglyTypedResourceBuilder 19 | 'class via a tool like ResGen or Visual Studio. 20 | 'To add or remove a member, edit your .ResX file then rerun ResGen 21 | 'with the /str option, or rebuild your VS project. 22 | ''' 23 | ''' A strongly-typed resource class, for looking up localized strings, etc. 24 | ''' 25 | _ 29 | Friend Module Resources 30 | 31 | Private resourceMan As Global.System.Resources.ResourceManager 32 | 33 | Private resourceCulture As Global.System.Globalization.CultureInfo 34 | 35 | ''' 36 | ''' Returns the cached ResourceManager instance used by this class. 37 | ''' 38 | _ 39 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 40 | Get 41 | If Object.ReferenceEquals(resourceMan, Nothing) Then 42 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("CodepotroBornoLite.Resources", GetType(Resources).Assembly) 43 | resourceMan = temp 44 | End If 45 | Return resourceMan 46 | End Get 47 | End Property 48 | 49 | ''' 50 | ''' Overrides the current thread's CurrentUICulture property for all 51 | ''' resource lookups using this strongly typed resource class. 52 | ''' 53 | _ 54 | Friend Property Culture() As Global.System.Globalization.CultureInfo 55 | Get 56 | Return resourceCulture 57 | End Get 58 | Set 59 | resourceCulture = value 60 | End Set 61 | End Property 62 | 63 | ''' 64 | ''' Looks up a localized resource of type System.Byte[]. 65 | ''' 66 | Friend ReadOnly Property Borno() As Byte() 67 | Get 68 | Dim obj As Object = ResourceManager.GetObject("Borno", resourceCulture) 69 | Return CType(obj,Byte()) 70 | End Get 71 | End Property 72 | 73 | ''' 74 | ''' Looks up a localized resource of type System.Byte[]. 75 | ''' 76 | Friend ReadOnly Property Borno_Encoding() As Byte() 77 | Get 78 | Dim obj As Object = ResourceManager.GetObject("Borno_Encoding", resourceCulture) 79 | Return CType(obj,Byte()) 80 | End Get 81 | End Property 82 | 83 | ''' 84 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 85 | ''' 86 | Friend ReadOnly Property borno_lite() As System.Drawing.Bitmap 87 | Get 88 | Dim obj As Object = ResourceManager.GetObject("borno_lite", resourceCulture) 89 | Return CType(obj,System.Drawing.Bitmap) 90 | End Get 91 | End Property 92 | 93 | ''' 94 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 95 | ''' 96 | Friend ReadOnly Property close_icon() As System.Drawing.Bitmap 97 | Get 98 | Dim obj As Object = ResourceManager.GetObject("close_icon", resourceCulture) 99 | Return CType(obj,System.Drawing.Bitmap) 100 | End Get 101 | End Property 102 | 103 | ''' 104 | ''' Looks up a localized resource of type System.Byte[]. 105 | ''' 106 | Friend ReadOnly Property National() As Byte() 107 | Get 108 | Dim obj As Object = ResourceManager.GetObject("National", resourceCulture) 109 | Return CType(obj,Byte()) 110 | End Get 111 | End Property 112 | End Module 113 | End Namespace 114 | -------------------------------------------------------------------------------- /BornoLite.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {3854C5CE-EFED-4A3D-AD28-2A20C8C1FCEB} 8 | WinExe 9 | CodepotroBornoLite.My.MyApplication 10 | CodepotroBornoLite 11 | Borno Lite 12 | 512 13 | WindowsForms 14 | v4.5.2 15 | true 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | true 22 | true 23 | bin\Debug\ 24 | Borno Lite.xml 25 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 26 | false 27 | 28 | 29 | AnyCPU 30 | pdbonly 31 | false 32 | true 33 | true 34 | bin\Release\ 35 | Borno Lite.xml 36 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 37 | false 38 | 39 | 40 | On 41 | 42 | 43 | Binary 44 | 45 | 46 | Off 47 | 48 | 49 | On 50 | 51 | 52 | borno_lite.ico 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | Form 84 | 85 | 86 | MainUI.vb 87 | Form 88 | 89 | 90 | 91 | 92 | True 93 | Application.myapp 94 | 95 | 96 | True 97 | True 98 | Resources.resx 99 | 100 | 101 | True 102 | Settings.settings 103 | True 104 | 105 | 106 | 107 | 108 | 109 | MainUI.vb 110 | 111 | 112 | VbMyResourcesResXFileCodeGenerator 113 | Resources.Designer.vb 114 | My.Resources 115 | Designer 116 | 117 | 118 | 119 | 120 | 121 | MyApplicationCodeGenerator 122 | Application.Designer.vb 123 | 124 | 125 | SettingsSingleFileGenerator 126 | My 127 | Settings.Designer.vb 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | Always 137 | 138 | 139 | 140 | 141 | Always 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 156 | -------------------------------------------------------------------------------- /MainUI.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 125 | 126 | iVBORw0KGgoAAAANSUhEUgAAABwAAAAZCAYAAAAiwE4nAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL 127 | iQAAC4kBN8nLrQAAANFJREFUSEu91M0JwlAUROFsFCzDmsSGIm4V/AFLEuzAEhQ1HTznLQKX4bxdbhbf 128 | 5sCdbJJ0pZRZYcyEMRPGTBgzYcyEMRPGqO+fbiF7ecsgF1nRLcEYaSxay0OKudEtwRhpbLSVn/jDqoFu 129 | CcZIY0u5hnHkdy0YI40dfZz4XQvGSGNfHyd+14Ix0tjHx4nftWCMNHbwceJ3LRgjjdWX5hzHid+1YIw0 130 | NtrILJ9FVD/8u/gDUz78Uf217eQl9YU6yXS/tqlhzIQxE8ZMGDNhzFO6P5Zc/PvAtD1VAAAAAElFTkSu 131 | QmCC 132 | 133 | 134 | 135 | 132, 17 136 | 137 | -------------------------------------------------------------------------------- /My Project/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\close_icon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\borno_lite.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\Resources\Borno.kbl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 129 | 130 | 131 | ..\Resources\Borno Encoding.kbl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 132 | 133 | 134 | ..\Resources\National.kbl;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 135 | 136 | -------------------------------------------------------------------------------- /Resources/Borno.kbl: -------------------------------------------------------------------------------- 1 | 2 | 3 | Borno 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | ) 13 | 14 | 15 | 16 | ! 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | # 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | % 33 | 34 | 35 | 36 | 37 | 38 | 39 | Ʌ 40 | & 41 | 42 | 43 | 44 | * 45 | 46 | 47 | 48 | ( 49 | 50 | 51 | ্র 52 | ্য 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | ি 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | র্ 153 | 154 | 155 | - 156 | _ 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | ’ 174 | 175 | 176 | 177 | ” 178 | 179 | 180 | 181 | ু 182 | ‍ু 183 | 184 | 185 | ূ 186 | ‍ূ 187 | 188 | 189 | ৃ 190 | ‍ৃ 191 | 192 | 193 | ঁা 194 | াঁ 195 | 196 | 197 | ঁু 198 | ুঁ 199 | 200 | 201 | ঁূ 202 | ূঁ 203 | 204 | 205 | ঁৃ 206 | ৃঁ 207 | 208 | 209 | র‌ে্য 210 | র‌্যে 211 | 212 | 213 | র‌ৈ্য 214 | র‌্যৈ 215 | 216 | 217 | র‌্য 218 | র‌্য 219 | 220 | 221 | ু্য 222 | ্যু 223 | 224 | 225 | ু্র 226 | ্রু 227 | 228 | 229 | ূ্য 230 | ্যূ 231 | 232 | 233 | ূ্র 234 | ্রূ 235 | 236 | 237 | ৃ্য 238 | ্যৃ 239 | 240 | 241 | ৃ্র 242 | ্রৃ 243 | 244 | 245 | েঁা 246 | োঁ 247 | 248 | 249 | েঁৗ 250 | ৌঁ 251 | 252 | 253 | ো 254 | 255 | 256 | 257 | েো 258 | 259 | 260 | 261 | েৌ 262 | 263 | 264 | 265 | ৌ 266 | 267 | 268 | 269 | অা 270 | 271 | 272 | 273 | ্া 274 | 275 | 276 | 277 | ্ি 278 | 279 | 280 | 281 | ্ী 282 | 283 | 284 | 285 | ্ু 286 | 287 | 288 | 289 | ্ূ 290 | 291 | 292 | 293 | ্ৃ 294 | 295 | 296 | 297 | ্ে 298 | 299 | 300 | 301 | ্ৈ 302 | 303 | 304 | 305 | ্্ 306 | ্‌ 307 | 308 | 309 | ্ৗ 310 | 311 | 312 | 313 | -------------------------------------------------------------------------------- /Resources/National.kbl: -------------------------------------------------------------------------------- 1 | 2 | 3 | National 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | ) 13 | 14 | 15 | 16 | ! 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | # 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | % 33 | 34 | 35 | 36 | ঳^ 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | * 45 | 46 | 47 | 48 | ( 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | ি 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | - 178 | _ 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | ’ 196 | 197 | 198 | 199 | ” 200 | 201 | 202 | 203 | ু 204 | ‍ু 205 | 206 | 207 | ূ 208 | ‍ূ 209 | 210 | 211 | ৃ 212 | ‍ৃ 213 | 214 | 215 | ঁা 216 | াঁ 217 | 218 | 219 | ঁু 220 | ুঁ 221 | 222 | 223 | ঁূ 224 | ূঁ 225 | 226 | 227 | ঁৃ 228 | ৃঁ 229 | 230 | 231 | র‌ে্য 232 | র‌্যে 233 | 234 | 235 | র‌ৈ্য 236 | র‌্যৈ 237 | 238 | 239 | র‌্য 240 | র‌্য 241 | 242 | 243 | ু্য 244 | ্যু 245 | 246 | 247 | ু্র 248 | ্রু 249 | 250 | 251 | ূ্য 252 | ্যূ 253 | 254 | 255 | ূ্র 256 | ্রূ 257 | 258 | 259 | ৃ্য 260 | ্যৃ 261 | 262 | 263 | ৃ্র 264 | ্রৃ 265 | 266 | 267 | েঁা 268 | োঁ 269 | 270 | 271 | েঁৗ 272 | ৌঁ 273 | 274 | 275 | ো 276 | 277 | 278 | 279 | েো 280 | 281 | 282 | 283 | েৌ 284 | 285 | 286 | 287 | ৌ 288 | 289 | 290 | 291 | অা 292 | 293 | 294 | 295 | ্া 296 | 297 | 298 | 299 | ্ি 300 | 301 | 302 | 303 | ্ী 304 | 305 | 306 | 307 | ্ু 308 | 309 | 310 | 311 | ্ূ 312 | 313 | 314 | 315 | ্ৃ 316 | 317 | 318 | 319 | ্ে 320 | 321 | 322 | 323 | ্ৈ 324 | 325 | 326 | 327 | ্্ 328 | ্‌ 329 | 330 | 331 | ্ৗ 332 | 333 | 334 | 335 | -------------------------------------------------------------------------------- /MainUI.Designer.vb: -------------------------------------------------------------------------------- 1 | 2 | Partial Class MainUI 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | 24 | Private Sub InitializeComponent() 25 | Me.components = New System.ComponentModel.Container() 26 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainUI)) 27 | Me.HookSwitch = New System.Windows.Forms.Button() 28 | Me.buttonInfo = New System.Windows.Forms.Button() 29 | Me.buttonMinimize = New System.Windows.Forms.Button() 30 | Me.NotifyIcon1 = New System.Windows.Forms.NotifyIcon(Me.components) 31 | Me.iconPlacer = New System.Windows.Forms.Button() 32 | Me.buttonClose = New System.Windows.Forms.Button() 33 | Me.layoutChooser = New System.Windows.Forms.Button() 34 | Me.LayoutList = New System.Windows.Forms.ContextMenuStrip(Me.components) 35 | Me.SuspendLayout() 36 | ' 37 | 'HookSwitch 38 | ' 39 | Me.HookSwitch.BackColor = System.Drawing.Color.FromArgb(CType(CType(222, Byte), Integer), CType(CType(75, Byte), Integer), CType(CType(57, Byte), Integer)) 40 | Me.HookSwitch.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(CType(CType(222, Byte), Integer), CType(CType(75, Byte), Integer), CType(CType(57, Byte), Integer)) 41 | Me.HookSwitch.FlatAppearance.BorderSize = 0 42 | Me.HookSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat 43 | Me.HookSwitch.Location = New System.Drawing.Point(166, 1) 44 | Me.HookSwitch.Name = "HookSwitch" 45 | Me.HookSwitch.Size = New System.Drawing.Size(4, 25) 46 | Me.HookSwitch.TabIndex = 0 47 | Me.HookSwitch.UseVisualStyleBackColor = False 48 | ' 49 | 'buttonInfo 50 | ' 51 | Me.buttonInfo.BackColor = System.Drawing.Color.Transparent 52 | Me.buttonInfo.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control 53 | Me.buttonInfo.FlatAppearance.BorderSize = 0 54 | Me.buttonInfo.FlatStyle = System.Windows.Forms.FlatStyle.Flat 55 | Me.buttonInfo.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 56 | Me.buttonInfo.ForeColor = System.Drawing.SystemColors.Desktop 57 | Me.buttonInfo.Location = New System.Drawing.Point(172, 1) 58 | Me.buttonInfo.Name = "buttonInfo" 59 | Me.buttonInfo.Size = New System.Drawing.Size(36, 25) 60 | Me.buttonInfo.TabIndex = 3 61 | Me.buttonInfo.Text = "i" 62 | Me.buttonInfo.UseVisualStyleBackColor = False 63 | ' 64 | 'buttonMinimize 65 | ' 66 | Me.buttonMinimize.BackColor = System.Drawing.Color.Transparent 67 | Me.buttonMinimize.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control 68 | Me.buttonMinimize.FlatAppearance.BorderSize = 0 69 | Me.buttonMinimize.FlatStyle = System.Windows.Forms.FlatStyle.Flat 70 | Me.buttonMinimize.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 71 | Me.buttonMinimize.ForeColor = System.Drawing.SystemColors.Desktop 72 | Me.buttonMinimize.Location = New System.Drawing.Point(208, 1) 73 | Me.buttonMinimize.Name = "buttonMinimize" 74 | Me.buttonMinimize.Size = New System.Drawing.Size(36, 25) 75 | Me.buttonMinimize.TabIndex = 6 76 | Me.buttonMinimize.Text = "-" 77 | Me.buttonMinimize.UseVisualStyleBackColor = False 78 | ' 79 | 'NotifyIcon1 80 | ' 81 | Me.NotifyIcon1.Text = "NotifyIcon1" 82 | ' 83 | 'iconPlacer 84 | ' 85 | Me.iconPlacer.BackColor = System.Drawing.Color.Transparent 86 | Me.iconPlacer.BackgroundImage = CType(resources.GetObject("iconPlacer.BackgroundImage"), System.Drawing.Image) 87 | Me.iconPlacer.Cursor = System.Windows.Forms.Cursors.SizeAll 88 | Me.iconPlacer.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control 89 | Me.iconPlacer.FlatAppearance.BorderSize = 0 90 | Me.iconPlacer.FlatStyle = System.Windows.Forms.FlatStyle.Flat 91 | Me.iconPlacer.Location = New System.Drawing.Point(2, 1) 92 | Me.iconPlacer.Name = "iconPlacer" 93 | Me.iconPlacer.Size = New System.Drawing.Size(28, 25) 94 | Me.iconPlacer.TabIndex = 4 95 | Me.iconPlacer.UseVisualStyleBackColor = False 96 | ' 97 | 'buttonClose 98 | ' 99 | Me.buttonClose.BackColor = System.Drawing.Color.FromArgb(CType(CType(222, Byte), Integer), CType(CType(75, Byte), Integer), CType(CType(57, Byte), Integer)) 100 | Me.buttonClose.BackgroundImage = Global.CodepotroBornoLite.My.Resources.Resources.close_icon 101 | Me.buttonClose.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(CType(CType(222, Byte), Integer), CType(CType(75, Byte), Integer), CType(CType(57, Byte), Integer)) 102 | Me.buttonClose.FlatAppearance.BorderSize = 0 103 | Me.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat 104 | Me.buttonClose.Location = New System.Drawing.Point(246, 1) 105 | Me.buttonClose.Name = "buttonClose" 106 | Me.buttonClose.Size = New System.Drawing.Size(30, 25) 107 | Me.buttonClose.TabIndex = 2 108 | Me.buttonClose.UseVisualStyleBackColor = False 109 | ' 110 | 'layoutChooser 111 | ' 112 | Me.layoutChooser.BackColor = System.Drawing.Color.Transparent 113 | Me.layoutChooser.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control 114 | Me.layoutChooser.FlatAppearance.BorderSize = 0 115 | Me.layoutChooser.FlatStyle = System.Windows.Forms.FlatStyle.Flat 116 | Me.layoutChooser.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 117 | Me.layoutChooser.ForeColor = System.Drawing.SystemColors.Desktop 118 | Me.layoutChooser.Location = New System.Drawing.Point(32, 1) 119 | Me.layoutChooser.Name = "layoutChooser" 120 | Me.layoutChooser.Size = New System.Drawing.Size(134, 25) 121 | Me.layoutChooser.TabIndex = 9 122 | Me.layoutChooser.Text = "Click to Select Layout" 123 | Me.layoutChooser.UseVisualStyleBackColor = False 124 | ' 125 | 'LayoutList 126 | ' 127 | Me.LayoutList.Name = "LayoutList" 128 | Me.LayoutList.Size = New System.Drawing.Size(61, 4) 129 | ' 130 | 'MainUI 131 | ' 132 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 133 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 134 | Me.ClientSize = New System.Drawing.Size(277, 25) 135 | Me.Controls.Add(Me.layoutChooser) 136 | Me.Controls.Add(Me.buttonMinimize) 137 | Me.Controls.Add(Me.iconPlacer) 138 | Me.Controls.Add(Me.buttonClose) 139 | Me.Controls.Add(Me.buttonInfo) 140 | Me.Controls.Add(Me.HookSwitch) 141 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None 142 | Me.MaximizeBox = False 143 | Me.Name = "MainUI" 144 | Me.ShowIcon = False 145 | Me.ShowInTaskbar = False 146 | Me.Text = "Borno Lite" 147 | Me.TopMost = True 148 | Me.ResumeLayout(False) 149 | 150 | End Sub 151 | 152 | Friend WithEvents HookSwitch As Button 153 | Friend WithEvents buttonClose As Button 154 | Friend WithEvents buttonInfo As Button 155 | Friend WithEvents iconPlacer As Button 156 | Friend WithEvents buttonMinimize As Button 157 | Friend WithEvents NotifyIcon1 As NotifyIcon 158 | Friend WithEvents layoutChooser As Button 159 | Friend WithEvents LayoutList As ContextMenuStrip 160 | End Class 161 | -------------------------------------------------------------------------------- /MainUI.vb: -------------------------------------------------------------------------------- 1 | ' 2 | ' 3 | ' This program Is free software; you can redistribute it And/Or modify 4 | ' it under the terms Of the GNU General Public License As published by 5 | ' the Free Software Foundation; either version 3 Of the License, Or 6 | ' (at your option) any later version. 7 | ' 8 | ' Software distributed under the License Is distributed On an "AS IS" 9 | ' basis, WITHOUT WARRANTY Of ANY KIND, either express Or implied. See the 10 | ' License for the specific language governing rights And limitations 11 | ' under the License. 12 | ' 13 | ' The Initial Developer of this Code is Jayed Ahsan Saad 14 | ' Copyright© Jayed Ahsan Saad. All Rights Reserved 15 | ' 16 | ' 17 | 18 | 19 | Imports System.IO 20 | Imports System.Reflection 21 | Imports System.Runtime.InteropServices 22 | 23 | 24 | Public Class MainUI 25 | 26 | 27 | 28 | Public Const WM_NCLBUTTONDOWN As Integer = &HA1 29 | Public Const HT_CAPTION As Integer = &H2 30 | 31 | Public Shared isPhonetic As Boolean = False 32 | Public Shared isPhoneticSelected As Boolean = False 33 | 34 | 35 | Public Shared Function SendMessage(ByVal hWnd As IntPtr, ByVal Msg As Integer, ByVal wParam As Integer, ByVal lParam As Integer) As Integer 36 | End Function 37 | 38 | 39 | Public Shared Function ReleaseCapture() As Boolean 40 | End Function 41 | 42 | 43 | Public Shared Parser As Object 44 | 45 | 46 | 47 | 48 | Private Sub writeBornoLayout(ByVal layout As String) 49 | 50 | Dim filePath = Path.Combine(Application.StartupPath & "\data\keyboard layouts\", layout & ".kbl") 51 | 52 | If Not File.Exists(filePath) Then 53 | Directory.CreateDirectory(Path.Combine(Application.StartupPath & "\data\keyboard layouts\")) 54 | File.WriteAllBytes(filePath, My.Resources.Borno) 'match with layout variable 55 | End If 56 | 57 | 58 | End Sub 59 | 60 | 61 | Private Sub writeBornoEncodingLayout(ByVal layout As String) 62 | 63 | Dim filePath = Path.Combine(Application.StartupPath & "\data\keyboard layouts\", layout & ".kbl") 64 | 65 | If Not File.Exists(filePath) Then 66 | Directory.CreateDirectory(Path.Combine(Application.StartupPath & "\data\keyboard layouts\")) 67 | File.WriteAllBytes(filePath, My.Resources.Borno_Encoding) 'match with layout variable 68 | End If 69 | 70 | 71 | End Sub 72 | 73 | Private Sub writeNationalLayout(ByVal layout As String) 74 | 75 | Dim filePath = Path.Combine(Application.StartupPath & "\data\keyboard layouts\", layout & ".kbl") 76 | 77 | If Not File.Exists(filePath) Then 78 | Directory.CreateDirectory(Path.Combine(Application.StartupPath & "\data\keyboard layouts\")) 79 | File.WriteAllBytes(filePath, My.Resources.National) 'match with layout variable 80 | End If 81 | 82 | 83 | End Sub 84 | 85 | 86 | Private Sub MainUI_Load(sender As Object, e As EventArgs) Handles MyBase.Load 87 | 88 | 89 | 90 | writeBornoLayout("Borno") 91 | writeBornoEncodingLayout("Borno Encoding") 92 | writeNationalLayout("National") 93 | Dim filePath = Path.Combine(Application.StartupPath & "\data\lib\", "libcpphonetic.dll") 94 | If File.Exists(filePath) Then 95 | Dim oType As Type 96 | Dim oAssembly As Assembly 97 | oAssembly = Assembly.LoadFrom(filePath) 98 | oType = oAssembly.GetType("libPhoneticParser.Parser") 99 | Parser = Activator.CreateInstance(oType) 100 | isPhonetic = True 101 | Dim dynItem As New ToolStripMenuItem() With {.Text = " Borno Phonetic", .Name = "bp", .Tag = 9999} 102 | AddHandler dynItem.Click, AddressOf mnuItem_Clicked 103 | LayoutList.Items.Add(dynItem) 104 | Else 105 | isPhonetic = False 106 | End If 107 | 108 | 109 | 'Tray Icon 110 | Icon = Icon.ExtractAssociatedIcon(Application.ExecutablePath) 111 | NotifyIcon1.Icon = Icon 112 | NotifyIcon1.Visible = False 113 | 114 | 115 | 'Topbar UI 116 | Width = 277 117 | Height = 27 118 | Top = 0 119 | Left = (Screen.PrimaryScreen.Bounds.Width / 2) - (Width / 2) 'Center Topbar 120 | TopMost = True 121 | HookKeyboard() 122 | LayoutParser.SearchForLayouts() 123 | 124 | 125 | 126 | End Sub 127 | 128 | Protected Overrides Sub OnPaintBackground(ByVal e As PaintEventArgs) 129 | 130 | MyBase.OnPaintBackground(e) 131 | 'Topbar Border 132 | BackColor = Color.FromArgb(242, 242, 244) 133 | Dim rect As New Rectangle(0, 0, Me.ClientSize.Width - 1, Me.ClientSize.Height - 1) 134 | e.Graphics.DrawRectangle(New Pen(Color.FromArgb(230, 230, 230)), rect) 135 | End Sub 136 | 137 | 138 | 139 | Private Sub buttonClose_Click(sender As Object, e As EventArgs) Handles buttonClose.Click 140 | Application.Exit() 141 | End Sub 142 | 143 | Private Sub Button2_Click_1(sender As Object, e As EventArgs) Handles buttonInfo.Click 144 | MessageBox.Show("Instructions:" & Chr(13) & Chr(10) & "Press F10 to toggle Bangla mode." & Chr(13) & Chr(10) & "Press Ctrl + Backspace to delete word." & Chr(13) & Chr(10) & "visit: https://codepotro.com for the keymap." _ 145 | & Chr(13) & Chr(10) & Chr(13) & Chr(10) & 146 | "Warning:" & Chr(13) & Chr(10) & 147 | "You are not allowed to modify, adapt, translate, reverse engineer, decompile, disassemble or attempt to discover the source code of the library (libcpphonetic.dll)." _ 148 | & Chr(13) & Chr(10) & Chr(13) & Chr(10) & 149 | "If you want to use the library (libcpphonetic.dll) in your application please contact with Codepotro" & 150 | Chr(13) & Chr(10) & Chr(13) & Chr(10) & "For more information visit: https://codepotro.com" _ 151 | & Chr(13) & Chr(10) & Chr(13) & Chr(10) & 152 | "About:" & Chr(13) & Chr(10) & 153 | "Made for the experts by Codepotro in Bangladesh" & 154 | Chr(13) & Chr(10) & 155 | "Source code: https://codepotro.com/borno-lite/", 156 | "About Borno Phonteic Lite", MessageBoxButtons.OK, MessageBoxIcon.Information, 0) 157 | End Sub 158 | 159 | Private Sub iconPlacer_MouseDown(sender As Object, e As MouseEventArgs) Handles iconPlacer.MouseDown 160 | If e.Button = MouseButtons.Left Then 161 | ReleaseCapture() 162 | SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0) 163 | End If 164 | End Sub 165 | 166 | Private Sub buttonMinimize_Click(sender As Object, e As EventArgs) Handles buttonMinimize.Click 167 | WindowState = FormWindowState.Minimized 168 | End Sub 169 | 170 | 171 | Public Sub mnuItem_Clicked(sender As Object, e As EventArgs) 172 | LayoutList.Hide() 173 | Dim item As ToolStripMenuItem = TryCast(sender, ToolStripMenuItem) 174 | If item IsNot Nothing Then 175 | ResetInternalVals() 176 | crlay = item.Tag 177 | 178 | If item.Tag = 9999 Then 179 | isPhoneticSelected = True 180 | Else 181 | isPhoneticSelected = False 182 | End If 183 | 184 | 185 | 186 | layoutChooser.Text = item.Text 187 | End If 188 | End Sub 189 | 190 | Private Sub MainUI_Resize(sender As Object, e As EventArgs) Handles MyBase.Resize 191 | If Me.WindowState = FormWindowState.Minimized Then 192 | NotifyIcon1.Visible = True 193 | Me.Hide() 194 | NotifyIcon1.BalloonTipText = "Borno Lite is running on Tray" 195 | NotifyIcon1.ShowBalloonTip(10) 196 | End If 197 | End Sub 198 | 199 | Private Sub NotifyIcon1_MouseDoubleClick(sender As Object, e As MouseEventArgs) Handles NotifyIcon1.MouseDoubleClick 200 | Me.Show() 201 | Me.WindowState = FormWindowState.Normal 202 | NotifyIcon1.Visible = False 203 | End Sub 204 | 205 | Private Sub MainUI_FormClosing(sender As Object, e As FormClosingEventArgs) Handles MyBase.FormClosing 206 | NotifyIcon1.Visible = False 207 | End Sub 208 | 209 | 210 | 211 | 212 | Private Sub layoutChooser_Click(sender As Object, e As EventArgs) Handles layoutChooser.Click 213 | LayoutList.Show(CType(sender, Control), New Point(0, layoutChooser.Height)) 214 | End Sub 215 | 216 | Private Sub LayoutList_Opening(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles LayoutList.Opening 217 | LayoutList.Renderer = New LayoutList_PopUp 218 | End Sub 219 | End Class 220 | -------------------------------------------------------------------------------- /Keyboard.vb: -------------------------------------------------------------------------------- 1 | ' 2 | ' 3 | ' This program Is free software; you can redistribute it And/Or modify 4 | ' it under the terms Of the GNU General Public License As published by 5 | ' the Free Software Foundation; either version 3 Of the License, Or 6 | ' (at your option) any later version. 7 | ' 8 | ' Software distributed under the License Is distributed On an "AS IS" 9 | ' basis, WITHOUT WARRANTY Of ANY KIND, either express Or implied. See the 10 | ' License for the specific language governing rights And limitations 11 | ' under the License. 12 | ' 13 | ' The Initial Developer of this Code is Jayed Ahsan Saad 14 | ' Copyright© Jayed Ahsan Saad. All Rights Reserved 15 | ' 16 | ' 17 | 18 | 19 | 20 | 21 | Imports System.Runtime.InteropServices 22 | Imports System.Reflection 23 | Imports Microsoft.VisualBasic.CompilerServices 24 | 25 | 26 | Module Keyboard 27 | Public Declare Function UnhookWindowsHookEx Lib "user32" _ 28 | (ByVal hHook As Integer) As Integer 29 | 30 | Public Declare Function SetWindowsHookEx Lib "user32" _ 31 | Alias "SetWindowsHookExA" (ByVal idHook As Integer, 32 | ByVal lpfn As KeyboardHookDelegate, ByVal hmod As Integer, 33 | ByVal dwThreadId As Integer) As Integer 34 | 35 | Private Declare Function GetAsyncKeyState Lib "user32" _ 36 | (ByVal vKey As Integer) As Integer 37 | 38 | Private Declare Function CallNextHookEx Lib "user32" _ 39 | (ByVal hHook As Integer, 40 | ByVal nCode As Integer, 41 | ByVal wParam As Integer, 42 | ByVal lParam As KBDLLHOOKSTRUCT) As Integer 43 | 44 | Public Structure KBDLLHOOKSTRUCT 45 | Public vkCode As Integer 46 | Public scanCode As Integer 47 | Public finalResults As Integer 48 | Public time As Integer 49 | Public dwExtraInfo As Integer 50 | End Structure 51 | 52 | ' Low-Level Keyboard Constants 53 | Private Const HC_ACTION As Integer = 0 54 | Private Const LLKHF_EXTENDED As Integer = &H1 55 | Private Const LLKHF_INJECTED As Integer = &H10 56 | Private Const LLKHF_ALTDOWN As Integer = &H20 57 | Private Const LLKHF_UP As Integer = &H80 58 | 59 | Private Const WM_KEYDOWN As Integer = 256 60 | 61 | ' Virtual Keys 62 | Public Const VK_TAB = &H9 63 | Public Const VK_CONTROL = &H11 64 | Public Const VK_ESCAPE = &H1B 65 | Public Const VK_DELETE = &H2E 66 | 67 | Private Const WH_KEYBOARD_LL As Integer = 13& 68 | Public KeyboardHandle As Integer 69 | 70 | 71 | 72 | Dim carry As String 73 | 74 | 75 | Public isActivated As Boolean 76 | 77 | 78 | Public Layout As LayoutParser() 79 | 80 | Public Bangla As Boolean = False 81 | 82 | Public layoutCount As Integer 83 | 84 | 85 | 86 | Public crlay As Integer 87 | 88 | 89 | 90 | Private holdVal As Integer 91 | 92 | 93 | 94 | Private TagPre As Boolean 95 | 96 | Dim PreChar As String 97 | 98 | Dim handleLength As Integer = 5 99 | 100 | 101 | Public block As Boolean 102 | 103 | 104 | 105 | Public Function isModifier(ByVal vkCode As Integer) As Boolean 106 | 107 | If vkCode = 160 Or vkCode = 161 Or vkCode = 120 Then 108 | 109 | Return True 110 | End If 111 | 112 | Return False 113 | End Function 114 | 115 | 116 | Public Function getKeyValue() As Integer 117 | 118 | If Not My.Computer.Keyboard.ShiftKeyDown Then 119 | Return 0 120 | Else 121 | Return 1 122 | End If 123 | End Function 124 | 125 | 126 | Public Function getOptionValue() As Integer 127 | If Not My.Computer.Keyboard.ShiftKeyDown Then 128 | Return 2 129 | Else 130 | Return 3 131 | End If 132 | 133 | End Function 134 | 135 | 136 | 137 | 138 | Dim totake As Integer 139 | Dim num2 As Integer 140 | Dim num3 As Integer 141 | 142 | Public Function ProcessFixedLayout(ByVal vkCode As Integer) As Boolean 143 | Dim finalResult As Boolean = False 144 | Dim str As String 145 | Dim keyZWNJ As Boolean 146 | 147 | If (Not My.Computer.Keyboard.CtrlKeyDown And Not My.Computer.Keyboard.AltKeyDown) Then 148 | 149 | 150 | 151 | 152 | 153 | 154 | Try 155 | Dim numlay As Integer = numlay 156 | 157 | 158 | If (vkCode = 8) Then 159 | InternalString = "" 160 | End If 161 | If (vkCode = 13) Then 162 | InternalString = "" 163 | End If 164 | If (Not Layout(crlay).Key.ContainsKey(32) And vkCode = 32) Then 165 | 166 | InternalString = "" 167 | 168 | End If 169 | 170 | If (Layout(crlay).Key.ContainsKey(vkCode)) Then 171 | Dim KeyAttr As String = Conversions.ToString(Layout(crlay).Key(vkCode)(getOptionValue)) 172 | 173 | If (Left(KeyAttr, 6) = "Joiner") Then 'Hashanta 174 | If (holdVal = handleLength) Then 175 | 176 | holdVal = Conversions.ToInteger(Operators.AddObject(handleLength, 2)) 177 | keyZWNJ = True 178 | 179 | If Not Right(InternalString, 1) = "‌" Then 180 | block = True 181 | DoKeyAction(0, 8) 182 | DoKeyAction(NativeMethods.KEYEVENTF.KEYUP, 8) 183 | block = False 184 | End If 185 | 186 | 187 | End If 188 | 189 | ElseIf (KeyAttr = "Pre") Then 'Reff 190 | If Not Right(InternalString, 1) = "‌" Then 191 | PreChar = Conversions.ToString(Layout(crlay).Key(vkCode)(getOptionValue)) 192 | block = True 193 | DoKeyAction(0, 37) 194 | DoKeyAction(NativeMethods.KEYEVENTF.KEYUP, 37) 195 | block = False 196 | TagPre = True 197 | End If 198 | 199 | 200 | End If 201 | 202 | str = Conversions.ToString(Layout(crlay).Key(vkCode)(getKeyValue)) 203 | If (Not TagPre) Then 204 | UpdateInternalString(str) 205 | Else 206 | InternalString = String.Concat(Strings.Left(InternalString, InternalString.Length - PreChar.Length), str, Strings.Right(InternalString, PreChar.Length)) 207 | InternalString = Strings.Right(InternalString, 50) 208 | End If 209 | 210 | SendKey(str) 211 | If (holdVal > 0) Then 212 | holdVal = holdVal - 1 213 | End If 214 | finalResult = True 215 | 216 | If (KeyAttr = "Pre") Then 'Reff 217 | block = True 218 | DoKeyAction(0, 39) 219 | DoKeyAction(NativeMethods.KEYEVENTF.KEYUP, 39) 220 | block = False 221 | TagPre = False 222 | End If 223 | If (KeyAttr = "ZWNJ") Then 'Ra 224 | UpdateInternalString("‌") 225 | End If 226 | 227 | 228 | If (Layout(crlay).KeySequences.Count > 0 And (getChar(vkCode, False) <> "")) Then 229 | 230 | 231 | If InternalString.Length = 2 Then 232 | totake = 3 233 | Else 234 | totake = 5 235 | 236 | End If 237 | 238 | LoopStart: 239 | str = Right(InternalString, totake) 240 | 241 | If (Layout(crlay).KeySequences.ContainsKey(str)) Then 242 | If (holdVal > handleLength) Then 243 | totake = totake - (holdVal - handleLength) 244 | End If 245 | 246 | 247 | 248 | If (Not holdVal = handleLength) AndAlso str.Contains("‌") Then 249 | totake = totake - 1 250 | ElseIf (holdVal = handleLength AndAlso str.Contains("‌")) Then 251 | totake = totake - 2 252 | ElseIf (holdVal = handleLength AndAlso Not str.Contains("‌")) Then 253 | If keyZWNJ = False Then 254 | totake = totake - 3 255 | End If 256 | 257 | End If 258 | 259 | 260 | 261 | num2 = totake 262 | 263 | If InternalString.Length <= 2 Then 264 | num3 = 2 265 | Else 266 | num3 = 1 267 | End If 268 | 269 | 270 | 271 | Do 272 | block = True 273 | DoKeyAction(NativeMethods.KEYEVENTF.KEYDOWN, 8) 274 | DoKeyAction(NativeMethods.KEYEVENTF.KEYUP, 8) 275 | block = False 276 | num3 = num3 + 1 277 | 278 | Loop While num3 <= num2 279 | 280 | 281 | str = Layout(crlay).KeySequences(str) 282 | 283 | SendKey(str) 284 | UpdateInternalString(str) 285 | 286 | holdVal = 0 287 | End If 288 | totake = totake + -1 289 | 290 | While totake > 1 291 | GoTo LoopStart 292 | End While 293 | 294 | End If 295 | 296 | 297 | 298 | Return finalResult 299 | 300 | End If 301 | 302 | 303 | Catch Ex As Exception 304 | 305 | Return False 306 | End Try 307 | 308 | End If 309 | Return False 310 | End Function 311 | 312 | 313 | 314 | Private Function getChar(ByVal vk As Integer, ByVal isShift As Boolean) As String 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | If Not isShift Then 323 | 324 | If vk = 48 Then 325 | Return "০" 326 | ElseIf vk = 49 Then 327 | Return "১" 328 | ElseIf vk = 50 Then 329 | Return "২" 330 | ElseIf vk = 51 Then 331 | Return "৩" 332 | ElseIf vk = 52 Then 333 | Return "৪" 334 | ElseIf vk = 53 Then 335 | Return "৫" 336 | ElseIf vk = 54 Then 337 | Return "৬" 338 | ElseIf vk = 55 Then 339 | Return "৭" 340 | ElseIf vk = 56 Then 341 | Return "৮" 342 | ElseIf vk = 57 Then 343 | Return "৯" 344 | End If 345 | 346 | If vk = 65 Then 347 | Return "a" 348 | ElseIf vk = 66 Then 349 | Return "b" 350 | ElseIf vk = 67 Then 351 | Return "c" 352 | ElseIf vk = 68 Then 353 | Return "d" 354 | ElseIf vk = 69 Then 355 | Return "e" 356 | ElseIf vk = 70 Then 357 | Return "f" 358 | ElseIf vk = 71 Then 359 | Return "g" 360 | ElseIf vk = 72 Then 361 | Return "h" 362 | ElseIf vk = 73 Then 363 | Return "i" 364 | ElseIf vk = 74 Then 365 | Return "j" 366 | ElseIf vk = 75 Then 367 | Return "k" 368 | ElseIf vk = 76 Then 369 | Return "l" 370 | ElseIf vk = 77 Then 371 | Return "m" 372 | ElseIf vk = 78 Then 373 | Return "n" 374 | ElseIf vk = 79 Then 375 | Return "o" 376 | ElseIf vk = 80 Then 377 | Return "p" 378 | ElseIf vk = 81 Then 379 | Return "q" 380 | ElseIf vk = 82 Then 381 | Return "r" 382 | ElseIf vk = 83 Then 383 | Return "s" 384 | ElseIf vk = 84 Then 385 | Return "t" 386 | ElseIf vk = 85 Then 387 | Return "u" 388 | ElseIf vk = 86 Then 389 | Return "v" 390 | ElseIf vk = 87 Then 391 | Return "w" 392 | ElseIf vk = 88 Then 393 | Return "x" 394 | ElseIf vk = 89 Then 395 | Return "y" 396 | ElseIf vk = 90 Then 397 | Return "z" 398 | ElseIf vk = 186 Then 399 | Return ";" 400 | ElseIf vk = 188 Then 401 | Return "," 402 | 403 | ElseIf vk = 190 Then 404 | Return "।" 405 | Else Return "" 406 | End If 407 | 408 | Else 409 | 410 | 411 | If vk = 48 Then 412 | Return ")" 413 | ElseIf vk = 49 Then 414 | Return "!" 415 | ElseIf vk = 50 Then 416 | Return "@" 417 | ElseIf vk = 51 Then 418 | Return "#" 419 | ElseIf vk = 52 Then 420 | Return "৳" 421 | ElseIf vk = 53 Then 422 | Return "%" 423 | ElseIf vk = 54 Then 424 | Return "^" 425 | ElseIf vk = 55 Then 426 | Return "&" 427 | ElseIf vk = 56 Then 428 | Return "*" 429 | ElseIf vk = 57 Then 430 | Return "(" 431 | End If 432 | If vk = 65 Then 433 | Return "A" 434 | ElseIf vk = 66 Then 435 | Return "B" 436 | ElseIf vk = 67 Then 437 | Return "C" 438 | ElseIf vk = 68 Then 439 | Return "D" 440 | ElseIf vk = 69 Then 441 | Return "E" 442 | ElseIf vk = 70 Then 443 | Return "F" 444 | ElseIf vk = 71 Then 445 | Return "G" 446 | ElseIf vk = 72 Then 447 | Return "H" 448 | ElseIf vk = 73 Then 449 | Return "I" 450 | ElseIf vk = 74 Then 451 | Return "J" 452 | ElseIf vk = 75 Then 453 | Return "K" 454 | ElseIf vk = 76 Then 455 | Return "L" 456 | ElseIf vk = 77 Then 457 | Return "M" 458 | ElseIf vk = 78 Then 459 | Return "N" 460 | ElseIf vk = 79 Then 461 | Return "O" 462 | ElseIf vk = 80 Then 463 | Return "P" 464 | ElseIf vk = 81 Then 465 | Return "Q" 466 | ElseIf vk = 82 Then 467 | Return "R" 468 | ElseIf vk = 83 Then 469 | Return "S" 470 | ElseIf vk = 84 Then 471 | Return "T" 472 | ElseIf vk = 85 Then 473 | Return "U" 474 | ElseIf vk = 86 Then 475 | Return "V" 476 | ElseIf vk = 87 Then 477 | Return "W" 478 | ElseIf vk = 88 Then 479 | Return "X" 480 | ElseIf vk = 89 Then 481 | Return "Y" 482 | ElseIf vk = 90 Then 483 | Return "Z" 484 | ElseIf vk = 186 Then 485 | Return "ঃ" 486 | ElseIf vk = 190 Then 487 | Return ">" 488 | 489 | Else Return "" 490 | End If 491 | 492 | End If 493 | 494 | End Function 495 | 496 | 497 | 498 | Dim InternalString As String 499 | 500 | Private Function UpdateInternalString(ByVal Text As String) As String 501 | InternalString = String.Concat(InternalString, Text) 502 | InternalString = Strings.Right(InternalString, 80) 503 | Return InternalString 504 | End Function 505 | 506 | 507 | Dim preProcessStr, processedStr As String 508 | 509 | 510 | Dim I, Matched, UnMatched As Integer 511 | 512 | 513 | Public Sub initString(ByVal toProcess As String) 514 | processedStr = toProcess 515 | postProcessParsing() 516 | End Sub 517 | 518 | 519 | Public Sub postProcessParsing() 520 | 521 | Matched = 0 522 | If preProcessStr = "" Then 523 | SendKey(processedStr) 524 | preProcessStr = processedStr 525 | Else 526 | For I = 1 To preProcessStr.Length 527 | If Mid(preProcessStr, I, 1) = Mid(processedStr, I, 1) Then 528 | Matched = Matched + 1 529 | Else 530 | Exit For 531 | 532 | End If 533 | Next 534 | UnMatched = preProcessStr.Length - Matched 535 | 536 | If UnMatched >= 1 Then 537 | Backspace(UnMatched) 538 | End If 539 | SendKey((Mid(processedStr, Matched + 1, (processedStr.Length)))) 540 | preProcessStr = processedStr 541 | End If 542 | End Sub 543 | 544 | Private Sub DoKeyAction(ByVal flag As NativeMethods.KEYEVENTF, ByVal key As Keys) 545 | Dim input As New NativeMethods.INPUT 546 | Dim ki As New NativeMethods.KEYBDINPUT 547 | input.dwType = NativeMethods.InputType.Keyboard 548 | input.ki = ki 549 | input.ki.wVk = Convert.ToInt16(key) 550 | input.ki.wScan = 0 551 | input.ki.time = 0 552 | input.ki.dwFlags = flag 553 | input.ki.dwExtraInfo = IntPtr.Zero 554 | Dim cbSize As Integer = Marshal.SizeOf(GetType(NativeMethods.INPUT)) 555 | Dim result As Integer = NativeMethods.SendInput(1, input, cbSize) 556 | If result = 0 Then Debug.WriteLine(Marshal.GetLastWin32Error) 557 | End Sub 558 | 559 | 560 | 561 | Public Sub Backspace(ByVal count As Integer) 562 | If count <= 0 Then 563 | count = 1 564 | End If 565 | For I = 1 To count 566 | DoKeyAction(0, 8) 567 | DoKeyAction(NativeMethods.KEYEVENTF.KEYUP, 8) 568 | Next 569 | End Sub 570 | 571 | 572 | 573 | Public Sub ResetInternalVals() 574 | preProcessStr = "" 575 | processedStr = "" 576 | InternalString = "" 577 | End Sub 578 | 579 | 580 | Public Sub ResetInternalValsDel() 581 | If preProcessStr.Length > 0 Then 582 | preProcessStr = Left(preProcessStr, preProcessStr.Length - 1) 583 | End If 584 | 585 | If processedStr.Length > 0 Then 586 | processedStr = Left(processedStr, processedStr.Length - 1) 587 | End If 588 | If InternalString.Length > 0 Then 589 | InternalString = Left(InternalString, InternalString.Length - 1) 590 | End If 591 | 592 | 593 | End Sub 594 | 595 | Public Function IsHooked( 596 | ByRef Hookstruct As KBDLLHOOKSTRUCT) As Boolean 597 | If (Hookstruct.vkCode = 121) Then 598 | ResetInternalVals() 599 | isActivated = Not isActivated 600 | If isActivated Then 601 | MainUI.HookSwitch.BackColor = Color.FromArgb(0, 180, 137) 602 | MainUI.HookSwitch.FlatAppearance.BorderColor = Color.FromArgb(0, 180, 137) 603 | Else 604 | MainUI.HookSwitch.BackColor = Color.FromArgb(222, 75, 57) 605 | MainUI.HookSwitch.FlatAppearance.BorderColor = Color.FromArgb(222, 75, 57) 606 | End If 607 | Return True 608 | End If 609 | 610 | If isActivated And MainUI.LayoutList.Items.Count > 0 Then 611 | If MainUI.isPhonetic And MainUI.isPhoneticSelected Then 612 | 613 | 614 | 615 | If (Not My.Computer.Keyboard.CtrlKeyDown And Not My.Computer.Keyboard.AltKeyDown) Then 616 | If Hookstruct.vkCode = 231 Then 617 | Return False 618 | End If 619 | 620 | If (Hookstruct.vkCode = 13 Or Hookstruct.vkCode = 32) Then 621 | ResetInternalVals() 622 | ElseIf (Hookstruct.vkCode = 8) Then 623 | 624 | ElseIf ((Hookstruct.vkCode > 47 And Hookstruct.vkCode < 58) Or (Hookstruct.vkCode > 64 And Hookstruct.vkCode < 91) Or Hookstruct.vkCode = 190 Or Hookstruct.vkCode = 186 Or Hookstruct.vkCode = 188) Then 625 | UpdateInternalString(getChar(Hookstruct.vkCode, My.Computer.Keyboard.ShiftKeyDown)) 626 | initString(MainUI.Parser.Parse(InternalString)) 627 | 628 | 629 | Return True 630 | End If 631 | 632 | 633 | End If 634 | 635 | Else 636 | Return ProcessFixedLayout(Hookstruct.vkCode) 637 | End If 638 | Else 639 | Return False 640 | End If 641 | 642 | 643 | 644 | 645 | 646 | Return False 647 | End Function 648 | 649 | Private Sub HookedState(ByVal Text As String) 650 | Debug.WriteLine(Text) 651 | End Sub 652 | 653 | Public Function KeyboardCallback(ByVal Code As Integer, 654 | ByVal wParam As Integer, 655 | ByRef lParam As KBDLLHOOKSTRUCT) As Integer 656 | 657 | If Code = HC_ACTION And wParam = WM_KEYDOWN Then 658 | Debug.WriteLine("Calling IsHooked") 659 | If Not (block) Then 660 | If (IsHooked(lParam)) Then 661 | Return 1 662 | End If 663 | End If 664 | 665 | End If 666 | 667 | Return CallNextHookEx(KeyboardHandle, 668 | Code, wParam, lParam) 669 | 670 | End Function 671 | 672 | 673 | Public Delegate Function KeyboardHookDelegate( 674 | ByVal Code As Integer, 675 | ByVal wParam As Integer, ByRef lParam As KBDLLHOOKSTRUCT) _ 676 | As Integer 677 | 678 | 679 | Private callback As KeyboardHookDelegate 680 | 681 | Public Sub HookKeyboard() 682 | callback = New KeyboardHookDelegate(AddressOf KeyboardCallback) 683 | 684 | KeyboardHandle = SetWindowsHookEx( 685 | WH_KEYBOARD_LL, callback, 686 | Marshal.GetHINSTANCE( 687 | [Assembly].GetExecutingAssembly.GetModules()(0)).ToInt32, 0) 688 | 689 | Call CheckHooked() 690 | End Sub 691 | 692 | Public Sub CheckHooked() 693 | If (Hooked()) Then 694 | Debug.WriteLine("Keyboard successfully hooked") 695 | Else 696 | Debug.WriteLine("Keyboard hooking failed: " & Err.LastDllError) 697 | End If 698 | End Sub 699 | 700 | Private Function Hooked() 701 | Hooked = KeyboardHandle <> 0 702 | End Function 703 | 704 | Public Sub UnhookKeyboard() 705 | If (Hooked()) Then 706 | Call UnhookWindowsHookEx(KeyboardHandle) 707 | End If 708 | End Sub 709 | 710 | 711 | 712 | Private Sub DoKeyBoard(ByVal flag As NativeMethods.KEYEVENTF, ByVal key As Keys) 713 | Dim input As New NativeMethods.INPUT 714 | Dim ki As New NativeMethods.KEYBDINPUT 715 | input.dwType = NativeMethods.InputType.Keyboard 716 | input.ki = ki 717 | input.ki.wVk = 0S 718 | input.ki.wScan = Convert.ToInt16(key) 719 | input.ki.time = 0 720 | input.ki.dwFlags = flag 721 | input.ki.dwExtraInfo = IntPtr.Zero 722 | Dim cbSize As Integer = Marshal.SizeOf(GetType(NativeMethods.INPUT)) 723 | Dim result As Integer = NativeMethods.SendInput(1, input, cbSize) 724 | If result = 0 Then Debug.WriteLine(Marshal.GetLastWin32Error) 725 | End Sub 726 | 727 | Private Sub SendKey(ByVal Text As String) 728 | Dim length As Integer = Text.Length 729 | For i As Integer = 1 To length Step 1 730 | SendKeyByte(AscW(Mid(Text, i, 1))) 731 | Next 732 | 733 | End Sub 734 | 735 | Private Sub SendKeyByte(ByVal vkCode As Short) 736 | block = True 737 | DoKeyBoard(NativeMethods.KEYEVENTF.UNICODE, vkCode) 738 | DoKeyBoard(NativeMethods.KEYEVENTF.KEYUP, vkCode) 739 | block = False 740 | End Sub 741 | 742 | 743 | End Module -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Resources/Borno Encoding.kbl: -------------------------------------------------------------------------------- 1 | 2 | 3 | Borno Encoding 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | ) 13 | 14 | 15 | 16 | ! 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | # 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | % 33 | 34 | 35 | Ʉ 36 | ƽ 37 | 38 | 39 | Ʌ 40 | & 41 | 42 | 43 | 44 | * 45 | 46 | 47 | 48 | ( 49 | 50 | 51 | ǩ 52 | ǧ 53 | 54 | 55 | Ư 56 | Ƴ 57 | 58 | 59 | nj 60 | ǎ 61 | 62 | 63 | ǁ 64 | dž 65 | 66 | 67 | Ɵ 68 | Ơ 69 | 70 | 71 | ƾ 72 | Ɖ 73 | 74 | 75 | Ɔ 76 | 77 | 78 | 79 | ƭ 80 | Ʈ 81 | 82 | 83 | ƶ 84 | Ɯ 85 | 86 | 87 | Ƣ 88 | Ƨ 89 | 90 | 91 | Ɠ 92 | Ɣ 93 | 94 | 95 | ƨ 96 | Ʃ 97 | 98 | 99 | ƪ 100 | ơ 101 | 102 | 103 | Ƶ 104 | ƴ 105 | 106 | 107 | ƕ 108 | Ɩ 109 | 110 | 111 | Ɨ 112 | ƻ 113 | 114 | 115 | Ʒ 116 | Ƹ 117 | 118 | 119 | ƫ 120 | Ƭ 121 | 122 | 123 | ƿ 124 | ǀ 125 | 126 | 127 | Ɲ 128 | ƞ 129 | 130 | 131 | ƚ 132 | ƛ 133 | 134 | 135 | Ʊ 136 | Ʋ 137 | 138 | 139 | ư 140 | ƹ 141 | 142 | 143 | Ƒ 144 | Ǐ 145 | 146 | 147 | Ƙ 148 | ƙ 149 | 150 | 151 | lj 152 | Ǩ 153 | 154 | 155 | - 156 | _ 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | ” 174 | 175 | 176 | 177 | ǎ 178 | Ǎ 179 | 180 | 181 | nj 182 | Nj 183 | 184 | 185 | ȧǁ 186 | ȧǂ 187 | 188 | 189 | Ⱥǁ 190 | Ⱥǂ 191 | 192 | 193 | Ǻǁ 194 | Ǻǂ 195 | 196 | 197 | ȁǁ 198 | Ȁǂ 199 | 200 | 201 | ǺƆƴ 202 | ǖǵ 203 | 204 | 205 | ȧdž 206 | ȧLJLJ 207 | 208 | 209 | Ⱥdž 210 | Ⱥdž 211 | 212 | 213 | Ǻdž 214 | ǺLJ 215 | 216 | 217 | ȁdž 218 | ȁLJ 219 | 220 | 221 | ǣǡǩ 222 | ǣǢ 223 | 224 | 225 | ǼƆƭ 226 | ǼǠ 227 | 228 | 229 | ǣȶƆƲ 230 | ǣȶǬ 231 | 232 | 233 | Ǻǩ 234 | ǺǪ 235 | 236 | 237 | ȧlj 238 | ȧNJ 239 | 240 | 241 | Ⱥlj 242 | Ⱥlj 243 | 244 | 245 | Ǻlj 246 | ǺNJ 247 | 248 | 249 | ȁlj 250 | ȀLJ 251 | 252 | 253 | ȀNJ 254 | ȀNJ 255 | 256 | 257 | ǺǪǁ 258 | ǺǪǂ 259 | 260 | 261 | ǺǪdž 262 | ǺǪLJ 263 | 264 | 265 | ǺǪlj 266 | ǺǪNJ 267 | 268 | 269 | Ɔ. 270 | . 271 | 272 | 273 | Ɔ; 274 | ; 275 | 276 | 277 | Ɔǀ 278 | Ƌ 279 | 280 | 281 | Ɔǁ 282 | ƌ 283 | 284 | 285 | Ɔǎ 286 | Ɛ 287 | 288 | 289 | Ɔdž 290 | \ 291 | 292 | 293 | ƆǏ 294 | Lj 295 | 296 | 297 | Ɔlj 298 | Ǝ 299 | 300 | 301 | Ɔnj 302 | Ə 303 | 304 | 305 | ƆƢ 306 | ǘ 307 | 308 | 309 | Ɔƪ 310 | ǝ 311 | 312 | 313 | Ɔƭ 314 | Ǡ 315 | 316 | 317 | ƆƯ 318 | Ǥ 319 | 320 | 321 | ƆƲ 322 | Ǭ 323 | 324 | 325 | Ɔƿ 326 | Ɗ 327 | 328 | 329 | Ɔƾ 330 | Ɖƾ 331 | 332 | 333 | Dzǁ 334 | Dzǂ 335 | 336 | 337 | Dzdž 338 | DzLJ 339 | 340 | 341 | Dzǩ 342 | DzǪ 343 | 344 | 345 | Dzlj 346 | DzNJ 347 | 348 | 349 | ȡǁ 350 | ȡǔ 351 | 352 | 353 | ȡdž 354 | ȡLj 355 | 356 | 357 | ȅǁ 358 | ȅǂ 359 | 360 | 361 | ȇǁ 362 | ȇǂ 363 | 364 | 365 | ȅdž 366 | ȅLJ 367 | 368 | 369 | ȇdž 370 | ȇLJ 371 | 372 | 373 | ȅlj 374 | ȅNJ 375 | 376 | 377 | ȇlj 378 | ȇNJ 379 | 380 | 381 | ǵǁ 382 | ǵǂ 383 | 384 | 385 | Ɠǁ 386 | Ɠǂ 387 | 388 | 389 | ƓƆƓ 390 | ǯ 391 | 392 | 393 | ƓƆƝ 394 | ǰ 395 | 396 | 397 | ƓƆƢ 398 | Dz 399 | 400 | 401 | ǵƆƪ 402 | ǵȤ 403 | 404 | 405 | ƓƆƪ 406 | ƓȤ 407 | 408 | 409 | ƓƆƭ 410 | ƓǠ 411 | 412 | 413 | ǵƆƯ 414 | DZ 415 | 416 | 417 | ƓƆƯ 418 | dz 419 | 420 | 421 | ƓƆƲ 422 | Ɠǫ 423 | 424 | 425 | ƓƆƴ 426 | ǵ 427 | 428 | 429 | ƓƆƵ 430 | ɀ 431 | 432 | 433 | ǵdž 434 | ǵLJ 435 | 436 | 437 | Ɠdž 438 | ƓLJ 439 | 440 | 441 | Ɠǩ 442 | Ǵ 443 | 444 | 445 | Ɣǩǁ 446 | Ɣǩǔ 447 | 448 | 449 | Ɣǩdž 450 | ƔǩLj 451 | 452 | 453 | ǵlj 454 | ǵNJ 455 | 456 | 457 | Ɠlj 458 | ƓNJ 459 | 460 | 461 | ǵȤǁ 462 | ǵȤǂ 463 | 464 | 465 | ƓȤǁ 466 | ƓȤǂ 467 | 468 | 469 | ǵȤdž 470 | ǵȤLJ 471 | 472 | 473 | ƓȤdž 474 | ƓȤLJ 475 | 476 | 477 | ǵȤlj 478 | ǵȤNJ 479 | 480 | 481 | ƓȤlj 482 | ƓȤNJ 483 | 484 | 485 | ƕǁ 486 | Ƕ 487 | 488 | 489 | ƕƆƕ 490 | Ƿ 491 | 492 | 493 | ƕƆƩ 494 | ǹ 495 | 496 | 497 | ƕƆƨ 498 | Ǹ 499 | 500 | 501 | ƕƆƪ 502 | ƕǝ 503 | 504 | 505 | ƕƆƭ 506 | ƕǠ 507 | 508 | 509 | ƕƆƯ 510 | ƕǤ 511 | 512 | 513 | ƕƆƲ 514 | ƕǬ 515 | 516 | 517 | ƕǩ 518 | ƕȒ 519 | 520 | 521 | ƕȒǁ 522 | ƕȒǔ 523 | 524 | 525 | ƕȒdž 526 | ƕȒLj 527 | 528 | 529 | Ɨǁ 530 | Ɨǂ 531 | 532 | 533 | ȉǁ 534 | ȉǂ 535 | 536 | 537 | ƗƆƓ 538 | Ǻ 539 | 540 | 541 | ƗƆƔ 542 | ǖƔ 543 | 544 | 545 | ƗƆƕ 546 | ǻ 547 | 548 | 549 | ƗƆƖ 550 | ǖƖ 551 | 552 | 553 | ƖƆƪ 554 | Ɩǝ 555 | 556 | 557 | ȉƆƭ 558 | ȉǠ 559 | 560 | 561 | ƗƆƯ 562 | ǖƯ 563 | 564 | 565 | Ɨdž 566 | ƗLJ 567 | 568 | 569 | ȉdž 570 | ȉLJ 571 | 572 | 573 | Ɩǩǁ 574 | Ɩǩǔ 575 | 576 | 577 | Ɩǩdž 578 | ƖǩLj 579 | 580 | 581 | Ɨlj 582 | ƗNJ 583 | 584 | 585 | ȉlj 586 | ȉNJ 587 | 588 | 589 | ǰǁ 590 | ǰǂ 591 | 592 | 593 | ǰdž 594 | ǰLJ 595 | 596 | 597 | ǰlj 598 | ǰNJ 599 | 600 | 601 | Ƙǁ 602 | Ƙǂ 603 | 604 | 605 | ƘƆƙ 606 | Ǖƙ 607 | 608 | 609 | ƘƆƜ 610 | ǕƜ 611 | 612 | 613 | ƙdž 614 | ƙLJ 615 | 616 | 617 | ƙǩ 618 | ƙǪ 619 | 620 | 621 | ƙlj 622 | ƙNJ 623 | 624 | 625 | ƛǁ 626 | ƛǂ 627 | 628 | 629 | ƚƆƚ 630 | Ǽ 631 | 632 | 633 | ƚƆƛ 634 | Ǿ 635 | 636 | 637 | ƚƆƜ 638 | ǿ 639 | 640 | 641 | ƚƆƭ 642 | ƚǠ 643 | 644 | 645 | ƛdž 646 | ƛLJ 647 | 648 | 649 | ƛlj 650 | ƛNJ 651 | 652 | 653 | Ɯǁ 654 | Ɯǂ 655 | 656 | 657 | ƜƆƘ 658 | Ȁ 659 | 660 | 661 | ƜƆƚ 662 | Ȃ 663 | 664 | 665 | ƜƆƛ 666 | ȃ 667 | 668 | 669 | Ɯdž 670 | ƜLJ 671 | 672 | 673 | Ɯlj 674 | ƜNJ 675 | 676 | 677 | ǹǁ 678 | ǹǂ 679 | 680 | 681 | Ɲǁ 682 | Ɲǂ 683 | 684 | 685 | ƞǁ 686 | ƞǂ 687 | 688 | 689 | ƝƆƝ 690 | Ȅ 691 | 692 | 693 | ƝƆƭ 694 | ƝǠ 695 | 696 | 697 | ƝƆƯ 698 | ƝǤ 699 | 700 | 701 | ǹdž 702 | ǹLJ 703 | 704 | 705 | Ɲdž 706 | ƝLJ 707 | 708 | 709 | ƞdž 710 | ƞLJ 711 | 712 | 713 | ǹlj 714 | ǹNJ 715 | 716 | 717 | Ɲlj 718 | ƝNJ 719 | 720 | 721 | ƞlj 722 | ƞNJ 723 | 724 | 725 | ȵǁ 726 | ȵǂ 727 | 728 | 729 | ȵdž 730 | ȵLJ 731 | 732 | 733 | ȵǩ 734 | ȵǪ 735 | 736 | 737 | ȵlj 738 | ȵNJ 739 | 740 | 741 | ȵǪǁ 742 | ȵǪǂ 743 | 744 | 745 | ȵǪdž 746 | ȵǪLJ 747 | 748 | 749 | ȯǁ 750 | ȯǂ 751 | 752 | 753 | Ɵǁ 754 | Ɵǂ 755 | 756 | 757 | ȱǁ 758 | ȱǂ 759 | 760 | 761 | Ȫǁ 762 | Ȫǂ 763 | 764 | 765 | ǿǁ 766 | ǿǂ 767 | 768 | 769 | ȭǁ 770 | ȭǂ 771 | 772 | 773 | Ȍǁ 774 | Ȍǔ 775 | 776 | 777 | Ơǁ 778 | Ơǂ 779 | 780 | 781 | Ƣǁ 782 | Ƣǂ 783 | 784 | 785 | Ǿǂ 786 | Ǿǂ 787 | 788 | 789 | ơƆƝ 790 | Ȇ 791 | 792 | 793 | ơƆƞ 794 | ȇ 795 | 796 | 797 | ƟƆƟ 798 | ȅ 799 | 800 | 801 | ơƆƟ 802 | Ȉ 803 | 804 | 805 | ƢƆƢ 806 | ȉ 807 | 808 | 809 | ơƆƪ 810 | ơǝ 811 | 812 | 813 | ƢƆƧ 814 | Ȋ 815 | 816 | 817 | ƢƆƪ 818 | Ƣǝ 819 | 820 | 821 | ơƆƭ 822 | ơǠ 823 | 824 | 825 | ƢƆƭ 826 | ƢǠ 827 | 828 | 829 | ƢƆƯ 830 | ƢǤ 831 | 832 | 833 | ȯdž 834 | ȯLJ 835 | 836 | 837 | Ɵdž 838 | ƟLJ 839 | 840 | 841 | ȱdž 842 | ȱLJ 843 | 844 | 845 | Ȫdž 846 | Ȫdž 847 | 848 | 849 | ǿdž 850 | ǿLJ 851 | 852 | 853 | ȭdž 854 | ȬLJ 855 | 856 | 857 | Ȍdž 858 | ȌLj 859 | 860 | 861 | Ơdž 862 | ƠLJ 863 | 864 | 865 | Ƣdž 866 | ƢLJ 867 | 868 | 869 | ǭǐǁ 870 | ǭǐǂ 871 | 872 | 873 | ǭǐdž 874 | ǭǐLJ 875 | 876 | 877 | ǭǐǩ 878 | ǭǑ 879 | 880 | 881 | ǭǐlj 882 | ǭǐNJ 883 | 884 | 885 | Ȫǩ 886 | ȪǪ 887 | 888 | 889 | Ƣǩ 890 | Ȍ 891 | 892 | 893 | ȯlj 894 | ȯNJ 895 | 896 | 897 | Ɵlj 898 | ƟNJ 899 | 900 | 901 | ȱlj 902 | ȱNJ 903 | 904 | 905 | Ȫlj 906 | ȪNJ 907 | 908 | 909 | ǿlj 910 | ǿNJ 911 | 912 | 913 | ȭlj 914 | ȭNJ 915 | 916 | 917 | Ơlj 918 | ƠNJ 919 | 920 | 921 | Ƣlj 922 | ƢNJ 923 | 924 | 925 | ǭǑǁ 926 | ǭǑǂ 927 | 928 | 929 | ǭǑdž 930 | ǭǑLJ 931 | 932 | 933 | ǭǑlj 934 | ǭǑNJ 935 | 936 | 937 | ǭȶǩ 938 | ǭȶȒ 939 | 940 | 941 | ǭȶǩǁ 942 | ǭȶȒǔ 943 | 944 | 945 | ǭȶǩdž 946 | ǭȶȒLj 947 | 948 | 949 | ȣǁ 950 | ȣǂ 951 | 952 | 953 | ȣdž 954 | ȣLJ 955 | 956 | 957 | ȣlj 958 | ȣNJ 959 | 960 | 961 | ȓǁ 962 | ȓǂ 963 | 964 | 965 | ȓdž 966 | ȓLJ 967 | 968 | 969 | ȓlj 970 | ȓNJ 971 | 972 | 973 | Șǁ 974 | Șǂ 975 | 976 | 977 | ƨƆƕ 978 | Ǚƕ 979 | 980 | 981 | ƨƆƖ 982 | ǙƖ 983 | 984 | 985 | ƪƆƝ 986 | ǜƝ 987 | 988 | 989 | ƪƆƞ 990 | Ȗ 991 | 992 | 993 | ƪƆƟ 994 | ȗ 995 | 996 | 997 | ƪƆƢ 998 | Ǜǘ 999 | 1000 | 1001 | ƨƆƩ 1002 | ȓ 1003 | 1004 | 1005 | ƨƆƨ 1006 | ȍ 1007 | 1008 | 1009 | ƪƆƩ 1010 | Ș 1011 | 1012 | 1013 | ƪƆƨ 1014 | ǜƨ 1015 | 1016 | 1017 | ƪƆƪ 1018 | ƪǝ 1019 | 1020 | 1021 | ƩƆƭ 1022 | ƩǞ 1023 | 1024 | 1025 | ƨƆƭ 1026 | Ȕ 1027 | 1028 | 1029 | ƨƆƮ 1030 | ǚǡ 1031 | 1032 | 1033 | ƪƆƭ 1034 | Ǜǥ 1035 | 1036 | 1037 | ƩƆƯ 1038 | ƩǤ 1039 | 1040 | 1041 | ƨƆƯ 1042 | ȕ 1043 | 1044 | 1045 | ƪƆƯ 1046 | ƪǤ 1047 | 1048 | 1049 | ƪƆƵ 1050 | ș 1051 | 1052 | 1053 | Șdž 1054 | ȘLJ 1055 | 1056 | 1057 | Șǩ 1058 | ȘǪ 1059 | 1060 | 1061 | Ʃǩǁ 1062 | Ʃǩǔ 1063 | 1064 | 1065 | ƨǩǁ 1066 | ƨǩǔ 1067 | 1068 | 1069 | Ʃǩdž 1070 | ƩǩLj 1071 | 1072 | 1073 | ƨǩdž 1074 | ƨǩLj 1075 | 1076 | 1077 | Șlj 1078 | ȘNJ 1079 | 1080 | 1081 | ȘǪǁ 1082 | ȘǪǂ 1083 | 1084 | 1085 | ȘǪdž 1086 | ȘǪLJ 1087 | 1088 | 1089 | ȘǪlj 1090 | ȘǪNJ 1091 | 1092 | 1093 | Ƭǁ 1094 | Ƭǂ 1095 | 1096 | 1097 | Ʈǁ 1098 | Ʈǂ 1099 | 1100 | 1101 | țǁ 1102 | țǂ 1103 | 1104 | 1105 | ƭƆƚ 1106 | Ȟ 1107 | 1108 | 1109 | ƫƆƝ 1110 | Ț 1111 | 1112 | 1113 | ƫƆƢ 1114 | ț 1115 | 1116 | 1117 | ƭƆƩ 1118 | Ƞ 1119 | 1120 | 1121 | ƭƆƨ 1122 | ȟ 1123 | 1124 | 1125 | ƫƆƪ 1126 | ƫǝ 1127 | 1128 | 1129 | ƭƆƭ 1130 | ƭǞ 1131 | 1132 | 1133 | ƫƆƫ 1134 | Ȝ 1135 | 1136 | 1137 | ƬƆƲ 1138 | Ƭǫ 1139 | 1140 | 1141 | ƫƆƲ 1142 | ƫǬ 1143 | 1144 | 1145 | ƮƆƲ 1146 | ƮǬ 1147 | 1148 | 1149 | ƫƆƵ 1150 | ȝ 1151 | 1152 | 1153 | Ƭdž 1154 | ƬLJ 1155 | 1156 | 1157 | Ʈdž 1158 | ƮLJ 1159 | 1160 | 1161 | țdž 1162 | țLJ 1163 | 1164 | 1165 | Ƭǩ 1166 | ƬǪ 1167 | 1168 | 1169 | ƫǩ 1170 | Ɉ 1171 | 1172 | 1173 | Ʈǩ 1174 | ȡ 1175 | 1176 | 1177 | ƭǩǁ 1178 | ƭǩǔ 1179 | 1180 | 1181 | ƭǩdž 1182 | ƭǩLj 1183 | 1184 | 1185 | Ƭlj 1186 | ƬNJ 1187 | 1188 | 1189 | Ʈlj 1190 | ƮNJ 1191 | 1192 | 1193 | țlj 1194 | țNJ 1195 | 1196 | 1197 | ƬǪǁ 1198 | ƬǪǂ 1199 | 1200 | 1201 | ƬǪdž 1202 | ƬǪLJ 1203 | 1204 | 1205 | ƬǪlj 1206 | ƬǪNJ 1207 | 1208 | 1209 | ƫȒǁ 1210 | Ɉǔ 1211 | 1212 | 1213 | ƫȒdž 1214 | ɈLj 1215 | 1216 | 1217 | ȗǁ 1218 | ȗǂ 1219 | 1220 | 1221 | Ʊǁ 1222 | Ʊǔ 1223 | 1224 | 1225 | ǚǡǁ 1226 | ǚǡǂ 1227 | 1228 | 1229 | ǚǡdž 1230 | ǚǡLJ 1231 | 1232 | 1233 | ǚǢǁ 1234 | ǚǢǔ 1235 | 1236 | 1237 | ǚǢdž 1238 | ǚǢLj 1239 | 1240 | 1241 | Ǚǡǩ 1242 | ǚǢ 1243 | 1244 | 1245 | ǚǡlj 1246 | ǚǡNJ 1247 | 1248 | 1249 | ƯƆƪ 1250 | ǣǝ 1251 | 1252 | 1253 | ƯƆƬ 1254 | ȣ 1255 | 1256 | 1257 | ƯƆƫ 1258 | ǣȶ 1259 | 1260 | 1261 | ƯƆƮ 1262 | ǣǡ 1263 | 1264 | 1265 | ƯƆƯ 1266 | ǣǦ 1267 | 1268 | 1269 | ƯƆƲ 1270 | ǣǬ 1271 | 1272 | 1273 | ȗdž 1274 | ȗLJ 1275 | 1276 | 1277 | Ʊdž 1278 | ƱLj 1279 | 1280 | 1281 | ǖǵǁ 1282 | ǖǵǂ 1283 | 1284 | 1285 | ǖǵdž 1286 | ǖǵLJ 1287 | 1288 | 1289 | ǖǵlj 1290 | ǖǵNJ 1291 | 1292 | 1293 | ǙƕƆǁ 1294 | ƨƆǶ 1295 | 1296 | 1297 | Ưǩ 1298 | ǣǩ 1299 | 1300 | 1301 | Ǖƙǁ 1302 | Ǖƙǂ 1303 | 1304 | 1305 | ǕƙƆƭ 1306 | ǕƙǠ 1307 | 1308 | 1309 | Ǖƙdž 1310 | ǕƙLJ 1311 | 1312 | 1313 | Ǖƙǩ 1314 | ǕƙǪ 1315 | 1316 | 1317 | Ǖƙlj 1318 | ǕƙNJ 1319 | 1320 | 1321 | ȗlj 1322 | ȗNJ 1323 | 1324 | 1325 | ǕƜǁ 1326 | ǕƜǂ 1327 | 1328 | 1329 | ǕƜdž 1330 | ǕƜLJ 1331 | 1332 | 1333 | ǕƜlj 1334 | ǕƜNJ 1335 | 1336 | 1337 | ǜƝǁ 1338 | ǜƝǂ 1339 | 1340 | 1341 | ǜƝdž 1342 | ǜƝLJ 1343 | 1344 | 1345 | ǜƝlj 1346 | ǜƝNJ 1347 | 1348 | 1349 | ǜƨƆƭ 1350 | ǜȔ 1351 | 1352 | 1353 | ǜƨǩǁ 1354 | ǜƨǩǔ 1355 | 1356 | 1357 | ǜƨǩdž 1358 | ǜƨǩLj 1359 | 1360 | 1361 | ǛǓǁ 1362 | ǛǓǂ 1363 | 1364 | 1365 | Ǜǘǁ 1366 | Ǜǒ 1367 | 1368 | 1369 | ǛǘƆƭ 1370 | ǛǘǠ 1371 | 1372 | 1373 | ǛǓdž 1374 | ǛǓLJ 1375 | 1376 | 1377 | Ǜǘdž 1378 | ǛǘLJ 1379 | 1380 | 1381 | Ǜǘǩ 1382 | Ǜǽ 1383 | 1384 | 1385 | ǛǓlj 1386 | ǛǓNJ 1387 | 1388 | 1389 | Ǜǘlj 1390 | ǛǘNJ 1391 | 1392 | 1393 | ƲƆƓ 1394 | ȥ 1395 | 1396 | 1397 | ƲƆƕ 1398 | Ȧ 1399 | 1400 | 1401 | ƲƆƝ 1402 | ȧ 1403 | 1404 | 1405 | ƲƆƟ 1406 | Ȩ 1407 | 1408 | 1409 | ƲƆƬ 1410 | Ȫ 1411 | 1412 | 1413 | ƲƆƫ 1414 | ȩ 1415 | 1416 | 1417 | ƲƆƯ 1418 | ƲǤ 1419 | 1420 | 1421 | ƲƆƲ 1422 | ƲǬ 1423 | 1424 | 1425 | ȳǁ 1426 | ȳǂ 1427 | 1428 | 1429 | Ƴǁ 1430 | ȫ 1431 | 1432 | 1433 | ƴƆƓ 1434 | ǭǐ 1435 | 1436 | 1437 | ƳƆƙ 1438 | ȭ 1439 | 1440 | 1441 | ƴƆƝ 1442 | ȯ 1443 | 1444 | 1445 | ƴƆƞ 1446 | Ȱ 1447 | 1448 | 1449 | ƴƆơ 1450 | Ȯ 1451 | 1452 | 1453 | ƳƆƪ 1454 | Ƴǝ 1455 | 1456 | 1457 | ƴƆƬ 1458 | ȱ 1459 | 1460 | 1461 | ƴƆƫ 1462 | ǭȶ 1463 | 1464 | 1465 | ƴƆƯ 1466 | ǭǦ 1467 | 1468 | 1469 | ȳdž 1470 | ȳLJLJ 1471 | 1472 | 1473 | Ƴǩ 1474 | ƳȒ 1475 | 1476 | 1477 | ȳlj 1478 | ȳNJ 1479 | 1480 | 1481 | ƳȒǁ 1482 | ƳȒǔ 1483 | 1484 | 1485 | ƳȒdž 1486 | ƳȒLj 1487 | 1488 | 1489 | ƶǁ 1490 | ȷ 1491 | 1492 | 1493 | ȥǁ 1494 | ȥǂ 1495 | 1496 | 1497 | ƵƆƓ 1498 | Ǯǐ 1499 | 1500 | 1501 | ƵƆƔ 1502 | Ȳ 1503 | 1504 | 1505 | ƵƆƝ 1506 | ȳ 1507 | 1508 | 1509 | ƶƆơ 1510 | ƶȤ 1511 | 1512 | 1513 | ƵƆƢ 1514 | Ǯǘ 1515 | 1516 | 1517 | ƵƆƧ 1518 | ǮǓ 1519 | 1520 | 1521 | ƵƆƪ 1522 | Ǯǝ 1523 | 1524 | 1525 | ƵƆƬ 1526 | ȵ 1527 | 1528 | 1529 | ƵƆƫ 1530 | Ǯȶ 1531 | 1532 | 1533 | ƵƆƯ 1534 | ǮǦ 1535 | 1536 | 1537 | ƵƆƲ 1538 | ǮǬ 1539 | 1540 | 1541 | ȥdž 1542 | ȥLJ 1543 | 1544 | 1545 | Ƶǩ 1546 | Ƶǩ 1547 | 1548 | 1549 | ƶlj 1550 | ȸ 1551 | 1552 | 1553 | ȥlj 1554 | ȥNJ 1555 | 1556 | 1557 | Ʒǁ 1558 | Ʒǂ 1559 | 1560 | 1561 | ǯǁ 1562 | ǯǂ 1563 | 1564 | 1565 | ǯdž 1566 | ǯLJ 1567 | 1568 | 1569 | Ǯǐǁ 1570 | Ǯǐǂ 1571 | 1572 | 1573 | ǮǐƆƲ 1574 | Ǯǐǫ 1575 | 1576 | 1577 | Ǯǐdž 1578 | ǮǐLJ 1579 | 1580 | 1581 | Ǯǐǩ 1582 | ǮǑ 1583 | 1584 | 1585 | Ǯǐlj 1586 | ǮǐNJ 1587 | 1588 | 1589 | ǯlj 1590 | ǯNJ 1591 | 1592 | 1593 | ǮǑǁ 1594 | ǮǑǂ 1595 | 1596 | 1597 | ǮǑdž 1598 | ǮǑLJ 1599 | 1600 | 1601 | ǮǑlj 1602 | ǮǑNJ 1603 | 1604 | 1605 | ǮȶƆƲ 1606 | ǮȶǬ 1607 | 1608 | 1609 | ǮǓǁ 1610 | ǮǓǂ 1611 | 1612 | 1613 | Ǯǘǁ 1614 | Ǯǒ 1615 | 1616 | 1617 | ǮǘƆƭ 1618 | ǮǘǠ 1619 | 1620 | 1621 | ǮǓdž 1622 | ǮǓLJ 1623 | 1624 | 1625 | Ǯǘdž 1626 | ǮǘLJ 1627 | 1628 | 1629 | Ǯǘǩ 1630 | Ǯǽ 1631 | 1632 | 1633 | ǮǓlj 1634 | ǮǓNJ 1635 | 1636 | 1637 | Ǯǘlj 1638 | ǮǘNJ 1639 | 1640 | 1641 | --------------------------------------------------------------------------------