00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012 #ifndef _WX_UTIL_H_
00013 #define _WX_UTIL_H_
00014
00015
00016
00017
00018
00019 #include <wx/string.h>
00020 #include <wx/stream.h>
00021 #include <wx/wfstream.h>
00022
00023 #include <wx/window.h>
00024 #include <wx/frame.h>
00025
00026 #include "wx/export.h"
00027
00028
00029
00030
00031
00032 namespace wxUtil {
00033
00034
00035 void WriteString( wxOutputStream& stream, const wxString& string );
00036 wxString ReadString( wxInputStream& stream );
00037
00038
00039 bool SaveCheckFilename( const wxString& file );
00040 bool LoadCheckFilename( const wxString& file );
00041
00042
00043 void WXDLLIMPEXP_DI WriteWindowLayout( wxOutputStream& stream, wxWindow * pWindow );
00044 void WXDLLIMPEXP_DI ReadWindowLayout( wxInputStream& stream, wxWindow * pWindow );
00045
00046 }
00047
00048 #endif
00049