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

Lines Matching defs:hotkey

109             // Convert GTK+ hotkey symbol to wxWidgets/Windows standard
837 wxString oldhotkey = GetHotKey(); // Store the old hotkey in Ctrl-foo format
843 oldhotkey == GetHotKey()) // Make sure we can change a hotkey even if the label is unaltered
1224 // wxPrintf( wxT("item: %s hotkey %s\n"), mitem->GetText().c_str(), GetGtkHotKey(*mitem).c_str() );
1367 wxString hotkey;
1374 hotkey += wxT("<alt>");
1376 hotkey += wxT("<control>");
1378 hotkey += wxT("<shift>");
1407 hotkey += wxString::Format(wxT("F%d"), code - WXK_F1 + 1);
1414 hotkey << wxT("Insert" );
1417 hotkey << wxT("Delete" );
1420 hotkey << wxT("Up" );
1423 hotkey << wxT("Down" );
1426 hotkey << wxT("Page_Up" );
1429 hotkey << wxT("Page_Down" );
1432 hotkey << wxT("Left" );
1435 hotkey << wxT("Right" );
1438 hotkey << wxT("Home" );
1441 hotkey << wxT("End" );
1444 hotkey << wxT("Return" );
1447 hotkey << wxT("BackSpace" );
1450 hotkey << wxT("Tab" );
1453 hotkey << wxT("Esc" );
1456 hotkey << wxT("space" );
1459 hotkey << wxT("Multiply" );
1462 hotkey << wxT("Add" );
1465 hotkey << wxT("Separator" );
1468 hotkey << wxT("Subtract" );
1471 hotkey << wxT("Decimal" );
1474 hotkey << wxT("Divide" );
1477 hotkey << wxT("Cancel" );
1480 hotkey << wxT("Clear" );
1483 hotkey << wxT("Menu" );
1486 hotkey << wxT("Pause" );
1489 hotkey << wxT("Capital" );
1492 hotkey << wxT("Select" );
1495 hotkey << wxT("Print" );
1498 hotkey << wxT("Execute" );
1501 hotkey << wxT("Snapshot" );
1504 hotkey << wxT("Help" );
1507 hotkey << wxT("Num_Lock" );
1510 hotkey << wxT("Scroll_Lock" );
1513 hotkey << wxT("KP_Insert" );
1516 hotkey << wxT("KP_Delete" );
1519 hotkey << wxT("KP_Space" );
1522 hotkey << wxT("KP_Tab" );
1525 hotkey << wxT("KP_Enter" );
1529 hotkey += wxString::Format(wxT("KP_F%d"), code - WXK_NUMPAD_F1 + 1);
1532 hotkey << wxT("KP_Home" );
1535 hotkey << wxT("KP_Left" );
1538 hotkey << wxT("KP_Up" );
1541 hotkey << wxT("KP_Right" );
1544 hotkey << wxT("KP_Down" );
1547 hotkey << wxT("KP_Page_Up" );
1550 hotkey << wxT("KP_Page_Down" );
1553 hotkey << wxT("KP_End" );
1556 hotkey << wxT("KP_Begin" );
1559 hotkey << wxT("KP_Equal" );
1562 hotkey << wxT("KP_Multiply" );
1565 hotkey << wxT("KP_Add" );
1568 hotkey << wxT("KP_Separator" );
1571 hotkey << wxT("KP_Subtract" );
1574 hotkey << wxT("KP_Decimal" );
1577 hotkey << wxT("KP_Divide" );
1582 hotkey += wxString::Format(wxT("KP_%d"), code - WXK_NUMPAD0);
1585 hotkey << wxT("Super_L" );
1588 hotkey << wxT("Super_R" );
1591 hotkey << wxT("Menu" );
1594 hotkey << wxT("Command" );
1602 hotkey += wxString::Format(wxT("Special%d"), code - WXK_SPECIAL1 + 1);
1614 hotkey << name;
1625 return hotkey;