are just #ifdef 0 such as the wxExecute calls
in gdcps.cpp.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16375
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
28 files changed:
// Implicit conversion from the colour name
wxColour( const wxString &colourName ) { InitFromName(colourName); }
wxColour( const char *colourName ) { InitFromName(colourName); }
// Implicit conversion from the colour name
wxColour( const wxString &colourName ) { InitFromName(colourName); }
wxColour( const char *colourName ) { InitFromName(colourName); }
+#if wxUSE_UNICODE
+ wxColour( const wxChar *colourName ) { InitFromName( wxString(colourName) ); }
+#endif
+
wxColour( const wxColour& col )
: wxGDIObject()
wxColour( const wxColour& col )
: wxGDIObject()
// global data
//-----------------------------------------------------------------------------
// global data
//-----------------------------------------------------------------------------
-extern const char* wxComboBoxNameStr;
+extern const wxChar* wxComboBoxNameStr;
extern const wxChar* wxEmptyString;
//-----------------------------------------------------------------------------
extern const wxChar* wxEmptyString;
//-----------------------------------------------------------------------------
// global data
//-----------------------------------------------------------------------------
// global data
//-----------------------------------------------------------------------------
-extern const char* wxGaugeNameStr;
+extern const wxChar* wxGaugeNameStr;
//-----------------------------------------------------------------------------
// wxGaugeBox
//-----------------------------------------------------------------------------
// wxGaugeBox
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
- const wxString& name = "notebook");
+ const wxString& name = wxT("notebook"));
// Create() function
bool Create(wxWindow *parent,
wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
// Create() function
bool Create(wxWindow *parent,
wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
- const wxString& name = "notebook");
+ const wxString& name = wxT("notebook"));
// dtor
virtual ~wxNotebook();
// dtor
virtual ~wxNotebook();
virtual int GetMax() const;
// implementation
virtual int GetMax() const;
// implementation
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
// Implicit conversion from the colour name
wxColour( const wxString &colourName ) { InitFromName(colourName); }
wxColour( const char *colourName ) { InitFromName(colourName); }
// Implicit conversion from the colour name
wxColour( const wxString &colourName ) { InitFromName(colourName); }
wxColour( const char *colourName ) { InitFromName(colourName); }
+#if wxUSE_UNICODE
+ wxColour( const wxChar *colourName ) { InitFromName( wxString(colourName) ); }
+#endif
+
wxColour( const wxColour& col )
: wxGDIObject()
wxColour( const wxColour& col )
: wxGDIObject()
// global data
//-----------------------------------------------------------------------------
// global data
//-----------------------------------------------------------------------------
-extern const char* wxComboBoxNameStr;
+extern const wxChar* wxComboBoxNameStr;
extern const wxChar* wxEmptyString;
//-----------------------------------------------------------------------------
extern const wxChar* wxEmptyString;
//-----------------------------------------------------------------------------
// global data
//-----------------------------------------------------------------------------
// global data
//-----------------------------------------------------------------------------
-extern const char* wxGaugeNameStr;
+extern const wxChar* wxGaugeNameStr;
//-----------------------------------------------------------------------------
// wxGaugeBox
//-----------------------------------------------------------------------------
// wxGaugeBox
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
- const wxString& name = "notebook");
+ const wxString& name = wxT("notebook"));
// Create() function
bool Create(wxWindow *parent,
wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
// Create() function
bool Create(wxWindow *parent,
wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
- const wxString& name = "notebook");
+ const wxString& name = wxT("notebook"));
// dtor
virtual ~wxNotebook();
// dtor
virtual ~wxNotebook();
virtual int GetMax() const;
// implementation
virtual int GetMax() const;
// implementation
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
void OnChar( wxKeyEvent &event );
bool IsOwnGtkWindow( GdkWindow *window );
// Implementation
void DoSetBitmap();
virtual void ChangeBackgroundColour();
// Implementation
void DoSetBitmap();
virtual void ChangeBackgroundColour();
+ virtual wxSize DoGetBestSize() const;
protected:
wxBitmap m_buttonBitmapFocus;
protected:
wxBitmap m_buttonBitmapFocus;
#endif
#include "wx/filename.h" // for SplitPath()
#endif
#include "wx/filename.h" // for SplitPath()
#include "wx/dynload.h"
#include "wx/module.h"
#include "wx/dynload.h"
#include "wx/module.h"
- m_handle = dlopen(libname.c_str(), rtldFlags);
+ m_handle = dlopen(libname.fn_str(), rtldFlags);
#endif // __VMS || __DARWIN__ ?
#elif defined(HAVE_SHL_LOAD)
#endif // __VMS || __DARWIN__ ?
#elif defined(HAVE_SHL_LOAD)
{
shlFlags |= BIND_IMMEDIATE;
}
{
shlFlags |= BIND_IMMEDIATE;
}
- m_handle = shl_load(libname.c_str(), BIND_DEFERRED, 0);
+ m_handle = shl_load(libname.fn_str(), BIND_DEFERRED, 0);
#elif defined(__WINDOWS__)
m_handle = ::LoadLibrary(libname.c_str());
#elif defined(__WINDOWS__)
m_handle = ::LoadLibrary(libname.c_str());
{
wxString msg(_("Failed to load shared library '%s'"));
#if defined(HAVE_DLERROR) && !defined(__EMX__)
{
wxString msg(_("Failed to load shared library '%s'"));
#if defined(HAVE_DLERROR) && !defined(__EMX__)
- const wxChar *err = dlerror();
+
+#if defined(__WXGTK__) && wxUSE_UNICODE
+ wxWCharBuffer buffer = wxConvLocal.cMB2WC( dlerror() );
+ const wxChar *err = buffer;
+#else
+ const wxChar *err = dlerror();
+#endif
+
if( err )
wxLogError( msg, err );
#else
if( err )
wxLogError( msg, err );
#else
DosQueryProcAddr( m_handle, 1L, name.c_str(), (PFN*)symbol );
#elif defined(HAVE_DLOPEN) || defined(__DARWIN__)
DosQueryProcAddr( m_handle, 1L, name.c_str(), (PFN*)symbol );
#elif defined(HAVE_DLOPEN) || defined(__DARWIN__)
- symbol = dlsym( m_handle, name.c_str() );
+ symbol = dlsym( m_handle, name.fn_str() );
#elif defined(HAVE_SHL_LOAD)
#elif defined(HAVE_SHL_LOAD)
- if( shl_findsym( &m_handle, name.c_str(), TYPE_UNDEFINED, &symbol ) != 0 )
+ if( shl_findsym( &m_handle, name.fn_str(), TYPE_UNDEFINED, &symbol ) != 0 )
symbol = 0;
#elif defined(__WINDOWS__)
symbol = 0;
#elif defined(__WINDOWS__)
{
wxString msg(_("wxDynamicLibrary failed to GetSymbol '%s'"));
#if defined(HAVE_DLERROR) && !defined(__EMX__)
{
wxString msg(_("wxDynamicLibrary failed to GetSymbol '%s'"));
#if defined(HAVE_DLERROR) && !defined(__EMX__)
+
+#if defined(__WXGTK__) && wxUSE_UNICODE
+ wxWCharBuffer buffer = wxConvLocal.cMB2WC( dlerror() );
+ const wxChar *err = buffer;
+#else
const wxChar *err = dlerror();
const wxChar *err = dlerror();
if( err )
{
failed = TRUE;
if( err )
{
failed = TRUE;
FILE *fp2 = (FILE *) NULL;
FILE *fp3 = (FILE *) NULL;
// Open the inputs and outputs
FILE *fp2 = (FILE *) NULL;
FILE *fp3 = (FILE *) NULL;
// Open the inputs and outputs
- if ((fp1 = wxFopen (OS_FILENAME( file1 ), wxT("rb"))) == NULL ||
- (fp2 = wxFopen (OS_FILENAME( file2 ), wxT("rb"))) == NULL ||
- (fp3 = wxFopen (OS_FILENAME( outfile ), wxT("wb"))) == NULL)
+ if ((fp1 = wxFopen ( file1, wxT("rb"))) == NULL ||
+ (fp2 = wxFopen ( file2, wxT("rb"))) == NULL ||
+ (fp3 = wxFopen ( outfile, wxT("wb"))) == NULL)
// can use the cast here because the length doesn't change and the string
// is not shared
// can use the cast here because the length doesn't change and the string
// is not shared
- int fdTemp = mkstemp((char *)path.mb_str());
+ int fdTemp = mkstemp((char*)(const char *)path.mb_str());
if ( fdTemp == -1 )
{
// this might be not necessary as mkstemp() on most systems should have
if ( fdTemp == -1 )
{
// this might be not necessary as mkstemp() on most systems should have
utimbuf utm;
utm.actime = dtAccess ? dtAccess->GetTicks() : dtMod->GetTicks();
utm.modtime = dtMod ? dtMod->GetTicks() : dtAccess->GetTicks();
utimbuf utm;
utm.actime = dtAccess ? dtAccess->GetTicks() : dtMod->GetTicks();
utm.modtime = dtMod ? dtMod->GetTicks() : dtAccess->GetTicks();
- if ( utime(GetFullPath(), &utm) == 0 )
+ if ( utime(GetFullPath().fn_str(), &utm) == 0 )
{
#if defined(__UNIX_LIKE__)
// under Unix touching file is simple: just pass NULL to utime()
{
#if defined(__UNIX_LIKE__)
// under Unix touching file is simple: just pass NULL to utime()
- if ( utime(GetFullPath(), NULL) == 0 )
+ if ( utime(GetFullPath().fn_str(), NULL) == 0 )
{
#if defined(__UNIX_LIKE__) || defined(__WXMAC__) || (defined(__DOS__) && defined(__WATCOMC__))
wxStructStat stBuf;
{
#if defined(__UNIX_LIKE__) || defined(__WXMAC__) || (defined(__DOS__) && defined(__WATCOMC__))
wxStructStat stBuf;
- if ( wxStat(GetFullPath(), &stBuf) == 0 )
+ if ( wxStat(GetFullPath().fn_str(), &stBuf) == 0 )
{
if ( dtAccess )
dtAccess->Set(stBuf.st_atime);
{
if ( dtAccess )
dtAccess->Set(stBuf.st_atime);
out.PrintfV(format, args);
va_end(args);
out.PrintfV(format, args);
va_end(args);
- fprintf(stderr, "%s", out.mb_str());
+ fprintf(stderr, "%s", (const char*) out.mb_str());
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
va_end(args);
#ifndef __WXMSW__
va_end(args);
#ifndef __WXMSW__
+ out.Replace(wxT("\t"),wxT(" "));
#endif
::wxMessageBox(out);
}
#endif
::wxMessageBox(out);
}
{
// ensure that the file doesn't exist as otherwise calling socket() would
// fail
{
// ensure that the file doesn't exist as otherwise calling socket() would
// fail
- int rc = remove(serverName);
+ int rc = remove(serverName.fn_str());
if ( rc < 0 && errno != ENOENT )
{
delete addr;
if ( rc < 0 && errno != ENOENT )
{
delete addr;
#ifdef __UNIX_LIKE__
if ( !m_filename.empty() )
{
#ifdef __UNIX_LIKE__
if ( !m_filename.empty() )
{
- if ( remove(m_filename) != 0 )
+ if ( remove(m_filename.fn_str()) != 0 )
{
wxLogDebug(_T("Stale AF_UNIX file '%s' left."), m_filename.c_str());
}
{
wxLogDebug(_T("Stale AF_UNIX file '%s' left."), m_filename.c_str());
}
- if ( keycode < 256 && keycode >= 0 && isprint(keycode) )
+ if ( keycode < 256 && keycode >= 0 && wxIsprint(keycode) )
{
// FIXME this is not going to work for non letters...
if ( !event.ShiftDown() )
{
{
// FIXME this is not going to work for non letters...
if ( !event.ShiftDown() )
{
- keycode = tolower(keycode);
+ keycode = wxTolower(keycode);
#include "wx/intl.h"
#include <string.h>
#include "wx/intl.h"
#include <string.h>
#include "wx/window.h"
#include "wx/dcmemory.h"
#include "wx/utils.h"
#include "wx/window.h"
#include "wx/dcmemory.h"
#include "wx/utils.h"
m_printData.SetFilename(filename);
}
m_printData.SetFilename(filename);
}
- m_pstream = wxFopen( m_printData.GetFilename().fn_str(), wxT("w+") );
+ m_pstream = wxFopen( m_printData.GetFilename().c_str(), wxT("w+") ); // FIXME: use fn_str() here under Unicode?
argv[0] = WXSTRINGCAST previewCommand;
argv[1] = WXSTRINGCAST filename;
argv[2] = (wxChar*) NULL;
argv[0] = WXSTRINGCAST previewCommand;
argv[1] = WXSTRINGCAST filename;
argv[2] = (wxChar*) NULL;
+#if defined(__WXGTK20__) && wxUSE_UNICODE
+#else
wxRemoveFile( m_printData.GetFilename() );
}
break;
wxRemoveFile( m_printData.GetFilename() );
}
break;
argv[argc++] = WXSTRINGCAST filename;
argv[argc++] = (wxChar *) NULL;
argv[argc++] = WXSTRINGCAST filename;
argv[argc++] = (wxChar *) NULL;
+#if defined(__WXGTK20__) && wxUSE_UNICODE
+#else
wxRemoveFile( filename );
}
break;
wxRemoveFile( filename );
}
break;
#include "wx/log.h"
#endif
#include "wx/log.h"
#endif
#include "wx/html/helpdata.h"
#include "wx/tokenzr.h"
#include "wx/wfstream.h"
#include "wx/html/helpdata.h"
#include "wx/tokenzr.h"
#include "wx/wfstream.h"
(XtPointer) this);
SetCanAddEventHandler(TRUE);
(XtPointer) this);
SetCanAddEventHandler(TRUE);
- AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
+
+ wxSize newSize = size;
+
+ if (m_buttonBitmap.Ok())
+ {
+ int border = (style & wxNO_BORDER) ? 4 : 10;
+ if (newSize.x == -1)
+ newSize.x = m_buttonBitmap.GetWidth()+border;
+ if (newSize.y == -1)
+ newSize.y = m_buttonBitmap.GetHeight()+border;
+ }
+
+ AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, newSize.x, newSize.y);
// Must reset the bitmaps since the colours have changed.
DoSetBitmap();
}
// Must reset the bitmaps since the colours have changed.
DoSetBitmap();
}
+
+wxSize wxBitmapButton::DoGetBestSize() const
+{
+ wxSize ret( 30,30 );
+
+ if (m_buttonBitmap.Ok())
+ {
+ int border = (GetWindowStyle() & wxNO_BORDER) ? 4 : 10;
+ ret.x = m_buttonBitmap.GetWidth()+border;
+ ret.y = m_buttonBitmap.GetHeight()+border;
+ }
+
+ if (!HasFlag(wxBU_EXACTFIT))
+ {
+ if (ret.x < 80) ret.x = 80;
+ }
+
+ return ret;
+}
+
hasModem = strstr(output,"ipdptp") != (char *)NULL;
hasLAN = strstr(output, "hme") != (char *)NULL;
#elif defined(__LINUX__) || defined (__FREEBSD__)
hasModem = strstr(output,"ipdptp") != (char *)NULL;
hasLAN = strstr(output, "hme") != (char *)NULL;
#elif defined(__LINUX__) || defined (__FREEBSD__)
- hasModem = strstr(output,"ppp") // ppp
- || strstr(output,"sl") // slip
- || strstr(output,"pl"); // plip
- hasLAN = strstr(output, "eth") != NULL;
+ hasModem = strstr(output.fn_str(),"ppp") // ppp
+ || strstr(output.fn_str(),"sl") // slip
+ || strstr(output.fn_str(),"pl"); // plip
+ hasLAN = strstr(output.fn_str(), "eth") != NULL;
#elif defined(__SGI__) // IRIX
hasModem = strstr(output, "ppp") != NULL; // PPP
#elif defined(__HPUX__)
#elif defined(__SGI__) // IRIX
hasModem = strstr(output, "ppp") != NULL; // PPP
#elif defined(__HPUX__)
// caller will learn it soon enough when it calls GetFirst(wxDIR)
// anyhow
wxStructStat stBuf;
// caller will learn it soon enough when it calls GetFirst(wxDIR)
// anyhow
wxStructStat stBuf;
- if ( wxStat(M_DIR->GetName(), &stBuf) == 0 )
+ if ( wxStat(M_DIR->GetName().fn_str(), &stBuf) == 0 )
{
switch ( stBuf.st_nlink )
{
{
switch ( stBuf.st_nlink )
{
{
char *font = fonts[n];
#if wxUSE_REGEX
{
char *font = fonts[n];
#if wxUSE_REGEX
+#if wxUSE_UNICODE
+ wxString sfont( wxConvLocal.cMB2WC( font ) );
+ if ( !re.Matches(sfont) )
+#else
#else // !wxUSE_REGEX
if ( !wxString(font).Matches(wxT("-*-*-*-*-*-*-*-*-*-*-*-*-*-*")) )
#endif // wxUSE_REGEX/!wxUSE_REGEX
#else // !wxUSE_REGEX
if ( !wxString(font).Matches(wxT("-*-*-*-*-*-*-*-*-*-*-*-*-*-*")) )
#endif // wxUSE_REGEX/!wxUSE_REGEX
char *family = dash + 1;
dash = strchr(family, '-');
*dash = '\0'; // !NULL because Matches() above succeeded
char *family = dash + 1;
dash = strchr(family, '-');
*dash = '\0'; // !NULL because Matches() above succeeded
+#if wxUSE_UNICODE
+ wxString fam( wxConvLocal.cMB2WC( family ) );
+#else
if ( families.Index(fam) == wxNOT_FOUND )
{
if ( families.Index(fam) == wxNOT_FOUND )
{
(void) tokenizer.NextToken();
(void) tokenizer.NextToken();
- newFontName += wxString::Format("%d-", pointSize);
+ newFontName += wxString::Format(wxT("%d-"), pointSize);
while(tokenizer.HasMoreTokens())
newFontName += tokenizer.GetNextToken();
while(tokenizer.HasMoreTokens())
newFontName += tokenizer.GetNextToken();
LockResult wxSingleInstanceCheckerImpl::CreateLockFile()
{
// try to open the file
LockResult wxSingleInstanceCheckerImpl::CreateLockFile()
{
// try to open the file
- m_fdLock = open(m_nameLock,
+ m_fdLock = open(m_nameLock.fn_str(),
O_WRONLY | O_CREAT | O_EXCL,
S_IRUSR | S_IWUSR);
O_WRONLY | O_CREAT | O_EXCL,
S_IRUSR | S_IWUSR);
wxLogSysError(_("Failed to lock the lock file '%s'"),
m_nameLock.c_str());
wxLogSysError(_("Failed to lock the lock file '%s'"),
m_nameLock.c_str());
+ unlink(m_nameLock.fn_str());
{
if ( kill(m_pidLocker, 0) != 0 )
{
{
if ( kill(m_pidLocker, 0) != 0 )
{
- if ( unlink(name) != 0 )
+ if ( unlink(name.fn_str()) != 0 )
{
wxLogError(_("Failed to remove stale lock file '%s'."),
name.c_str());
{
wxLogError(_("Failed to remove stale lock file '%s'."),
name.c_str());
{
if ( m_fdLock != -1 )
{
{
if ( m_fdLock != -1 )
{
- if ( unlink(m_nameLock) != 0 )
+ if ( unlink(m_nameLock.fn_str()) != 0 )
{
wxLogSysError(_("Failed to remove lock file '%s'"),
m_nameLock.c_str());
{
wxLogSysError(_("Failed to remove lock file '%s'"),
m_nameLock.c_str());
m_isOk = err == 0;
if ( !m_isOk )
{
m_isOk = err == 0;
if ( !m_isOk )
{
- wxLogApiError("pthread_mutex_init()", err);
+ wxLogApiError( wxT("pthread_mutex_init()"), err);
int err = pthread_mutex_destroy(&m_mutex);
if ( err != 0 )
{
int err = pthread_mutex_destroy(&m_mutex);
if ( err != 0 )
{
- wxLogApiError("pthread_mutex_destroy()", err);
+ wxLogApiError( wxT("pthread_mutex_destroy()"), err);
argv[argc] = NULL;
// do execute the command
argv[argc] = NULL;
// do execute the command
+#if wxUSE_UNICODE
+ long lRc = -1;
+#else
long lRc = wxExecute(argv, flags, process);
long lRc = wxExecute(argv, flags, process);
#if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
// the case to "char *" is needed for AIX 4.3
wxStatFs fs;
#if defined(HAVE_STATFS) || defined(HAVE_STATVFS)
// the case to "char *" is needed for AIX 4.3
wxStatFs fs;
- if ( statfs((char *)path.fn_str(), &fs) != 0 )
+ if ( statfs((char *)(const char*)path.fn_str(), &fs) != 0 )
- wxLogSysError("Failed to get file system statistics");
+ wxLogSysError( wxT("Failed to get file system statistics") );