mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
9aca309611
In order to get rid of the old default font on Windows (Calibri) we are going to near ridiculous length. The reason for this is that we in the past always saved the default font in the settings (how stupid was that!) and so now even with a new default font in place, since there is an explicit font in the settings we take that instead of the default. Instead of requiring our existing users to use a registry cleaner to get the correct default font on Windows 7 and later (the VAST majority of our Windows users at this stage), we simply explicitly ignore that old default font. There is one very nasty side effect. A user cannot set Calibri as their font of choice on Windows 7 or later (because we always force them back onto Segoe). Given how much nicer Segoe looks I think this is an acceptable flaw - let's hope this doesn't come back to bite me in the future. At the same time this changes the default font size handling. We try to get the default font size of the OS so the app looks "right". This seems to not give me the expected result on Linux with KDE, but maybe I'm doing it wrong? Looks good when testing on Windows. See #712 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
186 lines
3.8 KiB
C
186 lines
3.8 KiB
C
/* linux.c */
|
|
/* implements Linux specific functions */
|
|
#include "dive.h"
|
|
#include "display.h"
|
|
#include "membuffer.h"
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <dirent.h>
|
|
#include <fnmatch.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <pwd.h>
|
|
|
|
// the DE should provide us with a default font and font size...
|
|
const char linux_system_divelist_default_font[] = "Sans";
|
|
const char *system_divelist_default_font = linux_system_divelist_default_font;
|
|
double system_divelist_default_font_size = -1.0;
|
|
|
|
void subsurface_OS_pref_setup(void)
|
|
{
|
|
// nothing
|
|
}
|
|
|
|
bool subsurface_ignore_font(const char *font)
|
|
{
|
|
// there are no old default fonts to ignore
|
|
return false;
|
|
}
|
|
|
|
void subsurface_user_info(struct user_info *user)
|
|
{
|
|
struct passwd *pwd = getpwuid(getuid());
|
|
const char *username = getenv("USER");
|
|
|
|
if (pwd) {
|
|
if (pwd->pw_gecos && *pwd->pw_gecos)
|
|
user->name = pwd->pw_gecos;
|
|
if (!username)
|
|
username = pwd->pw_name;
|
|
}
|
|
if (username && *username) {
|
|
char hostname[64];
|
|
struct membuffer mb = { 0 };
|
|
gethostname(hostname, sizeof(hostname));
|
|
put_format(&mb, "%s@%s", username, hostname);
|
|
user->email = mb_cstring(&mb);
|
|
}
|
|
}
|
|
|
|
const char *system_default_filename(void)
|
|
{
|
|
const char *home, *user;
|
|
char *buffer;
|
|
int len;
|
|
|
|
home = getenv("HOME");
|
|
user = getenv("LOGNAME");
|
|
len = strlen(home) + strlen(user) + 17;
|
|
buffer = malloc(len);
|
|
snprintf(buffer, len, "%s/subsurface/%s.xml", home, user);
|
|
return buffer;
|
|
}
|
|
|
|
int enumerate_devices(device_callback_t callback, void *userdata, int dc_type)
|
|
{
|
|
int index = -1, entries = 0;
|
|
DIR *dp = NULL;
|
|
struct dirent *ep = NULL;
|
|
size_t i;
|
|
FILE *file;
|
|
char *line = NULL;
|
|
char *fname;
|
|
size_t len;
|
|
if (dc_type != DC_TYPE_UEMIS) {
|
|
const char *dirname = "/dev";
|
|
const char *patterns[] = {
|
|
"ttyUSB*",
|
|
"ttyS*",
|
|
"ttyACM*",
|
|
"rfcomm*",
|
|
NULL
|
|
};
|
|
|
|
dp = opendir(dirname);
|
|
if (dp == NULL) {
|
|
return -1;
|
|
}
|
|
|
|
while ((ep = readdir(dp)) != NULL) {
|
|
for (i = 0; patterns[i] != NULL; ++i) {
|
|
if (fnmatch(patterns[i], ep->d_name, 0) == 0) {
|
|
char filename[1024];
|
|
int n = snprintf(filename, sizeof(filename), "%s/%s", dirname, ep->d_name);
|
|
if (n >= sizeof(filename)) {
|
|
closedir(dp);
|
|
return -1;
|
|
}
|
|
callback(filename, userdata);
|
|
if (is_default_dive_computer_device(filename))
|
|
index = entries;
|
|
entries++;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
closedir(dp);
|
|
}
|
|
if (dc_type != DC_TYPE_SERIAL) {
|
|
int num_uemis = 0;
|
|
file = fopen("/proc/mounts", "r");
|
|
if (file == NULL)
|
|
return index;
|
|
|
|
while ((getline(&line, &len, file)) != -1) {
|
|
char *ptr = strstr(line, "UEMISSDA");
|
|
if (ptr) {
|
|
char *end = ptr, *start = ptr;
|
|
while (start > line && *start != ' ')
|
|
start--;
|
|
if (*start == ' ')
|
|
start++;
|
|
while (*end != ' ' && *end != '\0')
|
|
end++;
|
|
|
|
*end = '\0';
|
|
fname = strdup(start);
|
|
|
|
callback(fname, userdata);
|
|
|
|
if (is_default_dive_computer_device(fname))
|
|
index = entries;
|
|
entries++;
|
|
num_uemis++;
|
|
free((void *)fname);
|
|
}
|
|
}
|
|
free(line);
|
|
fclose(file);
|
|
if (num_uemis == 1 && entries == 1) /* if we found only one and it's a mounted Uemis, pick it */
|
|
index = 0;
|
|
}
|
|
return index;
|
|
}
|
|
|
|
/* NOP wrappers to comform with windows.c */
|
|
int subsurface_rename(const char *path, const char *newpath)
|
|
{
|
|
return rename(path, newpath);
|
|
}
|
|
|
|
int subsurface_open(const char *path, int oflags, mode_t mode)
|
|
{
|
|
return open(path, oflags, mode);
|
|
}
|
|
|
|
FILE *subsurface_fopen(const char *path, const char *mode)
|
|
{
|
|
return fopen(path, mode);
|
|
}
|
|
|
|
void *subsurface_opendir(const char *path)
|
|
{
|
|
return (void *)opendir(path);
|
|
}
|
|
|
|
struct zip *subsurface_zip_open_readonly(const char *path, int flags, int *errorp)
|
|
{
|
|
return zip_open(path, flags, errorp);
|
|
}
|
|
|
|
int subsurface_zip_close(struct zip *zip)
|
|
{
|
|
return zip_close(zip);
|
|
}
|
|
|
|
/* win32 console */
|
|
void subsurface_console_init(bool dedicated)
|
|
{
|
|
/* NOP */
|
|
}
|
|
|
|
void subsurface_console_exit(void)
|
|
{
|
|
/* NOP */
|
|
}
|