compilation fixes for non default wxUSE_XXX values (patch 662781)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -475,6 +475,7 @@ bool wxAppBase::CheckBuildOptions(const wxBuildOptions& opts)
|
||||
|
||||
static void LINKAGEMODE SetTraceMasks()
|
||||
{
|
||||
#if wxUSE_LOG
|
||||
wxString mask;
|
||||
if ( wxGetEnv(wxT("WXTRACE"), &mask) )
|
||||
{
|
||||
@@ -482,6 +483,7 @@ static void LINKAGEMODE SetTraceMasks()
|
||||
while ( tkn.HasMoreTokens() )
|
||||
wxLog::AddTraceMask(tkn.GetNextToken());
|
||||
}
|
||||
#endif // wxUSE_LOG
|
||||
}
|
||||
|
||||
// wxASSERT() helper
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#if wxUSE_MDI_ARCHITECTURE && wxUSE_DOC_VIEW_ARCHITECTURE
|
||||
#if wxUSE_MDI_ARCHITECTURE
|
||||
|
||||
#include "wx/docmdi.h"
|
||||
|
||||
|
||||
@@ -894,7 +894,7 @@ wxList *wxFTP::GetList(const wxString& wildcard, bool details)
|
||||
{
|
||||
wxSocketBase *sock = GetPort();
|
||||
if (!sock)
|
||||
return FALSE;
|
||||
return NULL;
|
||||
wxList *file_list = new wxList;
|
||||
wxString line;
|
||||
// NLST : List of Filenames (including Directory's !)
|
||||
|
||||
@@ -152,6 +152,7 @@ void wxRect2DDouble::ConstrainTo( const wxRect2DDouble &rect )
|
||||
|
||||
// wxPoint2D
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
void wxPoint2DInt::WriteTo( wxDataOutputStream &stream ) const
|
||||
{
|
||||
stream.Write32( m_x );
|
||||
@@ -163,6 +164,7 @@ void wxPoint2DInt::ReadFrom( wxDataInputStream &stream )
|
||||
m_x = stream.Read32();
|
||||
m_y = stream.Read32();
|
||||
}
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
wxDouble wxPoint2DInt::GetVectorAngle() const
|
||||
{
|
||||
@@ -338,6 +340,7 @@ wxRect2DInt& wxRect2DInt::operator=( const wxRect2DInt &r )
|
||||
return *this;
|
||||
}
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
void wxRect2DInt::WriteTo( wxDataOutputStream &stream ) const
|
||||
{
|
||||
stream.Write32( m_x );
|
||||
@@ -353,5 +356,6 @@ void wxRect2DInt::ReadFrom( wxDataInputStream &stream )
|
||||
m_width = stream.Read32();
|
||||
m_height = stream.Read32();
|
||||
}
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
#endif // wxUSE_GEOMETRY
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
#include "wx/defs.h"
|
||||
|
||||
#if wxUSE_IMAGE && wxUSE_STREAMS
|
||||
#if wxUSE_IMAGE
|
||||
|
||||
#include "wx/imagbmp.h"
|
||||
#include "wx/bitmap.h"
|
||||
@@ -52,6 +52,8 @@
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxBMPHandler,wxImageHandler)
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
|
||||
#ifndef BI_RGB
|
||||
#define BI_RGB 0
|
||||
#define BI_RLE8 1
|
||||
@@ -964,6 +966,8 @@ bool wxBMPHandler::DoCanRead(wxInputStream& stream)
|
||||
return hdr[0] == 'B' && hdr[1] == 'M';
|
||||
}
|
||||
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
|
||||
#if wxUSE_ICO_CUR
|
||||
//-----------------------------------------------------------------------------
|
||||
@@ -972,6 +976,8 @@ bool wxBMPHandler::DoCanRead(wxInputStream& stream)
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxICOHandler, wxBMPHandler)
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
|
||||
struct ICONDIRENTRY
|
||||
{
|
||||
wxUint8 bWidth; // Width of the image
|
||||
@@ -1288,6 +1294,7 @@ bool wxICOHandler::DoCanRead(wxInputStream& stream)
|
||||
return hdr[0] == '\0' && hdr[1] == '\0' && hdr[2] == '\1' && hdr[3] == '\0';
|
||||
}
|
||||
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
@@ -1296,6 +1303,8 @@ bool wxICOHandler::DoCanRead(wxInputStream& stream)
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxCURHandler, wxICOHandler)
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
|
||||
bool wxCURHandler::DoCanRead(wxInputStream& stream)
|
||||
{
|
||||
stream.SeekI(0);
|
||||
@@ -1307,12 +1316,16 @@ bool wxCURHandler::DoCanRead(wxInputStream& stream)
|
||||
return hdr[0] == '\0' && hdr[1] == '\0' && hdr[2] == '\2' && hdr[3] == '\0';
|
||||
}
|
||||
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxANIHandler
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxANIHandler, wxCURHandler)
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
|
||||
bool wxANIHandler::LoadFile(wxImage *image, wxInputStream& stream,
|
||||
bool verbose, int index)
|
||||
{
|
||||
@@ -1470,6 +1483,8 @@ int wxANIHandler::GetImageCount(wxInputStream& stream)
|
||||
return wxNOT_FOUND;
|
||||
}
|
||||
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
#endif // wxUSE_ICO_CUR
|
||||
|
||||
#endif // wxUSE_IMAGE && wxUSE_STREAMS
|
||||
#endif // wxUSE_IMAGE
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
# include "wx/defs.h"
|
||||
#endif
|
||||
|
||||
#if wxUSE_IMAGE && wxUSE_STREAMS && wxUSE_PCX
|
||||
#if wxUSE_IMAGE && wxUSE_PCX
|
||||
|
||||
#include "wx/imagpcx.h"
|
||||
#include "wx/wfstream.h"
|
||||
@@ -35,6 +35,14 @@
|
||||
#include "wx/list.h"
|
||||
#include "wx/object.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxPCXHandler
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxPCXHandler,wxImageHandler)
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// RLE encoding and decoding
|
||||
//-----------------------------------------------------------------------------
|
||||
@@ -429,8 +437,6 @@ int SavePCX(wxImage *image, wxOutputStream& stream)
|
||||
// wxPCXHandler
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxPCXHandler,wxImageHandler)
|
||||
|
||||
bool wxPCXHandler::LoadFile( wxImage *image, wxInputStream& stream, bool verbose, int WXUNUSED(index) )
|
||||
{
|
||||
int error;
|
||||
@@ -494,5 +500,7 @@ bool wxPCXHandler::DoCanRead( wxInputStream& stream )
|
||||
return c == 10;
|
||||
}
|
||||
|
||||
#endif // wxUSE_STREAMS && wxUSE_PCX
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
#endif // wxUSE_IMAGE && wxUSE_PCX
|
||||
|
||||
|
||||
@@ -54,7 +54,7 @@
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxPNGHandler,wxImageHandler)
|
||||
|
||||
#if wxUSE_LIBPNG
|
||||
#if wxUSE_STREAMS
|
||||
|
||||
#ifndef PNGLINKAGEMODE
|
||||
#ifdef __WATCOMC__
|
||||
|
||||
@@ -47,6 +47,8 @@ extern "C"
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxTIFFHandler,wxImageHandler)
|
||||
|
||||
#if wxUSE_STREAMS
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
||||
@@ -377,8 +379,7 @@ bool wxTIFFHandler::DoCanRead( wxInputStream& stream )
|
||||
(hdr[0] == 'M' && hdr[1] == 'M');
|
||||
}
|
||||
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
#endif
|
||||
// wxUSE_LIBTIFF
|
||||
|
||||
#endif // wxUSE_LIBTIFF
|
||||
|
||||
|
||||
@@ -1069,6 +1069,7 @@ wxString wxGetCurrentDir()
|
||||
// wxDoExecuteWithCapture() helper: reads an entire stream into one array
|
||||
//
|
||||
// returns TRUE if ok, FALSE if error
|
||||
#if wxUSE_STREAMS
|
||||
static bool ReadAll(wxInputStream *is, wxArrayString& output)
|
||||
{
|
||||
wxCHECK_MSG( is, FALSE, _T("NULL stream in wxExecute()?") );
|
||||
@@ -1097,6 +1098,7 @@ static bool ReadAll(wxInputStream *is, wxArrayString& output)
|
||||
|
||||
return cont;
|
||||
}
|
||||
#endif // wxUSE_STREAMS
|
||||
|
||||
// this is a private function because it hasn't a clean interface: the first
|
||||
// array is passed by reference, the second by pointer - instead we have 2
|
||||
|
||||
@@ -1177,7 +1177,9 @@ bool wxWindowBase::TransferDataToWindow()
|
||||
if ( validator && !validator->TransferToWindow() )
|
||||
{
|
||||
wxLogWarning(_("Could not transfer data to window"));
|
||||
#if wxUSE_LOG
|
||||
wxLog::FlushActive();
|
||||
#endif // wxUSE_LOG
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@@ -1146,7 +1146,7 @@ static int OpenLogFile(wxFile& file, wxString *pFilename)
|
||||
|
||||
#endif // !(wxUSE_LOGGUI || wxUSE_LOGWINDOW)
|
||||
|
||||
#if wxUSE_TEXTCTRL
|
||||
#if wxUSE_LOG && wxUSE_GUI && wxUSE_TEXTCTRL
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxLogTextCtrl implementation
|
||||
@@ -1173,6 +1173,6 @@ void wxLogTextCtrl::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
|
||||
m_pTextCtrl->AppendText(msg);
|
||||
}
|
||||
|
||||
#endif // wxUSE_TEXTCTRL
|
||||
#endif // wxUSE_LOG && wxUSE_GUI && wxUSE_TEXTCTRL
|
||||
|
||||
// vi:sts=4:sw=4:et
|
||||
|
||||
@@ -701,8 +701,10 @@ int wxEntry(WXHINSTANCE hInstance,
|
||||
// we can't simply double-click on the error message and get to that
|
||||
// line in the source. So VC++ at least, let's have a sensible default.
|
||||
#ifdef __VISUALC__
|
||||
#if wxUSE_LOG
|
||||
wxLog::SetTimestamp(NULL);
|
||||
#endif
|
||||
#endif // wxUSE_LOG
|
||||
#endif // __VISUALC__
|
||||
|
||||
// init the app
|
||||
int retValue = wxEntryInitGui() && wxTheApp->OnInit() ? 0 : -1;
|
||||
@@ -1300,9 +1302,11 @@ bool wxApp::Yield(bool onlyIfNeeded)
|
||||
// MT-FIXME
|
||||
static bool s_inYield = FALSE;
|
||||
|
||||
#if wxUSE_LOG
|
||||
// disable log flushing from here because a call to wxYield() shouldn't
|
||||
// normally result in message boxes popping up &c
|
||||
wxLog::Suspend();
|
||||
#endif // wxUSE_LOG
|
||||
|
||||
if ( s_inYield )
|
||||
{
|
||||
@@ -1333,8 +1337,10 @@ bool wxApp::Yield(bool onlyIfNeeded)
|
||||
// if there are pending events, we must process them.
|
||||
ProcessPendingEvents();
|
||||
|
||||
#if wxUSE_LOG
|
||||
// let the logs be flashed again
|
||||
wxLog::Resume();
|
||||
#endif // wxUSE_LOG
|
||||
|
||||
s_inYield = FALSE;
|
||||
|
||||
|
||||
@@ -389,11 +389,11 @@ bool wxBitmap::Create(int w, int h, int d)
|
||||
}
|
||||
|
||||
SetHBITMAP((WXHBITMAP)hbmp);
|
||||
}
|
||||
|
||||
#if WXWIN_COMPATIBILITY_2
|
||||
GetBitmapData()->m_ok = hbmp != 0;
|
||||
GetBitmapData()->m_ok = hbmp != 0;
|
||||
#endif // WXWIN_COMPATIBILITY_2
|
||||
}
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
@@ -2035,25 +2035,6 @@ void wxDC::SetLogicalScale(double x, double y)
|
||||
m_logicalScaleY = y;
|
||||
}
|
||||
|
||||
#if WXWIN_COMPATIBILITY
|
||||
void wxDC::DoGetTextExtent(const wxString& string, float *x, float *y,
|
||||
float *descent, float *externalLeading,
|
||||
wxFont *theFont, bool use16bit) const
|
||||
{
|
||||
#ifdef __WXMICROWIN__
|
||||
if (!GetHDC()) return;
|
||||
#endif
|
||||
|
||||
wxCoord x1, y1, descent1, externalLeading1;
|
||||
GetTextExtent(string, & x1, & y1, & descent1, & externalLeading1, theFont, use16bit);
|
||||
*x = x1; *y = y1;
|
||||
if (descent)
|
||||
*descent = descent1;
|
||||
if (externalLeading)
|
||||
*externalLeading = externalLeading1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if wxUSE_DC_CACHEING
|
||||
|
||||
/*
|
||||
|
||||
@@ -2298,8 +2298,10 @@ LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM w
|
||||
{
|
||||
// trace all messages - useful for the debugging
|
||||
#ifdef __WXDEBUG__
|
||||
#if wxUSE_LOG
|
||||
wxLogTrace(wxTraceMessages, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"),
|
||||
wxGetMessageName(message), (long) wParam, lParam);
|
||||
#endif // wxUSE_LOG
|
||||
#endif // __WXDEBUG__
|
||||
|
||||
wxWindowMSW *wnd = wxFindWinFromHandle((WXHWND) hWnd);
|
||||
@@ -2892,8 +2894,10 @@ long wxWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam
|
||||
if ( !processed )
|
||||
{
|
||||
#ifdef __WXDEBUG__
|
||||
#if wxUSE_LOG
|
||||
wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."),
|
||||
wxGetMessageName(message));
|
||||
#endif // wxUSE_LOG
|
||||
#endif // __WXDEBUG__
|
||||
rc.result = MSWDefWindowProc(message, wParam, lParam);
|
||||
}
|
||||
|
||||
@@ -2887,18 +2887,5 @@ void wxDC::SetLogicalScale(
|
||||
m_logicalScaleY = dY;
|
||||
}; // end of wxDC::SetLogicalScale
|
||||
|
||||
#if WXWIN_COMPATIBILITY
|
||||
void wxDC::DoGetTextExtent(const wxString& string, float *x, float *y,
|
||||
float *descent, float *externalLeading,
|
||||
wxFont *theFont, bool use16bit) const
|
||||
{
|
||||
wxCoord x1, y1, descent1, externalLeading1;
|
||||
GetTextExtent(string, & x1, & y1, & descent1, & externalLeading1, theFont, use16bit);
|
||||
*x = x1; *y = y1;
|
||||
if (descent)
|
||||
*descent = descent1;
|
||||
if (externalLeading)
|
||||
*externalLeading = externalLeading1;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user