Searched refs:wxTextFile (Results 1 - 25 of 30) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dtextfile.h3 // Purpose: class wxTextFile to work with text files of _small_ size
26 // wxTextFile
29 class WXDLLIMPEXP_BASE wxTextFile : public wxTextBuffer class in inherits:wxTextBuffer
33 wxTextFile() { } function in class:wxTextFile
34 wxTextFile(const wxString& strFileName);
49 DECLARE_NO_COPY_CLASS(wxTextFile)
54 // old code relies on the static methods of wxTextFile being always available
57 typedef wxTextBuffer wxTextFile; typedef
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtextfile.tex1 \section{\class{wxTextFile}}\label{wxtextfile}
3 The wxTextFile is a simple class which allows to work with text files on line by
15 which are well handled by wxTextFile.
17 The typical things you may do with wxTextFile in order are:
74 \membersection{wxTextFile::wxTextFile}\label{wxtextfilectordef}
76 \constfunc{}{wxTextFile}{\void}
81 \membersection{wxTextFile::wxTextFile}\label{wxtextfilector}
83 \constfunc{}{wxTextFile}{\para
[all...]
H A Dtfile.tex4 \helpref{wxTextFile}{wxtextfile}
10 example, the \helpref{wxTextFile}{wxtextfile} class which may be used to convert
22 wxTextFile is a general purpose class for working with small text files on line
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dtextfile.cpp3 // Purpose: implementation of wxTextFile class
41 // wxTextFile class implementation
44 wxTextFile::wxTextFile(const wxString& strFileName) function in class:wxTextFile
54 bool wxTextFile::OnExists() const
60 bool wxTextFile::OnOpen(const wxString &strBufferName, wxTextBufferOpenMode OpenMode)
67 wxFAIL_MSG( _T("unknown open mode in wxTextFile::Open") );
83 bool wxTextFile::OnClose()
89 bool wxTextFile::OnRead(const wxMBConv& conv)
99 // in memory by wxTextFile anyho
[all...]
H A Dstdpbase.cpp116 wxTextFile textFile;
H A Dfileconf.cpp395 wxTextFile fileGlobal(m_strGlobalFile);
411 wxTextFile fileLocal(m_strLocalFile);
1055 filetext << p->Text() << wxTextFile::GetEOL();
1088 line += wxTextFile::GetEOL();
H A Dstream.cpp1383 static const wxChar *eol = wxTextFile::GetEOL();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/textfile/
H A Dtextfiletest.cpp3 // Purpose: wxTextFile unit test
97 wxTextFile f;
107 wxTextFile f;
121 wxTextFile f;
135 wxTextFile f;
149 wxTextFile f;
168 wxTextFile f;
187 wxTextFile f;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DamuleAppCommon.cpp34 #include <wx/textfile.h> // Needed for wxTextFile
104 wxTextFile file(fullPath);
356 wxTextFile ed2kFile(ConfigDir + wxT("ED2KLinks"));
394 wxTextFile ed2kFile(ConfigDir + wxT("ED2KLinks"));
H A Damule.cpp458 wxTextFile vfile( ConfigDir + wxT("lastversion") );
848 wxTextFile amulesig_out;
849 wxTextFile emulesig_out;
957 // eMule signature finished here. Write the line to the wxTextFile.
1580 wxTextFile file;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/wince/
H A Dtextctrlce.cpp184 valueWin = wxTextFile::Translate(value, wxTextFileType_Dos);
391 str = wxTextFile::Translate(str, wxTextFileType_Unix);
433 valueDos = wxTextFile::Translate(value, wxTextFileType_Dos);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dtipdlg.cpp82 wxTextFile m_textfile;
H A Dhelpext.cpp291 wxTextFile input;
H A Dlogg.cpp568 wxTextFile::GetEOL());
1017 << wxTextFile::GetEOL();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/demos/forty/
H A Dforty.cpp323 wxTextFile file(htmlFile);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dsetup_microwin.h246 // use wxTextBuffer class: required by wxTextFile
249 // use wxTextFile class: requires wxFile and wxTextBuffer, required by
253 // i18n support: _() macro, wxLocale class. Requires wxTextFile.
1165 #error You cannot compile wxTextFile without wxFile
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dtextctrl.cpp446 valueWin = wxTextFile::Translate(value, wxTextFileType_Dos);
809 str = wxTextFile::Translate(str, wxTextFileType_Unix);
829 str = wxTextFile::Translate(str, wxTextFileType_Unix);
1069 valueDos = wxTextFile::Translate(value, wxTextFileType_Dos);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/htlbox/
H A Dhtlbox.cpp95 wxTextFile m_file;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/fileconf/
H A Dfileconftest.cpp47 return wxTextFile::Translate(sos.GetString(), wxTextFileType_Unix);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Dmimetype.cpp71 // this class is a wxTextFile specialization for dealing with files storing
74 // it should be used instead of wxTextFile even if none of its additional
78 class wxMimeTextFile : public wxTextFile
82 wxMimeTextFile () : wxTextFile () { }
83 wxMimeTextFile(const wxString& strFile) : wxTextFile(strFile) { }
182 return wxTextFile::OnRead(
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/aLinkCreator/src/
H A Dalcframe.cpp456 file.Write(link + wxTextFile::GetEOL());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/tex2rtf/src/
H A Dtexutils.cpp391 wxTextFile file;
433 wxTextFile file;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/font/
H A Dfont.cpp716 wxTextFile file(filename);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/
H A Dtextctrl.cpp2152 // wxTextFile::Translate() is needed to transform all '\n' into "\r\n"
2153 wxString text = wxTextFile::Translate(GetTextToShow(GetSelectionText()));
2192 wxString text = wxTextFile::Translate(data.GetText(),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/utils/convertrc/
H A Drc2xml.cpp1368 wxTextFile r;

Completed in 251 milliseconds

12