1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/* Hey EMACS -*- linux-c -*- */
/* $Id: tilp_paths.c 3218 2007-02-24 17:57:22Z roms $ */
/* TiLP - Tilp Is a Linking Program
* Copyright (C) 1999-2006 Romain Lievin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
Initialization of portable paths
*/
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#ifdef __WIN32__
#include <windows.h>
#endif
#include "tilp_core.h"
TilpInstPaths inst_paths =
{
"", "\\locale", "\\manpages", "\\help", "\\pixmaps"
};
/*
Called by TiLP at startup for initializing platform dependant paths.
*/
#if defined(__LINUX__) || defined(__BSD__) || defined(__MACOSX__)
static void init_linux_paths(void)
{
inst_paths.base_dir =
g_strconcat(SHARE_DIR, G_DIR_SEPARATOR_S, NULL);
inst_paths.pixmap_dir =
g_strconcat(inst_paths.base_dir, "pixmaps/", NULL);
inst_paths.icon_dir =
g_strconcat(inst_paths.base_dir, "icons/", NULL);
inst_paths.help_dir =
g_strconcat(inst_paths.base_dir, "help/", NULL);
inst_paths.manpage_dir =
g_strconcat(inst_paths.base_dir, "", NULL);
inst_paths.glade_dir =
g_strconcat(inst_paths.base_dir, "glade/", NULL);
inst_paths.home_dir =
g_strdup(g_get_home_dir());
#ifdef ENABLE_NLS
inst_paths.locale_dir = g_strconcat(LOCALEDIR, "/", NULL);
#endif /* */
}
#endif /* */
#ifdef __WIN32__
static void init_win32_paths(void)
{
char *home_dir = NULL;
HMODULE hModule;
DWORD dWord;
char *dirname;
char *sBuffer;
// Init the path for the Windows version by getting the
// executable location.
hModule = GetModuleHandle("tilp.exe");
sBuffer = (char *) malloc(4096 * sizeof(char));
dWord = GetModuleFileName(hModule, sBuffer, 4096);
dirname = g_dirname(sBuffer);
// MinGW Option, allows Windows Users to run on a Linux File Hierarhcy
#ifdef __MINGW32__
#define MINGW_REL "share\\tilp2"
char *basename;
basename = g_path_get_basename(dirname);
// Will replace /target/bin with /target/share/tilp2 in MinGW/MSYS
if ((strlen(basename) == 3) && !g_strcasecmp(basename, "bin"))
{
gchar *token;
dirname = g_realloc(dirname, strlen(dirname) + strlen(MINGW_REL) + 1);
token = dirname + strlen(dirname) - 3;
strcpy(token, MINGW_REL);
}
#endif
inst_paths.base_dir = g_strconcat(dirname, "\\", NULL);
g_free(dirname);
free(sBuffer);
inst_paths.pixmap_dir =
g_strconcat(inst_paths.base_dir, "pixmaps\\", NULL);
inst_paths.icon_dir =
g_strconcat(inst_paths.base_dir, "icons\\", NULL);
inst_paths.help_dir =
g_strconcat(inst_paths.base_dir, "help\\", NULL);
inst_paths.manpage_dir =
g_strconcat(inst_paths.base_dir, "", NULL);
inst_paths.glade_dir =
g_strconcat(inst_paths.base_dir, "glade\\", NULL);
#ifdef __MINGW32__
inst_paths.home_dir = g_get_current_dir();
#else
inst_paths.home_dir =
g_strconcat(inst_paths.base_dir, "My TI files\\", NULL);
#endif
#ifdef ENABLE_NLS
inst_paths.locale_dir =
g_strconcat(inst_paths.base_dir, "locale\\", NULL);
#endif /* */
}
#endif /* */
int tilp_paths_init(void)
{
#if defined(__LINUX__) || defined(__BSD__) || defined(__MACOSX__)
init_linux_paths();
#elif defined(__WIN32__)
init_win32_paths();
#endif /* */
return 0;
}
const char *tilp_paths_build_glade(const char *name)
{
static char *path = NULL;
g_free(path);
path = g_strconcat(inst_paths.glade_dir, name, NULL);
return path;
}
|