Is this possible to capture requests sent with QNetworkAccessManager by default ? Basically what I want it a SIGNAL that is emmited after user does lets say
Qt Code:
  1. QNetworkAccessManager::post
To copy to clipboard, switch view to plain text mode 
and retrieve post data. I know I can do this myself but I'm just wondering if such thing is already implemented. There is
Qt Code:
  1. QNetworkReply::operation()
To copy to clipboard, switch view to plain text mode 
but it just returns type. And QNetworkRequest doesn't store contents.