- Various changes to how wxListCtrl and wxTreeCtrl react to right
mouse clicks and left mouse click for starting a drag operation.
- "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not WXK_MENU
+- wxFFile::ReadAll() now takes an optional wxMBConv parameter
All (GUI):
The number of bytes read.
+\membersection{wxFFile::ReadAll}\label{wxffilereadall}
+
+\func{bool}{ReadAll}{\param{wxString *}{ str}, \param{wxMBConv\&}{ conv = wxConvUTF8}}
+
+Reads the entire contents of the file into a string.
+
+\wxheading{Parameters}
+
+\docparam{str}{String to read data into.}
+
+\docparam{conv}{Conversion object to use in Unicode build; by default supposes
+that file contents is encoded in UTF-8.}
+
+\wxheading{Return value}
+
+\true if file was read successfully, \false otherwise.
+
+
\membersection{wxFFile::Seek}\label{wxffileseek}
\func{bool}{Seek}{\param{wxFileOffset }{ofs}, \param{wxSeekMode }{mode = wxFromStart}}
// read/write (unbuffered)
// read all data from the file into a string (useful for text files)
- bool ReadAll(wxString *str);
+ bool ReadAll(wxString *str, wxMBConv& conv = wxConvUTF8);
// returns number of bytes read - use Eof() and Error() to see if an error
// occured or not
size_t Read(void *pBuf, size_t nCount);
// read/write
// ----------------------------------------------------------------------------
-bool wxFFile::ReadAll(wxString *str)
+bool wxFFile::ReadAll(wxString *str, wxMBConv& conv)
{
wxCHECK_MSG( str, false, wxT("invalid parameter") );
wxCHECK_MSG( IsOpened(), false, wxT("can't read from closed file") );
clearerr(m_fp);
- str->Empty();
- str->Alloc(length);
-
- wxChar buf[1024];
- static const size_t nSize = WXSIZEOF(buf) - 1; // -1 for trailing '\0'
- while ( !Eof() )
+ const size_t fileLen = Length();
+ wxCharBuffer buf(fileLen + 1);
+ if ( (fread(buf.data(), sizeof(char), fileLen, m_fp) < fileLen) || Error() )
{
- size_t nRead = fread(buf, sizeof(wxChar), nSize, m_fp);
- if ( (nRead < nSize) && Error() )
- {
- wxLogSysError(_("Read error on file '%s'"), m_name.c_str());
-
- return false;
- }
- //else: just EOF
+ wxLogSysError(_("Read error on file '%s'"), m_name.c_str());
- buf[nRead] = 0;
- *str += buf;
+ return false;
}
+ buf.data()[fileLen] = 0;
+ *str = wxString(buf, conv);
+
return true;
}