• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/

Lines Matching defs:hotkey

109             // Convert GTK+ hotkey symbol to wxWidgets/Windows standard
821 wxString oldhotkey = GetHotKey(); // Store the old hotkey in Ctrl-foo format
827 oldhotkey == GetHotKey()) // Make sure we can change a hotkey even if the label is unaltered
1106 // wxPrintf( wxT("item: %s hotkey %s\n"), mitem->GetText().c_str(), GetGtkHotKey(*mitem).c_str() );
1233 wxString hotkey;
1240 hotkey += wxT("<alt>");
1242 hotkey += wxT("<control>");
1244 hotkey += wxT("<shift>");
1273 hotkey += wxString::Format(wxT("F%d"), code - WXK_F1 + 1);
1280 hotkey << wxT("Insert" );
1283 hotkey << wxT("Delete" );
1286 hotkey << wxT("Up" );
1289 hotkey << wxT("Down" );
1292 hotkey << wxT("Page_Up" );
1295 hotkey << wxT("Page_Down" );
1298 hotkey << wxT("Left" );
1301 hotkey << wxT("Right" );
1304 hotkey << wxT("Home" );
1307 hotkey << wxT("End" );
1310 hotkey << wxT("Return" );
1313 hotkey << wxT("BackSpace" );
1316 hotkey << wxT("Tab" );
1319 hotkey << wxT("Esc" );
1322 hotkey << wxT("space" );
1325 hotkey << wxT("Multiply" );
1328 hotkey << wxT("Add" );
1331 hotkey << wxT("Separator" );
1334 hotkey << wxT("Subtract" );
1337 hotkey << wxT("Decimal" );
1340 hotkey << wxT("Divide" );
1343 hotkey << wxT("Cancel" );
1346 hotkey << wxT("Clear" );
1349 hotkey << wxT("Menu" );
1352 hotkey << wxT("Pause" );
1355 hotkey << wxT("Capital" );
1358 hotkey << wxT("Select" );
1361 hotkey << wxT("Print" );
1364 hotkey << wxT("Execute" );
1367 hotkey << wxT("Snapshot" );
1370 hotkey << wxT("Help" );
1373 hotkey << wxT("Num_Lock" );
1376 hotkey << wxT("Scroll_Lock" );
1379 hotkey << wxT("KP_Insert" );
1382 hotkey << wxT("KP_Delete" );
1385 hotkey << wxT("KP_Space" );
1388 hotkey << wxT("KP_Tab" );
1391 hotkey << wxT("KP_Enter" );
1395 hotkey += wxString::Format(wxT("KP_F%d"), code - WXK_NUMPAD_F1 + 1);
1398 hotkey << wxT("KP_Home" );
1401 hotkey << wxT("KP_Left" );
1404 hotkey << wxT("KP_Up" );
1407 hotkey << wxT("KP_Right" );
1410 hotkey << wxT("KP_Down" );
1413 hotkey << wxT("KP_Page_Up" );
1416 hotkey << wxT("KP_Page_Down" );
1419 hotkey << wxT("KP_End" );
1422 hotkey << wxT("KP_Begin" );
1425 hotkey << wxT("KP_Equal" );
1428 hotkey << wxT("KP_Multiply" );
1431 hotkey << wxT("KP_Add" );
1434 hotkey << wxT("KP_Separator" );
1437 hotkey << wxT("KP_Subtract" );
1440 hotkey << wxT("KP_Decimal" );
1443 hotkey << wxT("KP_Divide" );
1448 hotkey += wxString::Format(wxT("KP_%d"), code - WXK_NUMPAD0);
1451 hotkey << wxT("Super_L" );
1454 hotkey << wxT("Super_R" );
1457 hotkey << wxT("Menu" );
1460 hotkey << wxT("Command" );
1468 hotkey += wxString::Format(wxT("Special%d"), code - WXK_SPECIAL1 + 1);
1480 hotkey << name;
1491 return hotkey;