]> git.saurik.com Git - wxWidgets.git/commitdiff
Proofed that iostreams break threads
authorRobert Roebling <robert@roebling.de>
Sun, 3 Jan 1999 16:54:26 +0000 (16:54 +0000)
committerRobert Roebling <robert@roebling.de>
Sun, 3 Jan 1999 16:54:26 +0000 (16:54 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1313 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

15 files changed:
include/wx/gtk/textctrl.h
include/wx/gtk/window.h
include/wx/gtk1/textctrl.h
include/wx/gtk1/window.h
include/wx/log.h
setup/maketmpl.in
src/common/filefn.cpp
src/common/log.cpp
src/gtk.inc
src/gtk/app.cpp
src/gtk/menu.cpp
src/gtk/textctrl.cpp
src/gtk1/app.cpp
src/gtk1/menu.cpp
src/gtk1/textctrl.cpp

index 061e82e3bd0e86f48a66fd5c94d31fe770e63420..cc3ad2a303a7c58f7cdbe306b9e2ce8f8ef33410 100644 (file)
 #include "wx/string.h"
 #include "wx/control.h"
 
+#ifdef wxUSE_STD_IOSTREAM
+
 #if wxUSE_IOSTREAMH
 #include <iostream.h>
 #else
 #include <iostream>
 #endif
 
+#else
+
+#define NO_TEXT_WINDOW_STREAM
+
+#endif
+
 //-----------------------------------------------------------------------------
 // classes
 //-----------------------------------------------------------------------------
@@ -43,7 +51,11 @@ extern const char *wxTextCtrlNameStr;
 //  wxTextCtrl
 //-----------------------------------------------------------------------------
 
+#ifndef NO_TEXT_WINDOW_STREAM
 class wxTextCtrl: public wxControl, public streambuf
+#else
+class wxTextCtrl: public wxControl
+#endif
 {
   DECLARE_EVENT_TABLE()
   DECLARE_DYNAMIC_CLASS(wxTextCtrl);
@@ -89,6 +101,7 @@ class wxTextCtrl: public wxControl, public streambuf
 
     void OnChar( wxKeyEvent &event );
 
+#ifndef NO_TEXT_WINDOW_STREAM
     int overflow(int i);
     int sync();
     int underflow();
@@ -99,6 +112,7 @@ class wxTextCtrl: public wxControl, public streambuf
     wxTextCtrl& operator<<(float f);
     wxTextCtrl& operator<<(double d);
     wxTextCtrl& operator<<(const char c);
+#endif
 
     void SetFont( const wxFont &font );
     void SetForegroundColour(const wxColour &colour);
index fc4a1e35e2869cb5ecca0730d81d1353b4af730e..833f5d23751433bed15455ff89e9fb92095bb7a5 100644 (file)
@@ -40,8 +40,10 @@ extern wxList wxTopLevelWindows;
 
 class wxLayoutConstraints;
 class wxSizer;
+#if wxUSE_WX_RESOURCES
 class wxResourceTable;
 class wxItemResource;
+#endif
 
 class wxClientData;
 class wxVoidClientData;
@@ -120,10 +122,12 @@ public:
            const wxString& name = wxPanelNameStr);
   virtual ~wxWindow();
 
+#if wxUSE_WX_RESOURCES
   virtual bool LoadFromResource( wxWindow *parent, const wxString& resourceName,
                                  const wxResourceTable *table = (const wxResourceTable *) NULL);
   virtual wxControl *CreateItem(const wxItemResource* childResource, const wxItemResource* parentResource,
                                  const wxResourceTable *table = (const wxResourceTable *) NULL);
+#endif
 
   bool Close( bool force = FALSE );
   virtual bool Destroy();
index 061e82e3bd0e86f48a66fd5c94d31fe770e63420..cc3ad2a303a7c58f7cdbe306b9e2ce8f8ef33410 100644 (file)
 #include "wx/string.h"
 #include "wx/control.h"
 
+#ifdef wxUSE_STD_IOSTREAM
+
 #if wxUSE_IOSTREAMH
 #include <iostream.h>
 #else
 #include <iostream>
 #endif
 
+#else
+
+#define NO_TEXT_WINDOW_STREAM
+
+#endif
+
 //-----------------------------------------------------------------------------
 // classes
 //-----------------------------------------------------------------------------
@@ -43,7 +51,11 @@ extern const char *wxTextCtrlNameStr;
 //  wxTextCtrl
 //-----------------------------------------------------------------------------
 
+#ifndef NO_TEXT_WINDOW_STREAM
 class wxTextCtrl: public wxControl, public streambuf
+#else
+class wxTextCtrl: public wxControl
+#endif
 {
   DECLARE_EVENT_TABLE()
   DECLARE_DYNAMIC_CLASS(wxTextCtrl);
@@ -89,6 +101,7 @@ class wxTextCtrl: public wxControl, public streambuf
 
     void OnChar( wxKeyEvent &event );
 
+#ifndef NO_TEXT_WINDOW_STREAM
     int overflow(int i);
     int sync();
     int underflow();
@@ -99,6 +112,7 @@ class wxTextCtrl: public wxControl, public streambuf
     wxTextCtrl& operator<<(float f);
     wxTextCtrl& operator<<(double d);
     wxTextCtrl& operator<<(const char c);
+#endif
 
     void SetFont( const wxFont &font );
     void SetForegroundColour(const wxColour &colour);
index fc4a1e35e2869cb5ecca0730d81d1353b4af730e..833f5d23751433bed15455ff89e9fb92095bb7a5 100644 (file)
@@ -40,8 +40,10 @@ extern wxList wxTopLevelWindows;
 
 class wxLayoutConstraints;
 class wxSizer;
+#if wxUSE_WX_RESOURCES
 class wxResourceTable;
 class wxItemResource;
+#endif
 
 class wxClientData;
 class wxVoidClientData;
@@ -120,10 +122,12 @@ public:
            const wxString& name = wxPanelNameStr);
   virtual ~wxWindow();
 
+#if wxUSE_WX_RESOURCES
   virtual bool LoadFromResource( wxWindow *parent, const wxString& resourceName,
                                  const wxResourceTable *table = (const wxResourceTable *) NULL);
   virtual wxControl *CreateItem(const wxItemResource* childResource, const wxItemResource* parentResource,
                                  const wxResourceTable *table = (const wxResourceTable *) NULL);
+#endif
 
   bool Close( bool force = FALSE );
   virtual bool Destroy();
index 32c9b1f0e8905acaa2a204c32f8dd3737f4b3aee..074adb078f6f0e405f6ecf5a86881553482d7a80 100644 (file)
@@ -180,6 +180,7 @@ private:
   FILE *m_fp;
 };
 
+#ifdef wxUSE_STD_IOSTREAM
 // log everything to an "ostream", cerr by default
 class WXDLLEXPORT wxLogStream : public wxLog
 {
@@ -194,9 +195,11 @@ protected:
   // @@ using ptr here to avoid including <iostream.h> from this file
   ostream *m_ostr;
 };
+#endif
 
 #ifndef wxUSE_NOGUI
 
+#ifdef wxUSE_STD_IOSTREAM
 // log everything to a text window (GUI only of course)
 class WXDLLEXPORT wxLogTextCtrl : public wxLogStream
 {
@@ -205,6 +208,7 @@ public:
   wxLogTextCtrl(wxTextCtrl *pTextCtrl);
  ~wxLogTextCtrl();
 };
+#endif
 
 // ----------------------------------------------------------------------------
 // GUI log target, the default one for wxWindows programs
index 799888f21822b5473c78b907c6b6787201af2e8f..c4f007c35ab2fd7229645da87e1518b83c645fe6 100644 (file)
@@ -33,11 +33,11 @@ DEBUG = @WXDEBUG@ @WXDEBUG_DEFINE@
 CC = @CC@
 CPP = @CPP@
 CPPFLAGS=@CPPFLAGS@
-CFLAGS = @CFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
+CFLAGS = @CFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG) -D_REENTRANT
 
 # c++-compiler stuff
 CXX = @CXX@
-CXXFLAGS = @CXXFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG)
+CXXFLAGS = @CXXFLAGS@ $(CPPFLAGS) $(OPTIMISE) $(PROFILE) $(DEBUG) -D_REENTRANT
 CXXCPP = @CXXCPP@
 
 # shared compile stuff
index af885044bd1073ba3e1e821032eef72b69ec444d..7716488573f99eadfa32499b43bea7d5683413e8 100644 (file)
@@ -75,6 +75,7 @@
 #endif
 
 #include "wx/setup.h"
+#include "wx/log.h"
 
 // No, Cygwin doesn't appear to have fnmatch.h after all.
 #if defined(HAVE_FNMATCH_H)
@@ -1091,7 +1092,7 @@ char *wxGetTempFileName(const wxString& prefix, char *buf)
          return buf;
        }
     }
-  cerr << _("wxWindows: error finding temporary file name.\n");
+  wxLogError( _("wxWindows: error finding temporary file name.\n") );
   if (buf) buf[0] = 0;
   return (char *) NULL;
 #endif
index f92320b0f81535a94f28c687a17d0bc8222c6761..7e7d4f856662f06b181301dd8a01ab418f504182 100644 (file)
@@ -389,6 +389,7 @@ void wxLogStderr::DoLogString(const char *szString)
 // wxLogStream implementation
 // ----------------------------------------------------------------------------
 
+#ifdef wxUSE_STD_IOSTREAM
 wxLogStream::wxLogStream(ostream *ostr)
 {
   if ( ostr == NULL )
@@ -401,15 +402,17 @@ void wxLogStream::DoLogString(const char *szString)
 {
   (*m_ostr) << szString << endl << flush;
 }
+#endif
 
 #ifndef   wxUSE_NOGUI
+
 // ----------------------------------------------------------------------------
 // wxLogTextCtrl implementation
 // ----------------------------------------------------------------------------
-wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl *pTextCtrl)
-// @@@ TODO: in wxGTK wxTextCtrl doesn't derive from streambuf
 
-// Also, in DLL mode in wxMSW, can't use it.
+#ifdef wxUSE_STD_IOSTREAM
+wxLogTextCtrl::wxLogTextCtrl(wxTextCtrl *pTextCtrl)
+// DLL mode in wxMSW, can't use it.
 #if defined(NO_TEXT_WINDOW_STREAM)
 #else
              : wxLogStream(new ostream(pTextCtrl))
@@ -421,6 +424,7 @@ wxLogTextCtrl::~wxLogTextCtrl()
 {
   delete m_ostr;
 }
+#endif
 
 // ----------------------------------------------------------------------------
 // wxLogGui implementation
index f0179c8f59b6527292bca92d04a35a3acf778f5c..974a86ad3dbf3b07253d8aa50673a319d029cd3e 100644 (file)
@@ -8,6 +8,7 @@ LIB_MINOR=1
 
 # define library sources
 
+
 LIB_CPP_SRC=\
 \
  common/cmndata.cpp \
@@ -38,7 +39,6 @@ LIB_CPP_SRC=\
  common/dbtable.cpp \
  common/postscrp.cpp \
  common/prntbase.cpp \
- common/resource.cpp \
  common/serbase.cpp \
  common/string.cpp \
  common/textfile.cpp \
@@ -57,7 +57,6 @@ LIB_CPP_SRC=\
  common/validate.cpp \
  common/valtext.cpp \
  common/variant.cpp \
- common/wxexpr.cpp \
  common/socket.cpp \
  common/sckaddr.cpp \
  common/sckipc.cpp \
@@ -66,6 +65,8 @@ LIB_CPP_SRC=\
  common/ftp.cpp \
  common/url.cpp \
  common/tokenzr.cpp \
+ common/resource.cpp \
+ common/wxexpr.cpp \
 \
  gtk/accel.cpp \
  gtk/app.cpp \
index 13757a06a73386d38564c02b345886ae832f3fd1..87715dd428fe3dec8e381d5ec8da03d8d1ca7dd1 100644 (file)
@@ -19,7 +19,9 @@
 #include "wx/memory.h"
 #include "wx/font.h"
 #include "wx/settings.h"
+#ifdef wxUSE_WX_RESOURCES
 #include "wx/resource.h"
+#endif
 #include "wx/module.h"
 #include "wx/image.h"
 #include "wx/thread.h"
@@ -320,8 +322,7 @@ void wxApp::CommonInit(void)
 #endif
 */
   wxSystemSettings::Init();
-  wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
-
+  
   wxTheFontNameDirectory =  new wxFontNameDirectory;
   wxTheFontNameDirectory->Initialize();
 
@@ -331,7 +332,11 @@ void wxApp::CommonInit(void)
   wxInitializeStockLists();
   wxInitializeStockObjects();
 
+#ifdef wxUSE_WX_RESOURCES
+  wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
+  
   wxInitializeResourceSystem();
+#endif
 
   wxImage::InitStandardHandlers();
 
@@ -344,14 +349,16 @@ void wxApp::CommonCleanUp(void)
     wxDELETE(wxTheFontNameDirectory);
     wxDeleteStockObjects();
 
+#ifdef wxUSE_WX_RESOURCES
     wxFlushResources();
 
     wxDELETE(wxTheResourceCache);
+    
+    wxCleanUpResourceSystem();
+#endif
 
     wxDeleteStockLists();
 
-    wxCleanUpResourceSystem();
-
     wxImage::CleanUpHandlers();
 
     wxSystemSettings::Done();
index 147c0d5a1c267f5e01c2993650a8e29fce10065e..50fff7313235c5129960e8db24fb60bf7ad703c6 100644 (file)
@@ -180,7 +180,7 @@ static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu )
        else
        {
            /* the user pressed on the menu item -> report */
-           item->m_isChecked;  /* make consistent again */
+           item->m_isChecked = item->IsChecked();  /* make consistent again */
        }
     }
 
index ea17cd1920e3abe2b0cb175c5b91d077496abe8b..401fd4d460cd66ced91e15cc973198ef2ebc6deb 100644 (file)
@@ -68,13 +68,21 @@ BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
     EVT_CHAR(wxTextCtrl::OnChar)
 END_EVENT_TABLE()
 
+#ifndef NO_TEXT_WINDOW_STREAM
 wxTextCtrl::wxTextCtrl() : streambuf()
 {
     if (allocate()) setp(base(),ebuf());
 
     m_modified = FALSE;
 }
+#else
+wxTextCtrl::wxTextCtrl()
+{
+    m_modified = FALSE;
+}
+#endif
 
+#ifndef NO_TEXT_WINDOW_STREAM
 wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value,
       const wxPoint &pos, const wxSize &size,
       int style, const wxValidator& validator, const wxString &name ) : streambuf()
@@ -84,6 +92,15 @@ wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value,
     m_modified = FALSE;
     Create( parent, id, value, pos, size, style, validator, name );
 }
+#else
+wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value,
+      const wxPoint &pos, const wxSize &size,
+      int style, const wxValidator& validator, const wxString &name )
+{
+    m_modified = FALSE;
+    Create( parent, id, value, pos, size, style, validator, name );
+}
+#endif
 
 bool wxTextCtrl::Create( wxWindow *parent, wxWindowID id, const wxString &value,
       const wxPoint &pos, const wxSize &size,
@@ -621,6 +638,7 @@ void wxTextCtrl::OnChar( wxKeyEvent &key_event )
     key_event.Skip();
 }
 
+#ifndef NO_TEXT_WINDOW_STREAM
 int wxTextCtrl::overflow( int WXUNUSED(c) )
 {
     int len = pptr() - pbase();
@@ -697,6 +715,7 @@ wxTextCtrl& wxTextCtrl::operator<<(const char c)
     WriteText(buf);
     return *this;
 }
+#endif
 
 GtkWidget* wxTextCtrl::GetConnectWidget()
 {
index 13757a06a73386d38564c02b345886ae832f3fd1..87715dd428fe3dec8e381d5ec8da03d8d1ca7dd1 100644 (file)
@@ -19,7 +19,9 @@
 #include "wx/memory.h"
 #include "wx/font.h"
 #include "wx/settings.h"
+#ifdef wxUSE_WX_RESOURCES
 #include "wx/resource.h"
+#endif
 #include "wx/module.h"
 #include "wx/image.h"
 #include "wx/thread.h"
@@ -320,8 +322,7 @@ void wxApp::CommonInit(void)
 #endif
 */
   wxSystemSettings::Init();
-  wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
-
+  
   wxTheFontNameDirectory =  new wxFontNameDirectory;
   wxTheFontNameDirectory->Initialize();
 
@@ -331,7 +332,11 @@ void wxApp::CommonInit(void)
   wxInitializeStockLists();
   wxInitializeStockObjects();
 
+#ifdef wxUSE_WX_RESOURCES
+  wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
+  
   wxInitializeResourceSystem();
+#endif
 
   wxImage::InitStandardHandlers();
 
@@ -344,14 +349,16 @@ void wxApp::CommonCleanUp(void)
     wxDELETE(wxTheFontNameDirectory);
     wxDeleteStockObjects();
 
+#ifdef wxUSE_WX_RESOURCES
     wxFlushResources();
 
     wxDELETE(wxTheResourceCache);
+    
+    wxCleanUpResourceSystem();
+#endif
 
     wxDeleteStockLists();
 
-    wxCleanUpResourceSystem();
-
     wxImage::CleanUpHandlers();
 
     wxSystemSettings::Done();
index 147c0d5a1c267f5e01c2993650a8e29fce10065e..50fff7313235c5129960e8db24fb60bf7ad703c6 100644 (file)
@@ -180,7 +180,7 @@ static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu )
        else
        {
            /* the user pressed on the menu item -> report */
-           item->m_isChecked;  /* make consistent again */
+           item->m_isChecked = item->IsChecked();  /* make consistent again */
        }
     }
 
index ea17cd1920e3abe2b0cb175c5b91d077496abe8b..401fd4d460cd66ced91e15cc973198ef2ebc6deb 100644 (file)
@@ -68,13 +68,21 @@ BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
     EVT_CHAR(wxTextCtrl::OnChar)
 END_EVENT_TABLE()
 
+#ifndef NO_TEXT_WINDOW_STREAM
 wxTextCtrl::wxTextCtrl() : streambuf()
 {
     if (allocate()) setp(base(),ebuf());
 
     m_modified = FALSE;
 }
+#else
+wxTextCtrl::wxTextCtrl()
+{
+    m_modified = FALSE;
+}
+#endif
 
+#ifndef NO_TEXT_WINDOW_STREAM
 wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value,
       const wxPoint &pos, const wxSize &size,
       int style, const wxValidator& validator, const wxString &name ) : streambuf()
@@ -84,6 +92,15 @@ wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value,
     m_modified = FALSE;
     Create( parent, id, value, pos, size, style, validator, name );
 }
+#else
+wxTextCtrl::wxTextCtrl( wxWindow *parent, wxWindowID id, const wxString &value,
+      const wxPoint &pos, const wxSize &size,
+      int style, const wxValidator& validator, const wxString &name )
+{
+    m_modified = FALSE;
+    Create( parent, id, value, pos, size, style, validator, name );
+}
+#endif
 
 bool wxTextCtrl::Create( wxWindow *parent, wxWindowID id, const wxString &value,
       const wxPoint &pos, const wxSize &size,
@@ -621,6 +638,7 @@ void wxTextCtrl::OnChar( wxKeyEvent &key_event )
     key_event.Skip();
 }
 
+#ifndef NO_TEXT_WINDOW_STREAM
 int wxTextCtrl::overflow( int WXUNUSED(c) )
 {
     int len = pptr() - pbase();
@@ -697,6 +715,7 @@ wxTextCtrl& wxTextCtrl::operator<<(const char c)
     WriteText(buf);
     return *this;
 }
+#endif
 
 GtkWidget* wxTextCtrl::GetConnectWidget()
 {