Lines Matching refs:CreateAction

2294 …menu.addAction(CreateAction(menu_text, "Show Call Tree", lambda a=None, args=thread_at_time: self.…
4048 …menu.addAction(CreateAction("&Copy selection", "Copy to clipboard", lambda: CopyCellsToClipboardHd…
4049 …menu.addAction(CreateAction("Copy selection as CS&V", "Copy to clipboard as CSV", lambda: CopyCell…
4063 …menu.addAction(CreateAction('Copy "' + text + '"', "Copy to clipboard", lambda: QApplication.clipb…
4237 def CreateAction(label, tip, callback, parent=None, shortcut=None): function
4248 …return CreateAction("&Quit", "Exit the application", app.closeAllWindows, parent, QKeySequence.Qui…
4253 return CreateAction("Cl&ose", "Close the active window", mdi_area.closeActiveSubWindow, mdi_area)
4256 return CreateAction("Close &All", "Close all the windows", mdi_area.closeAllSubWindows, mdi_area)
4259 return CreateAction("&Tile", "Tile the windows", mdi_area.tileSubWindows, mdi_area)
4262 return CreateAction("&Cascade", "Cascade the windows", mdi_area.cascadeSubWindows, mdi_area)
4265 …return CreateAction("Ne&xt", "Move the focus to the next window", mdi_area.activateNextSubWindow, …
4268 …return CreateAction("Pre&vious", "Move the focus to the previous window", mdi_area.activatePreviou…
4629 …edit_menu.addAction(CreateAction("&Copy", "Copy to clipboard", self.CopyToClipboard, self, QKeySeq…
4630 …edit_menu.addAction(CreateAction("Copy as CS&V", "Copy to clipboard as CSV", self.CopyToClipboardC…
4631 edit_menu.addAction(CreateAction("&Find...", "Find items", self.Find, self, QKeySequence.Find))
4632 …edit_menu.addAction(CreateAction("Fetch &more records...", "Fetch more records", self.FetchMoreRec…
4633 …edit_menu.addAction(CreateAction("&Shrink Font", "Make text smaller", self.ShrinkFont, self, [QKey…
4634 …edit_menu.addAction(CreateAction("&Enlarge Font", "Make text bigger", self.EnlargeFont, self, [QKe…
4638 …reports_menu.addAction(CreateAction("Context-Sensitive Call &Graph", "Create a new window containi…
4641 …reports_menu.addAction(CreateAction("Call &Tree", "Create a new window containing a call tree", se…
4646 …reports_menu.addAction(CreateAction("&Top calls by elapsed time", "Create a new window displaying …
4650 …charts_menu.addAction(CreateAction("&Time chart by CPU", "Create a new window displaying time char…
4657 …help_menu.addAction(CreateAction("&Exported SQL Viewer Help", "Helpful information", self.Help, se…
4658 …help_menu.addAction(CreateAction("&About Exported SQL Viewer", "About this application", self.Abou…
4708 …reports_menu.addAction(CreateAction(label, "Create a new window displaying branch events", lambda …
4710 …reports_menu.addAction(CreateAction(label, "Create a new window displaying branch events", lambda …
4718 …table_menu.addAction(CreateAction(table, "Create a new window containing a table view", lambda a=N…