added wxStandardPaths::GetResourcesDir() and GetLocalizedResourcesDir()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38370 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-03-25 17:00:40 +00:00
parent cc4d990340
commit 3af9f2de59
9 changed files with 148 additions and 29 deletions

View File

@@ -85,7 +85,7 @@
#define TEST_WCHAR
#define TEST_ZIP
#else // #if TEST_ALL
#define TEST_DIR
#define TEST_STDPATHS
#endif
// some tests are interactive, define this to run them
@@ -2685,6 +2685,15 @@ static void TestStandardPaths()
wxPrintf(_T("Data dir (user):\t%s\n"), stdp.GetUserDataDir().c_str());
wxPrintf(_T("Data dir (user local):\t%s\n"), stdp.GetUserLocalDataDir().c_str());
wxPrintf(_T("Plugins dir:\t\t%s\n"), stdp.GetPluginsDir().c_str());
wxPrintf(_T("Resources dir:\t\t%s\n"), stdp.GetResourcesDir().c_str());
wxPrintf(_T("Localized res. dir:\t%s\n"),
stdp.GetLocalizedResourcesDir(_T("fr")).c_str());
wxPrintf(_T("Message catalogs dir:\t%s\n"),
stdp.GetLocalizedResourcesDir
(
_T("fr"),
wxStandardPaths::ResourceCat_Messages
).c_str());
}
#endif // TEST_STDPATHS