Update of /cvsroot/simspark/simspark/contrib/rsgedit/wxscintilla/include/wx
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv24867/include/wx
Added Files:
Tag: RSGEDIT_SCINTILLA
wxscintilla.h
Log Message:
- added files for Scintilla, a free GTK and Win32 source editing component
- added files for wxScintilla, a Scintilla wrapper for wxWidgets
--- NEW FILE: wxscintilla.h ---
/////////////////////////////////////////////////////////////////////////////
// Name: wxscintilla.h
// Purpose: A wxWidgets implementation of Scintilla. This class is the
// one meant to be used directly by wx applications. It does not
// derive directly from the Scintilla classes, and in fact there
// is no mention of Scintilla classes at all in this header.
// This class delegates all method calls and events to the
// Scintilla objects and so forth. This allows the use of
// Scintilla without polluting the namespace with all the
// classes and itentifiers from Scintilla.
//
// Author: Robin Dunn
//
// Created: 13-Jan-2000
// RCS-ID: $Id: wxscintilla.h,v 1.1.2.1 2007/06/19 05:19:45 rollmark Exp $
// Copyright: (c) 2004 wxCode
// Licence: wxWindows
/////////////////////////////////////////////////////////////////////////////
[...3636 lines suppressed...]
return wxString (str, len);
}
#endif
#if wxUSE_UNICODE
inline const wxWX2MBbuf wx2sci (const wxString& str) {
return str.mb_str (wxConvUTF8);
}
#else
inline const wxWX2MBbuf wx2sci (const wxString& str) {
return str.mbc_str();
}
#endif
#endif
//----------------------------------------------------------------------
#endif // __WXSCINTILLA_H__
|