mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-09-20 04:48:48 +08:00
Added Win95 implementation of OutputDebugString; added to wxVariant class
(just so Vadim hates it even more :-)) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -132,3 +132,15 @@ References:
|
||||
http://agnes.dida.physik.uni-essen.de/~janjaap/mingw32/index.html
|
||||
- See also http://web.ukonline.co.uk/julian.smart/wxwin/gnuwin32.htm
|
||||
|
||||
Notes
|
||||
-----
|
||||
|
||||
- Debugging: under Windows 95, debugging output isn't output in
|
||||
the same way that it is under NT or Windows 3.1. Set
|
||||
wxUSE_DBWIN32 to 1 if you wish to enable code to output debugging
|
||||
info to an external debug monitor, such as Andrew Tucker's DBWIN32.
|
||||
You can download DBWIN32 from:
|
||||
|
||||
http://ftp.digital.com/pub/micro/NT/WinSite/programr/dbwin32.zip
|
||||
|
||||
and it's also on the wxWindows CD-ROM.
|
||||
|
||||
@@ -185,3 +185,6 @@ Perhaps rewrite wxFile to use FILE* descriptors, so Eof and Flush
|
||||
can work.
|
||||
|
||||
Find out how to set wxFileSelector position.
|
||||
|
||||
Maybe bundle Andrew Tucker's DBWIN32 with wxWindows (it's only
|
||||
26KB), for viewing debug messages without a debugger.
|
||||
|
||||
@@ -162,5 +162,14 @@ inline bool wxStyleHasBorder(long style)
|
||||
#define WS_EX_CLIENTEDGE 0
|
||||
#endif
|
||||
|
||||
#if defined(__WIN95__) && defined(__WXDEBUG__) && wxUSE_DBWIN32
|
||||
#ifdef OutputDebugString
|
||||
#undef OutputDebugString
|
||||
#endif
|
||||
|
||||
#define OutputDebugString OutputDebugStringW95
|
||||
extern void OutputDebugStringW95(const char*, ...);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
// _WX_PRIVATE_H_
|
||||
|
||||
@@ -195,6 +195,9 @@
|
||||
|
||||
#define wxUSE_NATIVE_STATUSBAR 1
|
||||
// Set to 0 to use cross-platform wxStatusBar
|
||||
#define wxUSE_DBWIN32 1
|
||||
// Use Andrew Tucker's OutputDebugString implementation
|
||||
// (required on Win95 only). See utils.cpp.
|
||||
|
||||
/*
|
||||
* Any platform
|
||||
|
||||
+54
-11
@@ -21,6 +21,11 @@
|
||||
#include "wx/string.h"
|
||||
#include "wx/list.h"
|
||||
|
||||
#if wxUSE_TIMEDATE
|
||||
#include "wx/time.h"
|
||||
#include "wx/date.h"
|
||||
#endif
|
||||
|
||||
#if wxUSE_IOSTREAMH
|
||||
#include <iostream.h>
|
||||
#else
|
||||
@@ -79,18 +84,21 @@ public:
|
||||
|
||||
// Construction & destruction
|
||||
wxVariant();
|
||||
wxVariant(double val);
|
||||
wxVariant(long val);
|
||||
wxVariant(bool val);
|
||||
wxVariant(char val);
|
||||
wxVariant(const wxString& val);
|
||||
wxVariant(const char* val); // Necessary or VC++ assumes bool!
|
||||
/* Causes ambiguity
|
||||
wxVariant(const wxStringList& val);
|
||||
*/
|
||||
wxVariant(const wxList& val); // List of variants
|
||||
wxVariant(double val, const wxString& name = wxEmptyString);
|
||||
wxVariant(long val, const wxString& name = wxEmptyString);
|
||||
wxVariant(bool val, const wxString& name = wxEmptyString);
|
||||
wxVariant(char val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wxString& val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const char* val, const wxString& name = wxEmptyString); // Necessary or VC++ assumes bool!
|
||||
wxVariant(const wxStringList& val, const wxString& name = wxEmptyString);
|
||||
wxVariant(const wxList& val, const wxString& name = wxEmptyString); // List of variants
|
||||
#if wxUSE_TIMEDATE
|
||||
wxVariant(const wxTime& val, const wxString& name = wxEmptyString); // Time
|
||||
wxVariant(const wxDate& val, const wxString& name = wxEmptyString); // Date
|
||||
#endif
|
||||
wxVariant(void* ptr, const wxString& name = wxEmptyString); // void* (general purpose)
|
||||
wxVariant(wxVariantData* data, const wxString& name = wxEmptyString); // User-defined data
|
||||
wxVariant(const wxVariant& variant);
|
||||
wxVariant(wxVariantData* data); // User-defined data
|
||||
~wxVariant();
|
||||
|
||||
// Generic operators
|
||||
@@ -126,6 +134,17 @@ public:
|
||||
bool operator== (const wxList& value) const;
|
||||
bool operator!= (const wxList& value) const;
|
||||
void operator= (const wxList& value) ;
|
||||
#if wxUSE_TIMEDATE
|
||||
bool operator== (const wxTime& value) const;
|
||||
bool operator!= (const wxTime& value) const;
|
||||
void operator= (const wxTime& value) ;
|
||||
bool operator== (const wxDate& value) const;
|
||||
bool operator!= (const wxDate& value) const;
|
||||
void operator= (const wxDate& value) ;
|
||||
#endif
|
||||
bool operator== (void* value) const;
|
||||
bool operator!= (void* value) const;
|
||||
void operator= (void* value) ;
|
||||
|
||||
// Treat a list variant as an array
|
||||
wxVariant operator[] (size_t idx) const;
|
||||
@@ -137,10 +156,20 @@ public:
|
||||
|
||||
// Other implicit conversions
|
||||
inline operator double () const { return GetDouble(); }
|
||||
inline operator char () const { return GetChar(); }
|
||||
inline operator long () const { return GetLong(); }
|
||||
inline operator bool () const { return GetBool(); }
|
||||
#if wxUSE_TIMEDATE
|
||||
inline operator wxTime () const { return GetTime(); }
|
||||
inline operator wxDate () const { return GetDate(); }
|
||||
#endif
|
||||
inline operator void* () const { return GetVoidPtr(); }
|
||||
|
||||
// Accessors
|
||||
// Sets/gets name
|
||||
inline void SetName(const wxString& name) { m_name = name; }
|
||||
inline const wxString& GetName() const { return m_name; }
|
||||
|
||||
// Tests whether there is data
|
||||
inline bool IsNull() const { return (m_data == (wxVariantData*) NULL); }
|
||||
|
||||
@@ -166,6 +195,11 @@ public:
|
||||
wxString GetString() const ;
|
||||
wxList& GetList() const ;
|
||||
wxStringList& GetStringList() const ;
|
||||
#if wxUSE_TIMEDATE
|
||||
wxTime GetTime() const ;
|
||||
wxDate GetDate() const ;
|
||||
#endif
|
||||
void* GetVoidPtr() const ;
|
||||
|
||||
// Operations
|
||||
// Make NULL (i.e. delete the data)
|
||||
@@ -189,17 +223,26 @@ public:
|
||||
// Clear list
|
||||
void ClearList();
|
||||
|
||||
// Implementation
|
||||
protected:
|
||||
// Type conversion
|
||||
bool Convert(long* value) const;
|
||||
bool Convert(bool* value) const;
|
||||
bool Convert(double* value) const;
|
||||
bool Convert(wxString* value) const;
|
||||
bool Convert(char* value) const;
|
||||
#if wxUSE_TIMEDATE
|
||||
bool Convert(wxTime* value) const;
|
||||
bool Convert(wxDate* value) const;
|
||||
#endif
|
||||
|
||||
// Attributes
|
||||
protected:
|
||||
wxVariantData* m_data;
|
||||
wxString m_name;
|
||||
};
|
||||
|
||||
extern wxVariant wxNullVariant;
|
||||
|
||||
#endif
|
||||
// _WX_VARIANT_H_
|
||||
|
||||
@@ -52,6 +52,8 @@
|
||||
|
||||
#ifdef __WXMSW__
|
||||
#include <windows.h>
|
||||
// Redefines OutputDebugString if necessary
|
||||
#include "wx/msw/private.h"
|
||||
#else //Unix
|
||||
#include <signal.h>
|
||||
#endif //Win/Unix
|
||||
|
||||
+414
-18
File diff suppressed because it is too large
Load Diff
@@ -124,8 +124,8 @@ wxPaintDC::~wxPaintDC()
|
||||
if ( !--ms_PaintCount ) {
|
||||
::EndPaint((HWND)m_canvas->GetHWND(), &g_paintStruct);
|
||||
m_hDCCount--;
|
||||
m_hDC = NULL;
|
||||
ms_PaintHDC = NULL;
|
||||
m_hDC = (WXHDC) NULL;
|
||||
ms_PaintHDC = (WXHDC) NULL;
|
||||
}
|
||||
else { }//: ms_PaintHDC still in use
|
||||
}
|
||||
|
||||
@@ -894,3 +894,130 @@ bool wxMatchWild( const wxString& pat, const wxString& text, bool dot_special )
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(__WIN95__) && defined(__WXDEBUG__) && wxUSE_DBWIN32
|
||||
|
||||
/*
|
||||
When I started programming with Visual C++ v4.0, I missed one of my favorite
|
||||
tools -- DBWIN. Finding the code for a simple debug trace utility, DBMON,
|
||||
on MSDN was a step in the right direction, but it is a console application
|
||||
and thus has limited features and extensibility. DBWIN32 is my creation
|
||||
to solve this problem.
|
||||
|
||||
The code is essentially a merging of a stripped down version of the DBWIN code
|
||||
from VC 1.5 and DBMON.C with a few 32 bit changes.
|
||||
|
||||
As of version 1.2B, DBWIN32 supports both Win95 and NT. The NT support is
|
||||
built into the operating system and works just by running DBWIN32. The Win95
|
||||
team decided not to support this hook, so I have provided code that will do
|
||||
this for you. See the file WIN95.TXT for instructions on installing this.
|
||||
|
||||
If you have questions, problems or suggestions about DBWIN32, I welcome your
|
||||
feedback and plan to actively maintain the code.
|
||||
|
||||
Andrew Tucker
|
||||
ast@halcyon.com
|
||||
|
||||
To download dbwin32, see e.g.:
|
||||
|
||||
http://ftp.digital.com/pub/micro/NT/WinSite/programr/dbwin32.zip
|
||||
*/
|
||||
|
||||
#include <process.h>
|
||||
|
||||
void OutputDebugStringW95(const char* lpOutputString, ...)
|
||||
{
|
||||
HANDLE heventDBWIN; /* DBWIN32 synchronization object */
|
||||
HANDLE heventData; /* data passing synch object */
|
||||
HANDLE hSharedFile; /* memory mapped file shared data */
|
||||
LPSTR lpszSharedMem;
|
||||
char achBuffer[500];
|
||||
|
||||
/* create the output buffer */
|
||||
va_list args;
|
||||
va_start(args, lpOutputString);
|
||||
vsprintf(achBuffer, lpOutputString, args);
|
||||
va_end(args);
|
||||
|
||||
/*
|
||||
Do a regular OutputDebugString so that the output is
|
||||
still seen in the debugger window if it exists.
|
||||
|
||||
This ifdef is necessary to avoid infinite recursion
|
||||
from the inclusion of W95TRACE.H
|
||||
*/
|
||||
#ifdef _UNICODE
|
||||
::OutputDebugStringW(achBuffer);
|
||||
#else
|
||||
::OutputDebugStringA(achBuffer);
|
||||
#endif
|
||||
|
||||
/* bail if it's not Win95 */
|
||||
{
|
||||
OSVERSIONINFO VerInfo;
|
||||
VerInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
||||
GetVersionEx(&VerInfo);
|
||||
if ( VerInfo.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS )
|
||||
return;
|
||||
}
|
||||
|
||||
/* make sure DBWIN is open and waiting */
|
||||
heventDBWIN = OpenEvent(EVENT_MODIFY_STATE, FALSE, "DBWIN_BUFFER_READY");
|
||||
if ( !heventDBWIN )
|
||||
{
|
||||
//MessageBox(NULL, "DBWIN_BUFFER_READY nonexistent", NULL, MB_OK);
|
||||
return;
|
||||
}
|
||||
|
||||
/* get a handle to the data synch object */
|
||||
heventData = OpenEvent(EVENT_MODIFY_STATE, FALSE, "DBWIN_DATA_READY");
|
||||
if ( !heventData )
|
||||
{
|
||||
// MessageBox(NULL, "DBWIN_DATA_READY nonexistent", NULL, MB_OK);
|
||||
CloseHandle(heventDBWIN);
|
||||
return;
|
||||
}
|
||||
|
||||
hSharedFile = CreateFileMapping((HANDLE)-1, NULL, PAGE_READWRITE, 0, 4096, "DBWIN_BUFFER");
|
||||
if (!hSharedFile)
|
||||
{
|
||||
//MessageBox(NULL, "DebugTrace: Unable to create file mapping object DBWIN_BUFFER", "Error", MB_OK);
|
||||
CloseHandle(heventDBWIN);
|
||||
CloseHandle(heventData);
|
||||
return;
|
||||
}
|
||||
|
||||
lpszSharedMem = (LPSTR)MapViewOfFile(hSharedFile, FILE_MAP_WRITE, 0, 0, 512);
|
||||
if (!lpszSharedMem)
|
||||
{
|
||||
//MessageBox(NULL, "DebugTrace: Unable to map shared memory", "Error", MB_OK);
|
||||
CloseHandle(heventDBWIN);
|
||||
CloseHandle(heventData);
|
||||
return;
|
||||
}
|
||||
|
||||
/* wait for buffer event */
|
||||
WaitForSingleObject(heventDBWIN, INFINITE);
|
||||
|
||||
/* write it to the shared memory */
|
||||
#ifdef __BORLANDC__
|
||||
*((LPDWORD)lpszSharedMem) = getpid();
|
||||
#else
|
||||
*((LPDWORD)lpszSharedMem) = _getpid();
|
||||
#endif
|
||||
|
||||
wsprintf(lpszSharedMem + sizeof(DWORD), "%s", achBuffer);
|
||||
|
||||
/* signal data ready event */
|
||||
SetEvent(heventData);
|
||||
|
||||
/* clean up handles */
|
||||
CloseHandle(hSharedFile);
|
||||
CloseHandle(heventData);
|
||||
CloseHandle(heventDBWIN);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user