31Oct/093
wxWidgets: Threading, and using the Clipboard
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 ease of navigation in this tutorial. The code is relatively short anyway, with only 62 lines. First off, as with any other program, we're going to want to get our includes done. We'll be needing three: The standard wx header, the clipboard header, and the thread header.#include <wx/wx.h> // standard wx header #include <wx/clipbrd.h> // clipboard - we'll monitor the clipboard for text #include <wx/thread.h> // include threads!
ClipLogger class - this will inherit wxThread, and have two variables: One to hold the most recent text that we got from the clipboard, and one which is a pointer to a wxListBox object -- the object on the main window which we'll be updating.
class ClipLogger : public wxThread { public: ClipLogger(wxListBox*); private: void* Entry(); // the entry point to the thread wxString LatestText; // store the last text so we can check for changes wxListBox* list; // the list to update on a text change };
ClipLogger::ClipLogger(wxListBox* l) { this->list = l; }
Entry() method of the class, like so:
void* ClipLogger::Entry() {
wxTextDataObject temp;while (true) {
wxSleep(int time), where time is the length of time to sleep in seconds.
wxSleep(1);
temp variable
- Update the list and remember this is the most recent (so as not to constantly add the same data to the list)
- Close the clipboard
if (wxTheClipboard->Open()) { // try to open the clipboard if (wxTheClipboard->IsSupported(wxDF_TEXT)) { // if the clipboard contains text wxTheClipboard->GetData(temp); // get the data from the clipboard if (this->LatestText != temp.GetText()) { // if it's changed, we want to update if (temp.GetText() != wxT("")) { // if it's not an empty string this->LatestText = temp.GetText(); // update the "LatestText" this->list->Append(temp.GetText()); // append to the list } } } } wxTheClipboard->Close(); // close the clipboard
} }
class threaded_app : public wxApp { public: bool OnInit(void); };
OnInit() should be nothing new at this point either.
bool threaded_app::OnInit(void) { // quickly create a wxFrame to display a window wxFrame* f = new wxFrame(NULL, wxID_ANY, wxT("Threaded App!")); // add a list to the frame we created wxListBox* list = new wxListBox(f, wxID_ANY); // display the frame f->Show(true);
OnInit() that we need to do is actually create an instance of our thread and run it, like so:
// pass the list to the clipboard monitor so it knows what to update ClipLogger* cl = new ClipLogger(list); // construct our thread cl->Create(); // we have to create a thread before we can run it cl->Run(); // run our thread
OnInit() and IMPLEMENT_APP:
return true; } IMPLEMENT_APP(threaded_app)
#include <wx/wx.h> // standard wx header #include <wx/clipbrd.h> // clipboard - we'll monitor the clipboard for text #include <wx/thread.h> // include threads! class ClipLogger : public wxThread { public: ClipLogger(wxListBox*); private: void* Entry(); // the entry point to the thread wxString LatestText; // store the last text so we can check for changes wxListBox* list; // the list to update on a text change }; ClipLogger::ClipLogger(wxListBox* l) { this->list = l; } void* ClipLogger::Entry() { wxTextDataObject temp; // create a "wxTextDataObject" to get the info from the clipboard while (true) { // our thread will loop wxSleep(1); // sleep for 1 second, make the thread less cpu-hungry if (wxTheClipboard->Open()) { // try to open the clipboard if (wxTheClipboard->IsSupported(wxDF_TEXT)) { // if the clipboard contains text wxTheClipboard->GetData(temp); // get the data from the clipboard if (this->LatestText != temp.GetText()) { // if it's changed, we want to update if (temp.GetText() != wxT("")) { // if it's not an empty string this->LatestText = temp.GetText(); // update the "LatestText" this->list->Append(temp.GetText()); // append to the list } } } } wxTheClipboard->Close(); // close the clipboard } } class threaded_app : public wxApp { public: bool OnInit(void); }; bool threaded_app::OnInit(void) { // quickly create a wxFrame to display a window wxFrame* f = new wxFrame(NULL, wxID_ANY, wxT("Threaded App!")); // add a list to the frame we created wxListBox* list = new wxListBox(f, wxID_ANY); // display the frame f->Show(true); // pass the list to the clipboard monitor so it knows what to update ClipLogger* cl = new ClipLogger(list); // construct our thread cl->Create(); // we have to create a thread before we can run it cl->Run(); // run our thread return true; } IMPLEMENT_APP(threaded_app)
Tagged as: c++, clipboard, gui design, Programming, threading, tutorial, wxWidgets
3 Comments
10Sep/092
wxWidgets: Keyboard Shortcuts without a Menu
Quick entry. Sort of a preview. I’m working on a tutorial for dream.in.code about creating keyboard shortcuts in a wxWidgets application (particularly using C++), and figured I’d share the code here, too.
(After I’ve finally gotten around to installing this syntax highlighting plugin for WordPress)
Aaaaannddd… Done!
Right. Back onto the original topic. Damn sidetracked mind. So, when I write a tutorial, I write a whole chunk of code first, and then add the tutorial content around it. Here’s the code for allocating keyboard shortcuts to do different stuff in wxWidgets without using menu items.
// basic setup code, I'll fly past this. If you're not familiar, check out this tutorial: // http://www.dreamincode.net/forums/showtopic66948.htm #include <wx/wx.h> class app : public wxApp { public: virtual bool OnInit(); private: wxTextCtrl* txt; wxCheckBox* chk; void key_shortcut(wxKeyEvent&); DECLARE_EVENT_TABLE() }; // if you're not familiar with events, check out this tutorial: // http://www.dreamincode.net/forums/showtopic67058.htm BEGIN_EVENT_TABLE(app, wxApp) EVT_KEY_DOWN(app::key_shortcut) END_EVENT_TABLE() bool app::OnInit() { wxFrame* win = new wxFrame(NULL, wxID_ANY, wxT("Keyboard Shortcuts, No Menu!"), wxDefaultPosition, wxSize(250, 125)); win->Show(true); this->txt = new wxTextCtrl(win, wxID_ANY, wxT("Press Ctrl+G to append text to me"), wxPoint(0,0), wxSize(250, 50), wxTE_MULTILINE); this->chk = new wxCheckBox(win, wxID_ANY, wxT("Press Ctrl+Left to toggle me."), wxPoint(0, 55), wxDefaultSize); return true; } // this is the method I'll be focusing on. The key_shortcut event which we create // to do fancy stuff without adding billions of menu items void app::key_shortcut(wxKeyEvent& e) { // of course, it doesn't have to be the control key. You can use others: // http://docs.wxwidgets.org/stable/wx_wxkeyevent.html if(e.GetModifiers() == wxMOD_CONTROL) { switch(e.GetKeyCode()) { case 'G': // can return the upper ASCII value of a key // do whatever you like for a Ctrl+G event here! this->txt->AppendText(wxT(" gabehabe ftw!")); break; case WXK_LEFT: // we also have special keycodes for non-ascii values. // get a full list of special keycodes here: // http://docs.wxwidgets.org/stable/wx_keycodes.html this->chk->SetValue(!this->chk->GetValue()); break; default: // do nothing break; } } } IMPLEMENT_APP(app)
Link to follow when the tutorial is completed and approved.
As promised, here’s the tutorial in all it’s glory:
wxWidgets keyboard shortcuts with no menu
Tagged as: c++, gui design, Programming, wxWidgets
2 Comments
Categories
Blogroll
People
- My other blog
- Beki Sutcliffe
- Charlie Baker
- Denis Delimarschi
- Derek Ackley
- Ian Mellett
- Joe Otero
- Josh Erickson
- Ryan Alford
- Cupcake Hax0r (I write here!)
Tags
Android
android development
android sdk
arkanoid
brainfuck
c++
chrome
cms
code
contest
cool stuff
equation parser
fail
formulas
google
google chrome
google wave
gui design
hacking
invite
java
layout.xml
lol
lolwut
monarch recruitment
networking
ohai
Programming
ps3
puzzle bobble
security
smartcalc
space invaders
square enix
strings.xml
threading
uncharted 2
wave
wep
wireless
wordpress
wordpress widget
WTF
wxWidgets
xml