Lines Matching refs:CreateAction
2665 …menu.addAction(CreateAction("&Copy selection", "Copy to clipboard", lambda: CopyCellsToClipboardHd…
2666 …menu.addAction(CreateAction("Copy selection as CS&V", "Copy to clipboard as CSV", lambda: CopyCell…
2680 …menu.addAction(CreateAction('Copy "' + text + '"', "Copy to clipboard", lambda: QApplication.clipb…
2854 def CreateAction(label, tip, callback, parent=None, shortcut=None): function
2865 …return CreateAction("&Quit", "Exit the application", app.closeAllWindows, parent, QKeySequence.Qui…
2870 return CreateAction("Cl&ose", "Close the active window", mdi_area.closeActiveSubWindow, mdi_area)
2873 return CreateAction("Close &All", "Close all the windows", mdi_area.closeAllSubWindows, mdi_area)
2876 return CreateAction("&Tile", "Tile the windows", mdi_area.tileSubWindows, mdi_area)
2879 return CreateAction("&Cascade", "Cascade the windows", mdi_area.cascadeSubWindows, mdi_area)
2882 …return CreateAction("Ne&xt", "Move the focus to the next window", mdi_area.activateNextSubWindow, …
2885 …return CreateAction("Pre&vious", "Move the focus to the previous window", mdi_area.activatePreviou…
3222 …edit_menu.addAction(CreateAction("&Copy", "Copy to clipboard", self.CopyToClipboard, self, QKeySeq…
3223 …edit_menu.addAction(CreateAction("Copy as CS&V", "Copy to clipboard as CSV", self.CopyToClipboardC…
3224 edit_menu.addAction(CreateAction("&Find...", "Find items", self.Find, self, QKeySequence.Find))
3225 …edit_menu.addAction(CreateAction("Fetch &more records...", "Fetch more records", self.FetchMoreRec…
3226 …edit_menu.addAction(CreateAction("&Shrink Font", "Make text smaller", self.ShrinkFont, self, [QKey…
3227 …edit_menu.addAction(CreateAction("&Enlarge Font", "Make text bigger", self.EnlargeFont, self, [QKe…
3231 …reports_menu.addAction(CreateAction("Context-Sensitive Call &Graph", "Create a new window containi…
3234 …reports_menu.addAction(CreateAction("Call &Tree", "Create a new window containing a call tree", se…
3239 …reports_menu.addAction(CreateAction("&Top calls by elapsed time", "Create a new window displaying …
3246 …help_menu.addAction(CreateAction("&Exported SQL Viewer Help", "Helpful information", self.Help, se…
3247 …help_menu.addAction(CreateAction("&About Exported SQL Viewer", "About this application", self.Abou…
3297 …reports_menu.addAction(CreateAction(label, "Create a new window displaying branch events", lambda …
3299 …reports_menu.addAction(CreateAction(label, "Create a new window displaying branch events", lambda …
3304 …table_menu.addAction(CreateAction(table, "Create a new window containing a table view", lambda a=N…