Home | History | Annotate | Download | only in wx

Lines Matching refs:Append

101     fileMenu->Append(ID_NEW_WINDOW, _T("New Window\tCTRL+N"));
102 fileMenu->Append(ID_LOADFILE, _T("Open File...\tCTRL+O"));
103 fileMenu->Append(ID_LOADURL, _("Open Location...\tCTRL+L"));
104 fileMenu->Append(wxID_EXIT, _T("E&xit\tAlt-X"), _T("Quit this program"));
107 editMenu->Append(wxID_CUT, _T("Cut\tCTRL+X"));
108 editMenu->Append(wxID_COPY, _T("Copy\tCTRL+C"));
109 editMenu->Append(wxID_PASTE, _T("Paste\tCTRL+V"));
115 viewMenu->Append(ID_STOP, _("Stop"));
116 viewMenu->Append(ID_RELOAD, _("Reload Page"));
117 viewMenu->Append(ID_MAKE_TEXT_SMALLER, _("Make Text Smaller\tCTRL+-"));
118 viewMenu->Append(ID_MAKE_TEXT_LARGER, _("Make Text Bigger\tCTRL++"));
120 viewMenu->Append(ID_GET_SOURCE, _("View Page Source"));
124 m_debugMenu->Append(ID_SET_SOURCE, _("Test SetPageSource"));
125 m_debugMenu->Append(ID_RUN_SCRIPT, _("Test RunScript"));
129 helpMenu->Append(wxID_ABOUT, _T("&About...\tF1"), _T("Show about dialog"));
131 // now append the freshly created menu to the menu bar...
133 menuBar->Append(fileMenu, _T("&File"));
134 menuBar->Append(editMenu, _T("&Edit"));
135 menuBar->Append(viewMenu, _T("&View"));
136 menuBar->Append(helpMenu, _T("&Help"));