Ejemplo n.º 1
0
    std::string getModuleUserDataPath(const char * module, bool isapplication)
    {
      (void) isapplication;

      assert(strlen(module) < 128);
      char buf[312];

      sprintf(buf, "%s/Library/%s", getUserHomePath().c_str(), module);

      return buf;
    }
Ejemplo n.º 2
0
wxString FRConfig::getDBHFileName() const
{
    return getUserHomePath() + "fr_databases.conf";
}
Ejemplo n.º 3
0
wxFileName FRConfig::getConfigFileName() const
{
    return wxFileName(getUserHomePath(), "fr_settings.conf");
}
Ejemplo n.º 4
0
wxString FRConfig::getUserSysTemplatesPath() const
{
    return getUserHomePath() + "sys-templates"
        + wxFileName::GetPathSeparator();
}