keyboard

International multi-OS keyboard layout for both coding and surfing?

So yes, the problem has been raised in parts multiple times already. Still I'm looking for a keyboard layout that has the following features: Easy on fingers (Dvorak-like layouts welcome) Easy for coding Includes german characters (typing ä with AltGr-p is not ok). Works well with web-browsing (Ctrl-t and Ctrl-w on one hand, left one v...

Is there any keyboard shorcut available for "Go Into" in eclipse 3.5 tool?

I just wanted to know about, Is there any keyboard shortcut key available for the "Go Into" option into the eclipse 3.5 IDE. Any help will be really appreciate. See below this screen shot if you can figure out the answer. ...

ipad dev, close keyboard upon rotation

I have an issue where I want the keyboard to resign upon the ipad rotating. If the keyboard is open in portrait, and I rotate to landscape, the keyboard pops up in landscape. I want it to not appear! HOW DO I RESIGN the keyboard when I rotate! I've tried putting: [self.textField1 resignFirstResponder]; in the: -(void)willAnimateFirstH...

Getting the keyboard cursor location/coordinates in all applications.

Right now I'm using the functions GetCaretPos() and GetGUIThreadInfo() to get the current keyboard cursor/caret coordinates. These work properly in applications like Notepad and Wordpad and return the correct coordinates, but in applications such as Firefox, Thunderbird, and others, the coordinates returned are always 0, 0, no matter whe...

How to make a notification when a key from keyboard is pressed?

I made my own keyboard just with layouts and simple buttons on it. Now I want to make popups (or whatever they are) when I press a key, exactly like in the android keyboard. How could I do this? ...

Android: InputMethodService how to set a view with setExtractView(View view)? [secret API bug?]

I'm trying to provide a modified view for a custom Android keyboard in fullscreen mode. Therefor I'm trying to replace the extract view. In the documentation I found the following method: setExtractView(View view) - so I assume it's a public API call. However, as you can see from the Android OS source code (snipped pasted below) it lets...

How can I handle arrow keys in a custom component in delphi?

I'm using delphi XE. I'm developing a component that is come from TPanel. TApGUITab=class(Tpanel) I handled key down event by handling WMKeyDown message, but it isn't called when I press arrow keys and it sets focus to another control instead of calling the event. What should I do now? ...

Setting Keyboard Shortcuts in Ubuntu

Is it possible to do the following in Ubuntu? If so can someone point me in the right direction. Say you want to set a keyboard shortcut to do the following: For examples sake, set Alt+F to open Firefox and maximize it, but only if Firefox is not already running. If it is running and not maximized, then maximize the most recently tou...

How to emulate WM_KEYDOWN, WM_KEY* from a WM_INPUT handler registered with RIDEV_NOLEGACY?

I have a system with two HID keyboards (actually, one's a barcode scanner.) I registered for raw input with RIDEV_NOLEGACY to block the system from creating WM_KEY* messages for the barcode scanner, which tediously also blocks the messages from the other keyboard. My goal is to keep the WM_* messages for any keybaord device that isn't ...

How to remove shortcut command Ctrl+E in Management Studio

I'm really frustrated by this shortcut because I commonly use both Emacs and Management Studio for different projects. However accidentally pressing CTRL+E in MS and expecting cursor to move to the end of the line, which it does in my Emacs configuration, can be really bad in MS if you are programming modifications to a database and, say...

Input data into BasicEditField on BlackBerry Torch

I'm writing an app which has a function asking users to type a filename into a BasicEditField on a PopupScreen. The app works fine with Blackberry Storm 2 -- both the simulator and a real device. The problem is that the app doesn't work on a BlackBerry Torch -- neither the simulator nor a device. I can't enter text into the BasicEditF...

In GNU Emacs, what is `[C-tab]`?

In GNU Emacs, what is [C-tab]? Consider: (version) "GNU Emacs 23.2.1 (i386-mingw-nt5.1.2600) of 2010-05-08 on G41R2F1" (defun key-binding-test () (interactive) (insert " key-binding-test called ")) For a single letter control character, a character constant must be used in the vector: (global-set-key [C-l] 'key-binding-test) ; ...

Return Key: How to focus the right form

Hi, I have more than one form on the same page: I would like to know if there is any way I can submit the right form when the user press the "return keyboard key" ? Thanks ...

Keyboard signal handling, adding parameters to callback handler function (Ubuntu, intel)

I have this code: #include <stdio.h> #include <stdlib.h> #include <signal.h> // Define the function to be called when ctrl-c (SIGINT) signal is sent to process void signal_callback_handler(int signum) { printf("Caught signal %d\n",signum); // Cleanup and close up stuff here // Terminate program exit(signum); } int main() ...

Displaying soft keyboard whenever AlertDialog.Builder object is opened

My code for opening an input dialog reads as follows: final AlertDialog.Builder alert = new AlertDialog.Builder(this); alert.setTitle("Dialog Title"); alert.setMessage("Request information"); LayoutInflater factory = LayoutInflater.from(this); final View textEntryView = factory.inflate(R.layout.edittextautotextlayout, null); final...

How to find the key code for a specific key

What's the easiest way to find the keycode for a specific key press? Are there any good online tools that just capture any key event and show the code? I want to try and find the key codes for special keys on a mobile device with a web browser, so an online tool would be great. ...

How to restore default keyboard after add toolbar (iphone)

Hi everyone! I have a custom keyboard with toolbar on the top. But i want to get default keyboard because i only want to use the custom keyboard in one view. In other view, i want to use default keyboard. - (void)keyboardWillShow:(NSNotification *)notification { for (UIWindow *keyboardWindow in [[UIApplication sharedApplication]...