1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-18 12:00:31 +01:00
Files
wmaker/util/wmmenugen_misc.c
Christophe CURIS b431dcc399 util: cosmetic updates to the list of terminals for wmmenugen
Added a comment to describe each terminal, so it will be easier to maintain
the list in the future; added const attributes to help compiler generate
better code; changed list parsing to use the size of the array instead of
a null pointer mark for better compiled result.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2014-06-16 20:00:09 +01:00

173 lines
4.1 KiB
C

/*
* wmmenugen - Window Maker PropList menu generator
*
* miscellaneous functions
*
* Copyright (c) 2010. Tamas Tevesz <ice@extreme.hu>
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <libgen.h>
#include <stdlib.h>
#include <string.h>
#include <WINGs/WUtil.h>
static const char *const terminals[] = {
"x-terminal-emulator", /* Debian wrapper to launch user's prefered X terminal */
"aterm", /* AfterStep's X terminal, which provides "transparency" */
"eterm", /* Enlightenment's terminal, designed for eye-candyness (and efficiency) */
"gnome-terminal", /* GNOME project's terminal */
"konsole", /* KDE project's terminals */
"kterm", /* a Multi-Lingual Terminal based on xterm, originally by Katsuya Sano */
"mlterm", /* a Multi-Lingual Terminal emulator written from scratch */
"rxvt", /* a slimmed-down xterm */
"mrxvt", /* rxvt with support for tabs amongst other things */
"pterm", /* terminal based on PuTTY, a popular SSH client for Windows */
"xterm", /* the standard terminal provided by the X Window System */
"dtterm" /* provided by CDE, a frequent Desktop Environment in proprietary UNIXs */
};
/* pick a terminal emulator by finding the first existing entry of `terminals'
* in $PATH. the returned pointer should be wfreed later.
* if $WMMENU_TERMINAL exists in the environment, it's value overrides this
* detection.
*/
char *find_terminal_emulator(void)
{
char *path, *t;
int i;
t = getenv("WMMENU_TERMINAL");
if (t)
return wstrdup(t);
path = getenv("PATH");
if (!path)
return NULL;
for (i = 0; i < wlengthof(terminals); i++) {
t = wfindfile(path, terminals[i]);
if (t) {
wfree(t);
return wstrdup(terminals[i]);
}
}
return NULL;
}
/* tokenize `what' (LC_MESSAGES or LANG if `what' is NULL) in the form of
* `language[_territory][.codeset][@modifier]' into separate language, country,
* encoding, modifier components, which are allocated on demand and should be
* wfreed later. components that do not exist in `what' are set to NULL.
*/
void parse_locale(const char *what, char **language, char **country, char **encoding, char **modifier)
{
char *e, *p;
*language = *country = *encoding = *modifier = NULL;
if (what == NULL) {
e = getenv("LC_MESSAGES");
if (e == NULL) {
e = getenv("LANG"); /* this violates the spec */
if (e == NULL)
return;
}
e = wstrdup(e);
} else {
e = wstrdup(what);
}
if (strlen(e) == 0 ||
strcmp(e, "POSIX") == 0 ||
strcmp(e, "C") == 0)
goto out;
p = strchr(e, '@');
if (p) {
*modifier = wstrdup(p + 1);
*p = '\0';
}
p = strchr(e, '.');
if (p) {
*encoding = wstrdup(p + 1);
*p = '\0';
}
p = strchr(e, '_');
if (p) {
*country = wstrdup(p + 1);
*p = '\0';
}
if (strlen(e) > 0)
*language = wstrdup(e);
out:
free(e);
return;
}
/* determine whether (first token of) given file is in $PATH
*/
Bool fileInPath(const char *file)
{
char *p, *t;
static char *path = NULL;
if (!file || !*file)
return False;
/* if it's an absolute path spec, don't override the user.
* s/he might just know better.
*/
if (*file == '/')
return True;
/* if it has a directory separator at random places,
* we might know better.
*/
p = strchr(file, '/');
if (p)
return False;
if (!path) {
path = getenv("PATH");
if (!path)
return False;
}
p = wstrdup(file);
t = strpbrk(p, " \t");
if (t)
*t = '\0';
t = wfindfile(path, p);
wfree(p);
if (t) {
wfree(t);
return True;
}
return False;
}