]> Creatis software - bbtk.git/blob - kernel/src/bbtkWx.cxx
Initial revision
[bbtk.git] / kernel / src / bbtkWx.cxx
1 #ifdef _USE_WXWIDGETS_
2
3 #include "bbtkWx.h"
4 #include "bbtkMessageManager.h"
5
6 namespace bbtk
7 {
8   void wx::ResetCursor() 
9   {
10     bbtkDebugMessage("Wx",9,"wx::ResetCursor()"<<std::endl);
11     while (wxIsBusy()) ::wxEndBusyCursor();
12   }
13   void wx::BeginBusyCursor() 
14   {
15     bbtkDebugMessage("Wx",9,"wx::BeginBusyCursor()"<<std::endl);
16     ::wxBeginBusyCursor();
17   }
18   void wx::EndBusyCursor()
19   {
20     bbtkDebugMessage("Wx",9,"wx::EndBusyCursor()"<<std::endl);
21     ::wxEndBusyCursor();
22   }
23   
24
25 }
26
27 #endif