ios export dir support
This commit is contained in:
parent
55ca7ed09f
commit
4575f184a5
5 changed files with 50 additions and 37 deletions
|
|
@ -26,6 +26,7 @@
|
||||||
|
|
||||||
#define IOS_FONTS_PATH "../Library/Fonts"
|
#define IOS_FONTS_PATH "../Library/Fonts"
|
||||||
#define IOS_PREFERENCES_PATH "../Library/Application Support/TuxPaint"
|
#define IOS_PREFERENCES_PATH "../Library/Application Support/TuxPaint"
|
||||||
|
#define IOS_PICTURES_PATH "../Documents"
|
||||||
|
|
||||||
|
|
||||||
const char *apple_fontsPath(void)
|
const char *apple_fontsPath(void)
|
||||||
|
|
@ -44,3 +45,9 @@ const char *apple_globalPreferencesPath(void)
|
||||||
{
|
{
|
||||||
return IOS_PREFERENCES_PATH;
|
return IOS_PREFERENCES_PATH;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const char *apple_picturesPath(void)
|
||||||
|
{
|
||||||
|
return IOS_PICTURES_PATH;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
const char *apple_fontsPath(void);
|
const char *apple_fontsPath(void);
|
||||||
const char *apple_preferencesPath(void);
|
const char *apple_preferencesPath(void);
|
||||||
const char *apple_globalPreferencesPath(void);
|
const char *apple_globalPreferencesPath(void);
|
||||||
|
const char *apple_picturesPath(void);
|
||||||
|
|
||||||
|
|
||||||
#endif /* __IOS_H__ */
|
#endif /* __IOS_H__ */
|
||||||
|
|
|
||||||
63
src/macos.c
63
src/macos.c
|
|
@ -27,58 +27,61 @@
|
||||||
#define MACOS_FONTS_PATH "%s/Library/Fonts"
|
#define MACOS_FONTS_PATH "%s/Library/Fonts"
|
||||||
#define MACOS_PREFERENCES_PATH "%s/Library/Application Support/TuxPaint"
|
#define MACOS_PREFERENCES_PATH "%s/Library/Application Support/TuxPaint"
|
||||||
#define MACOS_GLOBAL_PREFERENCES_PATH "/Library/Application Support/TuxPaint"
|
#define MACOS_GLOBAL_PREFERENCES_PATH "/Library/Application Support/TuxPaint"
|
||||||
|
#define MACOS_PICTURES_PATH "%s/Pictures"
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* FIXME
|
|
||||||
*/
|
|
||||||
const char *apple_fontsPath(void)
|
const char *apple_fontsPath(void)
|
||||||
{
|
{
|
||||||
static char *p = NULL;
|
static char *p = NULL;
|
||||||
|
|
||||||
if (!p)
|
if(!p) {
|
||||||
{
|
const char *home = getenv("HOME");
|
||||||
const char *home = getenv("HOME");
|
|
||||||
|
|
||||||
p = malloc(strlen(home) + strlen(MACOS_FONTS_PATH) + 1);
|
p = malloc(strlen(home) + strlen(MACOS_FONTS_PATH) + 1);
|
||||||
|
|
||||||
if (p)
|
if(p) sprintf(p, MACOS_FONTS_PATH, getenv("HOME"));
|
||||||
sprintf(p, MACOS_FONTS_PATH, getenv("HOME"));
|
else perror("apple_fontsPath");
|
||||||
else
|
|
||||||
perror("apple_fontsPath");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* FIXME
|
|
||||||
*/
|
|
||||||
const char *apple_preferencesPath(void)
|
const char *apple_preferencesPath(void)
|
||||||
{
|
{
|
||||||
static char *p = NULL;
|
static char *p = NULL;
|
||||||
|
|
||||||
if (!p)
|
if(!p) {
|
||||||
{
|
const char *home = getenv("HOME");
|
||||||
const char *home = getenv("HOME");
|
|
||||||
|
|
||||||
p = malloc(strlen(home) + strlen(MACOS_PREFERENCES_PATH) + 1);
|
p = malloc(strlen(home) + strlen(MACOS_PREFERENCES_PATH) + 1);
|
||||||
|
|
||||||
if (p)
|
if(p) sprintf(p, MACOS_PREFERENCES_PATH, getenv("HOME"));
|
||||||
sprintf(p, MACOS_PREFERENCES_PATH, getenv("HOME"));
|
else perror("apple_preferencesPath");
|
||||||
else
|
|
||||||
perror("apple_preferencesPath");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* FIXME
|
|
||||||
*/
|
|
||||||
const char *apple_globalPreferencesPath(void)
|
const char *apple_globalPreferencesPath(void)
|
||||||
{
|
{
|
||||||
return MACOS_GLOBAL_PREFERENCES_PATH;
|
return MACOS_GLOBAL_PREFERENCES_PATH;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const char *apple_picturesPath(void)
|
||||||
|
{
|
||||||
|
static char *p = NULL;
|
||||||
|
|
||||||
|
if(!p) {
|
||||||
|
const char *home = getenv("HOME");
|
||||||
|
|
||||||
|
p = malloc(strlen(home) + strlen(MACOS_PICTURES_PATH) + 1);
|
||||||
|
|
||||||
|
if(p) sprintf(p, MACOS_PICTURES_PATH, getenv("HOME"));
|
||||||
|
else perror("apple_picturesPath");
|
||||||
|
}
|
||||||
|
|
||||||
|
return p;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
const char *apple_fontsPath(void);
|
const char *apple_fontsPath(void);
|
||||||
const char *apple_preferencesPath(void);
|
const char *apple_preferencesPath(void);
|
||||||
const char *apple_globalPreferencesPath(void);
|
const char *apple_globalPreferencesPath(void);
|
||||||
|
const char *apple_picturesPath(void);
|
||||||
|
|
||||||
|
|
||||||
#endif /* __MACOS_H__ */
|
#endif /* __MACOS_H__ */
|
||||||
|
|
|
||||||
|
|
@ -23392,10 +23392,11 @@ static void setup_config(char *argv[])
|
||||||
/* FIXME: Need assist for:
|
/* FIXME: Need assist for:
|
||||||
* __BEOS__
|
* __BEOS__
|
||||||
* __HAIKU__
|
* __HAIKU__
|
||||||
* __APPLE__
|
|
||||||
*/
|
*/
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
picturesdir = GetUserImageDir();
|
picturesdir = GetUserImageDir();
|
||||||
|
#elif __APPLE__
|
||||||
|
picturesdir = apple_picturesPath();
|
||||||
#else
|
#else
|
||||||
picturesdir = get_xdg_user_dir("PICTURES", "Pictures");
|
picturesdir = get_xdg_user_dir("PICTURES", "Pictures");
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue