projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add some mention of GTK3 support
[wxWidgets.git]
/
src
/
common
/
textbuf.cpp
diff --git
a/src/common/textbuf.cpp
b/src/common/textbuf.cpp
index b1950d24bc4590902a1c1b84fa9c90b1fdf8efbe..8a736a2a9270e8f5d6c21a79d583ff24b11947e6 100644
(file)
--- a/
src/common/textbuf.cpp
+++ b/
src/common/textbuf.cpp
@@
-35,17
+35,12
@@
// ----------------------------------------------------------------------------
// default type is the native one
// ----------------------------------------------------------------------------
// default type is the native one
-// the native type under Mac OS X is:
-// - Unix when compiling with the Apple Developer Tools (__UNIX__)
-// - Mac when compiling with CodeWarrior (__WXMAC__)
const wxTextFileType wxTextBuffer::typeDefault =
const wxTextFileType wxTextBuffer::typeDefault =
-#if defined(__WINDOWS__) || defined(__DOS__)
|| defined(__PALMOS__)
+#if defined(__WINDOWS__) || defined(__DOS__)
wxTextFileType_Dos;
#elif defined(__UNIX__)
wxTextFileType_Unix;
wxTextFileType_Dos;
#elif defined(__UNIX__)
wxTextFileType_Unix;
-#elif defined(__WXMAC__)
- wxTextFileType_Mac;
#elif defined(__OS2__)
wxTextFileType_Os2;
#else
#elif defined(__OS2__)
wxTextFileType_Os2;
#else
@@
-80,35
+75,35
@@
wxString wxTextBuffer::Translate(const wxString& text, wxTextFileType type)
wxString eol = GetEOL(type), result;
// optimization: we know that the length of the new string will be about
wxString eol = GetEOL(type), result;
// optimization: we know that the length of the new string will be about
- // the same as the length of the old one, so prealloc memory to av
io
d
+ // the same as the length of the old one, so prealloc memory to av
oi
d
// unnecessary relocations
result.Alloc(text.Len());
wxChar chLast = 0;
// unnecessary relocations
result.Alloc(text.Len());
wxChar chLast = 0;
- for (
const wxChar *pc = text.c_str(); *pc; pc++
)
+ for (
wxString::const_iterator i = text.begin(); i != text.end(); ++i
)
{
{
- wxChar ch = *
pc
;
+ wxChar ch = *
i
;
switch ( ch ) {
switch ( ch ) {
- case
_
T('\n'):
+ case
wx
T('\n'):
// Dos/Unix line termination
result += eol;
chLast = 0;
break;
// Dos/Unix line termination
result += eol;
chLast = 0;
break;
- case
_
T('\r'):
- if ( chLast ==
_
T('\r') ) {
+ case
wx
T('\r'):
+ if ( chLast ==
wx
T('\r') ) {
// Mac empty line
result += eol;
}
else {
// just remember it: we don't know whether it is just "\r"
// or "\r\n" yet
// Mac empty line
result += eol;
}
else {
// just remember it: we don't know whether it is just "\r"
// or "\r\n" yet
- chLast =
_
T('\r');
+ chLast =
wx
T('\r');
}
break;
default:
}
break;
default:
- if ( chLast ==
_
T('\r') ) {
+ if ( chLast ==
wx
T('\r') ) {
// Mac line termination
result += eol;
// Mac line termination
result += eol;
@@
-181,14
+176,14
@@
bool wxTextBuffer::Create()
return true;
}
return true;
}
-bool wxTextBuffer::Open(const wxString& strBufferName, wxMBConv& conv)
+bool wxTextBuffer::Open(const wxString& strBufferName,
const
wxMBConv& conv)
{
m_strBufferName = strBufferName;
return Open(conv);
}
{
m_strBufferName = strBufferName;
return Open(conv);
}
-bool wxTextBuffer::Open(wxMBConv& conv)
+bool wxTextBuffer::Open(
const
wxMBConv& conv)
{
// buffer name must be either given in ctor or in Open(const wxString&)
wxASSERT( !m_strBufferName.empty() );
{
// buffer name must be either given in ctor or in Open(const wxString&)
wxASSERT( !m_strBufferName.empty() );
@@
-218,7
+213,7
@@
wxTextFileType wxTextBuffer::GuessType() const
// we take MAX_LINES_SCAN in the beginning, middle and the end of buffer
#define MAX_LINES_SCAN (10)
// we take MAX_LINES_SCAN in the beginning, middle and the end of buffer
#define MAX_LINES_SCAN (10)
- size_t nCount = m_aLines.Count() / 3,
+ size_t nCount = m_aLines.
Get
Count() / 3,
nScan = nCount > 3*MAX_LINES_SCAN ? MAX_LINES_SCAN : nCount / 3;
#define AnalyseLine(n) \
nScan = nCount > 3*MAX_LINES_SCAN ? MAX_LINES_SCAN : nCount / 3;
#define AnalyseLine(n) \
@@
-226,7
+221,7
@@
wxTextFileType wxTextBuffer::GuessType() const
case wxTextFileType_Unix: nUnix++; break; \
case wxTextFileType_Dos: nDos++; break; \
case wxTextFileType_Mac: nMac++; break; \
case wxTextFileType_Unix: nUnix++; break; \
case wxTextFileType_Dos: nDos++; break; \
case wxTextFileType_Mac: nMac++; break; \
- default: wxFAIL_MSG(
_
("unknown line terminator")); \
+ default: wxFAIL_MSG(
wxT
("unknown line terminator")); \
}
size_t n;
}
size_t n;
@@
-276,7
+271,7
@@
bool wxTextBuffer::Close()
return true;
}
return true;
}
-bool wxTextBuffer::Write(wxTextFileType typeNew, wxMBConv& conv)
+bool wxTextBuffer::Write(wxTextFileType typeNew,
const
wxMBConv& conv)
{
return OnWrite(typeNew, conv);
}
{
return OnWrite(typeNew, conv);
}