2013-01-04 16:01:50 +01:00
|
|
|
#pragma once
|
|
|
|
|
2010-05-21 03:13:36 +02:00
|
|
|
#include <string>
|
2012-10-30 16:59:47 +01:00
|
|
|
#include <vector>
|
2010-05-21 03:13:36 +02:00
|
|
|
|
|
|
|
#include <wx/colour.h>
|
|
|
|
#include <wx/arrstr.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
|
2012-10-26 16:09:14 +02:00
|
|
|
#include <libaegisub/color.h>
|
2010-05-21 03:13:36 +02:00
|
|
|
|
2014-12-31 02:31:10 +01:00
|
|
|
wxColour to_wx(agi::Color color);
|
|
|
|
wxString to_wx(std::string const& str);
|
2012-10-30 16:59:47 +01:00
|
|
|
wxArrayString to_wx(std::vector<std::string> const& vec);
|
2012-10-26 16:09:14 +02:00
|
|
|
|
2014-12-31 02:31:10 +01:00
|
|
|
agi::Color from_wx(wxColour color);
|
|
|
|
std::string from_wx(wxString const& str);
|
2012-10-26 16:09:14 +02:00
|
|
|
|
2014-07-05 06:21:35 +02:00
|
|
|
wxArrayString lagi_MRU_wxAS(const char *list);
|