GUI Fest Post Challenge: Multiple Counters

The "Multiple Counter" program shows a counter which can be incremented manually or periodically. The counter can at any time be copied, giving a new counter with its own independent state, which is copied from the old counter in the very moment of creation. A counter can also be linked, giving a new view to the same counter. One can think of the copying and linking as being analogous to ln and cp applied to files under Unix.

A counter view looks something like this:

+------------+
|            |
| +--------+ |
| |    0   | |
| +--------+ |
|            |
|            |
| +--------+ |
| | Manual | |
| +--------+ |
|            |
| +--------+ |
| |  Auto  | |
| +--------+ |
|            |
| +--------+ |
| |  Copy  | |
| +--------+ |
|            |
| +--------+ |
| |  Link  | |
| +--------+ |
+------------+      
It contains the following elements: If possible, it should be possible to distinguish counters that are linked - eg. links have the same background colour or window title, copies have a different colour or title, or perhaps by layout - links placed across the screen, copies placed down the screen.