wxWidgets: Threading, and using the Clipboard
Two for one in this tutorial. We're going to create a thread using wxWidgets, and make it monitor the clipboard for text. Then, if we detect a change, we're going to add the new contents to a list.
It's a relatively simple process, but unfortunately wxWidgets isn't the most documented GUI toolkit out there.
So, let's get started. I'm gonna pile all the code into a single file instead of breaking my classes up into seperate files, just for ea...