]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/thread/test.cpp
minValue and maxValue are interpreted correctly in SetRange() (were inversed)
[wxWidgets.git] / samples / thread / test.cpp
index 21730f7da7932a025fc7b4d7a60da96cef026c4d..279a3d98b1bfc2113d67e7c0731c36e9cb5012f5 100644 (file)
@@ -35,6 +35,8 @@ class MyApp: public wxApp
     bool OnInit(void);
 };
 
+wxMutex text_mutex;
+
 WX_DEFINE_ARRAY(wxThread *,wxArrayThread);
 
 // Define a new frame type
@@ -83,7 +85,9 @@ void *MyThread::Entry()
 
   while (1) {
     TestDestroy();
+    text_mutex.Lock();
     m_frame->m_txtctrl->WriteText(text);
+    text_mutex.Unlock();
     wxSleep(1);
   }
   
@@ -113,15 +117,7 @@ IMPLEMENT_APP      (MyApp)
 bool MyApp::OnInit(void)
 {
   // Create the main frame window
-  MyFrame *frame = new MyFrame(NULL, "Minimal wxWindows App", 50, 50, 450, 340);
-
-  // Give it an icon
-#ifdef __WXMSW__
-  frame->SetIcon(wxIcon("AIAI"));
-#endif
-#ifdef __X__
-  frame->SetIcon(wxIcon("aiai.xbm"));
-#endif
+  MyFrame *frame = new MyFrame((wxFrame *) NULL, (char *) "Minimal wxWindows App", 50, 50, 450, 340);
 
   // Make a menubar
   wxMenu *file_menu = new wxMenu;
@@ -157,7 +153,7 @@ MyFrame::MyFrame(wxFrame *frame, char *title, int x, int y, int w, int h):
   wxFrame(frame, -1, title, wxPoint(x, y), wxSize(w, h))
 {}
 
-void MyFrame::OnStartThread(wxCommandEvent& event)
+void MyFrame::OnStartThread(wxCommandEvent& WXUNUSED(event) )
 {
   MyThread *thread = new MyThread(this);
 
@@ -166,9 +162,9 @@ void MyFrame::OnStartThread(wxCommandEvent& event)
   m_threads.Add(thread);
 }
 
-void MyFrame::OnStopThread(wxCommandEvent& event)
+void MyFrame::OnStopThread(wxCommandEvent& WXUNUSED(event) )
 {
-  uint no_thrd = m_threads.Count()-1;
+  int no_thrd = m_threads.Count()-1;
 
   if (no_thrd < 0)
     return;
@@ -177,18 +173,18 @@ void MyFrame::OnStopThread(wxCommandEvent& event)
   m_threads.Remove(no_thrd);
 }
 
-void MyFrame::OnPauseThread(wxCommandEvent& event)
+void MyFrame::OnPauseThread(wxCommandEvent& WXUNUSED(event) )
 {}
 
-void MyFrame::OnQuit(wxCommandEvent& event)
+void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event) )
 {
-  uint i;
+  unsigned int i;
   for (i=0;i<m_threads.Count();i++)
     delete (m_threads[i]);
   Close(TRUE);
 }
 
-void MyFrame::OnAbout(wxCommandEvent& event)
+void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
 {
   wxMessageDialog dialog(this, "wxThread sample (based on minimal)\nJulian Smart and Guilhem Lavaux",
        "About wxThread sample", wxYES_NO|wxCANCEL);