Searched refs:keymap (Results 1 - 16 of 16) sorted by relevance

/haiku/src/preferences/keymap/
H A DKeymapListItem.cpp14 KeymapListItem::KeymapListItem(entry_ref& keymap, const char* name) argument
16 BStringItem(name != NULL ? name : keymap.name),
17 fKeymap(keymap)
H A DKeymapListItem.h15 * corresponding keymap.
25 KeymapListItem(entry_ref& keymap,
H A DKeymapApplication.h35 bool UseKeymap(BEntry* keymap);
H A DKeyboardLayoutView.h32 void SetKeymap(Keymap* keymap);
H A DKeyboardLayoutView.cpp121 KeyboardLayoutView::SetKeymap(Keymap* keymap) argument
123 fKeymap = keymap;
727 // Show the key code if there is no keymap
1301 message.AddPointer("keymap", fKeymap);
/haiku/src/tests/kits/shared/
H A DKeymapTest.cpp39 BKeymap keymap; local
41 keymap.SetToCurrent();
42 CPPUNIT_ASSERT(keymap == fCurrentKeymap);
44 keymap.SetToDefault();
45 CPPUNIT_ASSERT(keymap == fDefaultKeymap);
52 BKeymap keymap; local
54 keymap = fCurrentKeymap;
55 CPPUNIT_ASSERT(keymap == fCurrentKeymap);
57 keymap = fDefaultKeymap;
58 CPPUNIT_ASSERT(keymap
66 key_map* keymap; local
[all...]
/haiku/src/bin/keymap/
H A Dmain.cpp31 "keymap.out|h).\n"
41 " -c, --compile Compile source keymap to binary.\n"
42 " -h, --header Translate source keymap to C++ header.\n",
51 return "Unknown keymap version";
58 load_keymap(Keymap& keymap, const char* name, bool source) argument
63 status = keymap.LoadSource(name);
65 status = keymap.LoadSource(stdin);
68 status = keymap.SetTo(name);
71 status = keymap.SetTo(fileIO);
76 fprintf(stderr, "%s: error when loading the keymap
155 Keymap keymap; local
[all...]
/haiku/src/bin/consoled/
H A Dconsoled.cpp93 BKeymap keymap; local
94 // Load current keymap from disk (we can't talk to the input server)
102 status = keymap.SetTo(path);
105 keymap.SetToDefault();
119 uint32 changedModifiers = keymap.Modifier(keycode);
151 newDeadKey = keymap.ActiveDeadKey(keycode, modifiers);
156 keymap.GetChars(keycode, modifiers, activeDeadKey, &string,
/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php269 function in_keymaps($keymap)
273 if ($keymap == "")
275 if (in_array($keymap, $keymaps))
285 if (is_string($_GET['keymap']) && in_keymaps($_GET['keymap']))
287 $vnckeymap = $_GET['keymap'];
288 dbg("Overriden keymap '" . $vnckeymap . "' in arguments.");
307 dbg("Detected keymap '" . $vnckeymap .
335 echo "Select your keymap:";
337 echo "<select name=\"keymap\">";
[all...]
/haiku/src/apps/firstbootprompt/
H A DBootPromptWindow.cpp63 // While there is a "Dutch" keymap, it apparently has not been widely
64 // adopted, and the US-International keymap is common
278 // Select default keymap by language
367 "Please select your preferred language and keymap. Both settings can "
384 "Please select your preferred language and keymap. Both settings "
515 // Get the name of the current keymap, so we can mark the correct entry
521 node.ReadAttrString("keymap:name", &currentName);
531 // US-International is the default keymap, if we could not found a
566 // Load and use the new keymap
567 Keymap keymap;
[all...]
/haiku/src/apps/deskcalc/
H A DCalcView.cpp174 char keymap[4]; member in struct:CalcView::CalcKey
704 // scan the keymap array for match
707 if (fKeypad[i].keymap[0] == bytes[0]) {
1229 // set keymap
1231 strlcpy(key->keymap, key->label, sizeof(key->keymap));
1233 *key->keymap = '\0';
/haiku/src/apps/terminal/
H A DTermView.h106 void SetKeymap(const key_map* keymap,
H A DTermWindow.cpp214 // fetch the current keymap
561 BKeymap keymap; local
562 keymap.SetToCurrent();
564 if (keymap.GetModifiedCharacters("+", B_SHIFT_KEY, 0, &unmodified)
H A DTermView.cpp769 TermView::SetKeymap(const key_map* keymap, const char* chars) argument
771 fKeymap = keymap;
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp688 BKeymap keymap; local
689 keymap.SetToCurrent();
691 if (keymap.GetModifiedCharacters("+", B_SHIFT_KEY, 0, &unmodified)
/haiku/src/kits/tracker/
H A DContainerWindow.cpp806 BKeymap keymap; local
807 if (keymap.SetToCurrent() == B_OK) {
809 if (keymap.GetModifiedCharacters("+", B_SHIFT_KEY, 0, &unmodified)

Completed in 238 milliseconds