--- this implementation if totally rought and for conceptual reviews only ---
This is more or less a gimmick.

I started this PR because i'd like to get some ideas and likes/dislikes to see if its worth continuing this.
Adds live information about the full node within a new Qt window.
- show the last recent blocks (3 blocks)
- show changes of the mempool
- show connected peers and sent/recv bytes in form of a line
Further ideas:
- calculate and show mempool rate (tx/s)
- color of the peer could change based on
CNode->nLastSendandCNode->nLastRecv - animation when updating (fading, move-in, etc.)
- mousover interaction (view only), tx details, peer details, etc.
Implementation Cleanup:
- data should go over
ClientModel - peers should use
- avoid updating of all elements
- make use of
CNodeCombinedStats - leak checking and performance opti.