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

Lines Matching refs:menuText

472     wxMenu *menuText = new wxMenu;
473 menuText->Append(TEXT_ADD_SOME, _T("&Append some text\tCtrl-A"));
474 menuText->Append(TEXT_ADD_FREEZE, _T("&Append text with freeze/thaw\tShift-Ctrl-A"));
475 menuText->Append(TEXT_REMOVE, _T("&Remove first 10 characters\tCtrl-Y"));
476 menuText->Append(TEXT_REPLACE, _T("&Replace characters 4 to 8 with ABC\tCtrl-R"));
477 menuText->Append(TEXT_SELECT, _T("&Select characters 4 to 8\tCtrl-I"));
478 menuText->Append(TEXT_SET, _T("&Set the first text zone value\tCtrl-E"));
479 menuText->Append(TEXT_CHANGE, _T("&Change the first text zone value\tShift-Ctrl-E"));
480 menuText->AppendSeparator();
481 menuText->Append(TEXT_MOVE_ENDTEXT, _T("Move cursor to the end of &text"));
482 menuText->Append(TEXT_MOVE_ENDENTRY, _T("Move cursor to the end of &entry"));
483 menuText->AppendCheckItem(TEXT_SET_EDITABLE, _T("Toggle &editable state"));
484 menuText->AppendCheckItem(TEXT_SET_ENABLED, _T("Toggle e&nabled state"));
485 menuText->Check(TEXT_SET_EDITABLE, true);
486 menuText->Check(TEXT_SET_ENABLED, true);
487 menuText->AppendSeparator();
488 menuText->Append(TEXT_LINE_DOWN, _T("Scroll text one line down"));
489 menuText->Append(TEXT_LINE_UP, _T("Scroll text one line up"));
490 menuText->Append(TEXT_PAGE_DOWN, _T("Scroll text one page down"));
491 menuText->Append(TEXT_PAGE_UP, _T("Scroll text one page up"));
492 menuText->AppendSeparator();
493 menuText->Append(TEXT_GET_LINE, _T("Get the text of a line of the tabbed multiline"));
494 menuText->Append(TEXT_GET_LINELENGTH, _T("Get the length of a line of the tabbed multiline"));
495 menu_bar->Append(menuText, _T("Te&xt"));