Aegisub/src/compat.h

20 lines
411 B
C
Raw Normal View History

#pragma once
#include <string>
#include <vector>
#include <wx/colour.h>
#include <wx/arrstr.h>
#include <wx/string.h>
#include <libaegisub/color.h>
2014-12-31 02:31:10 +01:00
wxColour to_wx(agi::Color color);
wxString to_wx(std::string const& str);
wxArrayString to_wx(std::vector<std::string> const& vec);
2014-12-31 02:31:10 +01:00
agi::Color from_wx(wxColour color);
std::string from_wx(wxString const& str);
wxArrayString lagi_MRU_wxAS(const char *list);