#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
//-----------------------------------------------------------------------------
// 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);
void OnChar( wxKeyEvent &event );
+#ifndef NO_TEXT_WINDOW_STREAM
int overflow(int i);
int sync();
int underflow();
wxTextCtrl& operator<<(float f);
wxTextCtrl& operator<<(double d);
wxTextCtrl& operator<<(const char c);
+#endif
void SetFont( const wxFont &font );
void SetForegroundColour(const wxColour &colour);
class wxLayoutConstraints;
class wxSizer;
+#if wxUSE_WX_RESOURCES
class wxResourceTable;
class wxItemResource;
+#endif
class wxClientData;
class wxVoidClientData;
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();
#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
//-----------------------------------------------------------------------------
// 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);
void OnChar( wxKeyEvent &event );
+#ifndef NO_TEXT_WINDOW_STREAM
int overflow(int i);
int sync();
int underflow();
wxTextCtrl& operator<<(float f);
wxTextCtrl& operator<<(double d);
wxTextCtrl& operator<<(const char c);
+#endif
void SetFont( const wxFont &font );
void SetForegroundColour(const wxColour &colour);
class wxLayoutConstraints;
class wxSizer;
+#if wxUSE_WX_RESOURCES
class wxResourceTable;
class wxItemResource;
+#endif
class wxClientData;
class wxVoidClientData;
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();
FILE *m_fp;
};
+#ifdef wxUSE_STD_IOSTREAM
// log everything to an "ostream", cerr by default
class WXDLLEXPORT wxLogStream : public wxLog
{
// @@ 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
{
wxLogTextCtrl(wxTextCtrl *pTextCtrl);
~wxLogTextCtrl();
};
+#endif
// ----------------------------------------------------------------------------
// GUI log target, the default one for wxWindows programs
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
#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)
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
// wxLogStream implementation
// ----------------------------------------------------------------------------
+#ifdef wxUSE_STD_IOSTREAM
wxLogStream::wxLogStream(ostream *ostr)
{
if ( ostr == NULL )
{
(*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))
{
delete m_ostr;
}
+#endif
// ----------------------------------------------------------------------------
// wxLogGui implementation
# define library sources
+
LIB_CPP_SRC=\
\
common/cmndata.cpp \
common/dbtable.cpp \
common/postscrp.cpp \
common/prntbase.cpp \
- common/resource.cpp \
common/serbase.cpp \
common/string.cpp \
common/textfile.cpp \
common/validate.cpp \
common/valtext.cpp \
common/variant.cpp \
- common/wxexpr.cpp \
common/socket.cpp \
common/sckaddr.cpp \
common/sckipc.cpp \
common/ftp.cpp \
common/url.cpp \
common/tokenzr.cpp \
+ common/resource.cpp \
+ common/wxexpr.cpp \
\
gtk/accel.cpp \
gtk/app.cpp \
#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"
#endif
*/
wxSystemSettings::Init();
- wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
-
+
wxTheFontNameDirectory = new wxFontNameDirectory;
wxTheFontNameDirectory->Initialize();
wxInitializeStockLists();
wxInitializeStockObjects();
+#ifdef wxUSE_WX_RESOURCES
+ wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
+
wxInitializeResourceSystem();
+#endif
wxImage::InitStandardHandlers();
wxDELETE(wxTheFontNameDirectory);
wxDeleteStockObjects();
+#ifdef wxUSE_WX_RESOURCES
wxFlushResources();
wxDELETE(wxTheResourceCache);
+
+ wxCleanUpResourceSystem();
+#endif
wxDeleteStockLists();
- wxCleanUpResourceSystem();
-
wxImage::CleanUpHandlers();
wxSystemSettings::Done();
else
{
/* the user pressed on the menu item -> report */
- item->m_isChecked; /* make consistent again */
+ item->m_isChecked = item->IsChecked(); /* make consistent again */
}
}
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()
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,
key_event.Skip();
}
+#ifndef NO_TEXT_WINDOW_STREAM
int wxTextCtrl::overflow( int WXUNUSED(c) )
{
int len = pptr() - pbase();
WriteText(buf);
return *this;
}
+#endif
GtkWidget* wxTextCtrl::GetConnectWidget()
{
#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"
#endif
*/
wxSystemSettings::Init();
- wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
-
+
wxTheFontNameDirectory = new wxFontNameDirectory;
wxTheFontNameDirectory->Initialize();
wxInitializeStockLists();
wxInitializeStockObjects();
+#ifdef wxUSE_WX_RESOURCES
+ wxTheResourceCache = new wxResourceCache(wxKEY_STRING);
+
wxInitializeResourceSystem();
+#endif
wxImage::InitStandardHandlers();
wxDELETE(wxTheFontNameDirectory);
wxDeleteStockObjects();
+#ifdef wxUSE_WX_RESOURCES
wxFlushResources();
wxDELETE(wxTheResourceCache);
+
+ wxCleanUpResourceSystem();
+#endif
wxDeleteStockLists();
- wxCleanUpResourceSystem();
-
wxImage::CleanUpHandlers();
wxSystemSettings::Done();
else
{
/* the user pressed on the menu item -> report */
- item->m_isChecked; /* make consistent again */
+ item->m_isChecked = item->IsChecked(); /* make consistent again */
}
}
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()
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,
key_event.Skip();
}
+#ifndef NO_TEXT_WINDOW_STREAM
int wxTextCtrl::overflow( int WXUNUSED(c) )
{
int len = pptr() - pbase();
WriteText(buf);
return *this;
}
+#endif
GtkWidget* wxTextCtrl::GetConnectWidget()
{