| 737 | |
| 738 | |
| 739 | void UBWebController::paste() |
| 740 | { |
| 741 | if (mCurrentWebBrowser && mCurrentWebBrowser->currentTab()) |
| 742 | { |
| 743 | WebView* webView = mCurrentWebBrowser->currentTab(); |
| 744 | QAction *act = webView->pageAction(QWebEnginePage::Paste); |
| 745 | if(act) |
| 746 | act->trigger(); |
| 747 | } |
| 748 | } |
| 749 | |
| 750 | |
| 751 | void UBWebController::cut() |