kicad/common/swig/wx_python_helpers.h

19 lines
465 B
C
Raw Normal View History

#ifndef WX_HELPERS_H_
#define WX_HELPERS_H_
2012-03-10 21:40:41 +00:00
#include <Python.h>
#include <wx/intl.h>
#include <wx/string.h>
#include <wx/arrstr.h>
2012-03-10 21:40:41 +00:00
2012-06-27 21:19:19 +00:00
PyObject* wxArrayString2PyList( const wxArrayString& lst );
wxString* newWxStringFromPy( PyObject* source );
wxString Py2wxString( PyObject* source );
PyObject* wx2PyString( const wxString& src );
2012-06-27 21:19:19 +00:00
void wxSetDefaultPyEncoding( const char* encoding );
2012-03-10 21:40:41 +00:00
const char* wxGetDefaultPyEncoding();
#endif // WX_HELPERS_H_