The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
44 views

GetKeyboardLayoutName of another process?

is there an extended (Ex) version of GetKeyboardLayoutName which gets the current keyboard language of another process ? becuase if i call GetKeyboardLayoutName in a simple project, it shows me the ...
1
vote
0answers
25 views

Detect Users Keyboard Format on a Virtual Mac Machine

So we have a virtual Mac machine set up. It currently has a default US keyboard set up. If a user from (say) Germany logs into the Virtual Machine, I need to run a script on the virtual machine that ...
1
vote
1answer
33 views

Awesome WM ignores input in non-us layout

I've started using Awesome WM, and found annoying that it ignores input in "Run" widget (mod+R) when current layout is not US, say, RU. Also, it ignores and any input (mouse klicks, keyboard - even ...
0
votes
0answers
31 views

xkb keyboard layout with slash as a dead key

I am writing a customized keyboard layout. I have kUbuntu 12.10 and have successfully got the layout recognized. My question is about how to achieve specific key combinations. I would like to make ...
1
vote
0answers
71 views

Modified Colemak for Programming

Does there exist a modified Colemak keyboard layout designed specifically for programming? I went cold-turkey on the Colemak keyboard layout a few days ago and I really like it for normal typing, but ...
0
votes
1answer
66 views

Tkinter determine keyboard layout

Is there a way to detect current keyboard layout in Tkinter? It is necessary to process keyboard accelerators correctly for such languages as Russian, French, Greek (see my other question for ...
0
votes
2answers
287 views

slow keyboard layout switching in gnome 3.6

when I upgraded from gnome 3.4 to gnome 3.6 I realized that I could not change my keyboard layout using Alt+Shift anymore. so I installed gnome-tweak-tool and in Typing tab I selected Alt+Shift from ...
2
votes
0answers
92 views

GetMessage(WM_CHAR) override? Making sure all other Window Hooks activate

I'm looking for a way to intercept a GetMessage() call for WM_CHAR in an external process (only the active window, to be specific). I'm hesitant to use SetWindowsHookEx() - I want to make absolutely ...
8
votes
1answer
219 views

How to use LoadKeyboardLayout in a background thread?

I'm using the LoadKeyboardLayout function to load and activate the keyboard layout this way: procedure TfrmMain.eSearchEnter(Sender: TObject); begin LoadKeyboardLayout('00000429', KLF_ACTIVATE); ...
0
votes
1answer
605 views

Android 4.1: How to “implement user installable keymaps”?

Description: "User-installable keymaps" are a feature listed for Android 4.1 on http://developer.android.com/about/versions/jelly-bean.html. There it says: The platform now supports ...
0
votes
1answer
124 views

qt setting QWSServer keymap from code

I need to a keymap for my embedded QWSServer application. Using environmental variables like this QWS_KEYBOARD="TTY:keymap=/german_keyboard.qmap" export QWS_KEYBOARD works, but isn't optimal for ...
3
votes
0answers
782 views

Switching between keyboard layouts on Arch Linux breaks other key bindings [closed]

I'm an Arch Newbie and have this problem: I want to have two keyboard layouts(en and bg) and to switch between them with alt+shift command. So i did everything as it is written here and everything ...
1
vote
2answers
277 views

Dealing with multiple keyboard layouts (OSX vs. Windows)

I have two computers; one MacBook Pro and one desktop PC running Windows. For various reasons I prefer writing code on the MacBook, while I keep the desktop PC mostly for gaming and entertainment ...
0
votes
3answers
96 views

How to perform C-M-\ on an azerty keyboard? (and other azerty tips)

I've a problem successfully performing the C-M-\ combination on my azerty keyboard. The main issue is that to hit \ I need to hold down alt gr, and this seems to mess up the whole thing. I'd be ...
2
votes
1answer
453 views

can't get current keyboard layout

I have tried GetKeyboardLayoutName() and GetKeyboardLayout() for getting the current keyboard layout, but they both give me the default layout and changing the layout doesn't affect the output! ...
0
votes
0answers
111 views

The Microsoft Keyboard Layout Creator and Ctrl shortcuts

I have created a keyboard layout for QGMLWY using MSKLC. The problem is that when I try to use d shortcut like Ctrl-A, programs still register it as Ctrl-J (as if it were still QWERTY). I read a blog ...
0
votes
0answers
67 views

is it possible to lock keyboard layout for app in ubuntu? [closed]

I'm using two keyboard layouts in my ubuntu. But in vim I'm using a keymap switching so I want to lock English layout to gvim window whenever I switch to it. Is it possible in ubuntu?
0
votes
0answers
33 views

Without changing my non-US layout, how can I map a key to ~ so that I can use it to access a game's console?

My current layout doesn't include a ~ key. I don't want to change the layout because I need the spanish punctuation. Pressing Alt+126 doesn't work in-game to access the console. I'm guessing it's ...
3
votes
2answers
501 views

How to automaticly change keyboard layout on switch to vim normal-mode?

Sometimes I use vim to write non-US text, and when I wanna use any command in normal mode, I need to change layout to US. It's possible to do that automaticly? PS. I can do mapping like this, but in ...
1
vote
0answers
84 views

windows pdcurses win32a non-english keyboard

When using the pdcurses windows port win32a (link here) I'm having trouble getting my non-english (in this case swedish) keyboard to work with characters outside the 0-9, a-z and A-Z range. Example: ...
0
votes
1answer
599 views

WinAPI LoadKeyboardLayout();

I compile dll with VS2010 but I have problems with changing keyboard layout. I am running Windows 7. GetKeyboardLayout(0); //Returns previous layout LoadKeyboardLayout("00000409", KLF_ACTIVATE); ...
1
vote
0answers
52 views

Additional keyboard for Iphone

Is it possible to program an app for the iPhone that can add an additional keyboard layout to the system? I'm from Laos. Right now, the iPhone is able to display the Lao language but it is unable to ...
3
votes
1answer
579 views

disable automatic changing of keyboard layout in DbGrids.pas in VCL

I use ActivateKeyboardLayout(HKL_NEXT, KLF_ACTIVATE); to load Persian keyboard layout using Delphi XE2, But sometimes I click on TextBox or DbGrid control the keyboard automatically is changed to ...
5
votes
3answers
509 views

Preserving keyboard layout in swing app?

I have a Java Swing application wich spawns child dialogs with text controls. And the problem is that when you change keyboard layout in child dialog, it changes back right after the dialog is closed. ...
0
votes
3answers
1k views

change the keyboard layout after a button click

I'm developping an android app , and i have an EditText and a two RadioButtons (A and B ), what i'm trying to do is : When RadioButton A is checked , i want to change the keyboard layout to ...
1
vote
2answers
484 views

How to map a X11 KeySym to a Unicode character?

This is an exact duplicate of this question; however the code linked in the accepted answer is nearly 11 years old, and this comment in the code leads to my duplicate question: The keysym -> UTF-8 ...
3
votes
3answers
2k views

detect keyboard layout with javascript

Is there any way to detect the current keyboard layout using JavaScript? I found this, but it only detects if the visitor is on the english layout. I need to know the exact layout as a string, ...
7
votes
2answers
722 views

Find out when keyboard layout is changed

I am writing an onscreen keyboard and would like to redraw my layout as soon as keyboard layout is changed. Currenty I call GetKeyboardLayout(GetWindowThreadProcessId(GetForegroundWindow(), NULL)) ...
2
votes
1answer
215 views

Pre-define global hotkeys in a cocoa application and the keyboard layout

I'd love to pre-define some global hotkeys in my little cocoa application, and my question is: should I worry about the keyboard layouts? I mean for example, when I pre-define a global key combo ...
0
votes
1answer
430 views

Error with pinvoke function getKeyBoardLayout()

I'm trying to write a basic background keylogger... Keyboard scanCodes and States are converted via pinvoke functions ToAsciiEx or ToUnicodeEx. These function have an argument for KeyboardLayout. I ...
2
votes
1answer
2k views

js: how to get LOCALIZED character on keypress?

I need to get localized character on keypress event. For example: on czech keybord I need to get ř not 5 character (key code 53). Is there any other way to get character and to not use text input and ...
2
votes
1answer
659 views

Is there a way to emulate arrow keys in Windows keyboard drivers?

I am currently writing a keyboard driver for Windows, that provides an additional modifier and allows to directly type some additional characters. For example real quotation marks (“, ”, ‘, ’, …) and ...
0
votes
2answers
204 views

How i can get the word who user type for a special word in non-english language in any language even c# , javascript

Assume that a Non-English user types Namaste Duniya. I need to show नमस्ते दुनिया in Hindi Language. if i have नमस्ते दुनिया stored in a variable then how i can get the word that was typed by the ...
4
votes
2answers
479 views

How can I simulate Alt+Shift to change the language in Windows (II part)?

The problem (switching language dynamically) is solved with ActivateKeyboardLayout, but it still remains when i dynamically create a component on the form ( for ex. TEdit ). When this component gets ...
6
votes
1answer
666 views

Android keyboard layout language

Writing a dictionary application for android. Want to set translation direction in accord with current input language (to be more precise, language of letters displayed on soft keyboard). For ...
1
vote
1answer
520 views

Special characters in Eclipse on an non-US keyboard

For some reason, Eclipse does not register my keypress and I am not able to insert a pipe | anywhere. I am using Windows 7 64bit, Eclipse Helios for PHP 64bit, Java 1.6.0_24-b05 64bit. The problem is ...
3
votes
4answers
480 views

Is there a way to change the keyboard layout in Vim on Windows?

I am working on several documents where I have to type [ ] { and the like (which is much easier with with an american keyboard layout (and to which I am used much more)) but where I also have to type ...
1
vote
1answer
317 views

Send info from EditText to IME

I'm writing a language learning app, currently only German<->Russian. There are several EditTexts where the user is supposed to enter text in one or the other language. As these languages use ...
2
votes
2answers
1k views

Get Physical Keyboard Layout Programmatically

Is there a way to programmatically find out what kind of keyboard a computer has (i.e. where keys are located, and what extra keys are present in which locations)? A little error is acceptable, if ...
3
votes
1answer
2k views

Changing the return key to a done key on the iPhone Keyboard (UITextView)

I'm working on an app with a UITextView. I want to replace the return key on the keyboard with the Done key. I've found code for it but then it's for a UITextField and not a UITextView.
9
votes
4answers
9k views

Done key in iPhone app that closes keyboard (with UITextView)

I'm working on an iPhone app and in the iPhone app the user is typing in an UITextView. I was wondering how I could add the done key on the keyboard instead of having the normal return key and when ...
5
votes
2answers
602 views

How can I simulate Alt+Shift to change the language in Windows?

i need to to force alt + shift in Delphi to make my language of the app. I tried with keybd_event calling it twice, but it didn't do the trick.
0
votes
1answer
190 views

How to get arrow keys for german keyboard layout?

I have an Eee PC 1005peb witch runs with German keyboard layout. My problem is now - or better since a long time - that I miss the arrow keys, some call them also greater or less than keys. Is there ...
1
vote
2answers
2k views

Get the current keyboard layout language in JavaScript

I am using wshShell.SendKeys to input some text into web sites from an HTA, when my current keyboard layout is not English, the results of wshShell.SendKeys is unanticipated. I want my function to ...
0
votes
1answer
687 views

Android: How to intercept keydown globally (on hardware keyboard)

Is there a possibility for an android app to run as a service in the background, intercept keydown events from the hardware keyboard and change behavior (i.e. the resulting character) in some special ...
2
votes
4answers
424 views

Pair Programming with Qwerty and Dvorak keyboard layouts

Is it possible to plug in 2 keyboards and have one with Dvorak layout and the other with QWERTY layout? (On OSX)
7
votes
5answers
831 views

Preferred keyboard layout for programming

I started out with programming about two months ago I think now, and I'm fooling around in either C# or Clojure (I have serious decision-problems). Anyways; I'm from Norway, and we use a different ...
3
votes
9answers
644 views

Is there a programming language that uses characters other than those in the (non-extended) ascii table?

I cant see who would make such a decision but is there any such language? The reason I ask this (or some trivia, if you like) is that I just finished making the eighth iteration of my "developer" ...
2
votes
2answers
1k views

Best keyboard layout for a programmer? [duplicate]

Possible Duplicate: An Ideal Keyboard Layout for Programming As a programmer I don't type as much human language as normal users. In fact, a lot of what I type are ASCII special characters ...
5
votes
3answers
455 views

gVim + US-International: Not combining dead keys with space

I am using "United States-International" on Windows 7, which causes problems in combination with gVim 7.3. In the US-International keyboard layout the keys " and ' are dead keys, that means, you can ...

1 2