405 lines
11 KiB
C
405 lines
11 KiB
C
/* $Id$ */
|
|
static char const _copyright[] =
|
|
"Copyright (c) 2009-2012 Pierre Pronchery <khorben@defora.org>";
|
|
/* This file is part of DeforaOS Desktop Panel */
|
|
static char const _license[] =
|
|
"This program is free software: you can redistribute it and/or modify\n"
|
|
"it under the terms of the GNU General Public License as published by\n"
|
|
"the Free Software Foundation, version 3 of the License.\n"
|
|
"\n"
|
|
"This program is distributed in the hope that it will be useful,\n"
|
|
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
|
|
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
|
|
"GNU General Public License for more details.\n"
|
|
"\n"
|
|
"You should have received a copy of the GNU General Public License\n"
|
|
"along with this program. If not, see <http://www.gnu.org/licenses/>.";
|
|
/* TODO:
|
|
* - implement all remaining helpers */
|
|
|
|
|
|
|
|
#ifdef __NetBSD__
|
|
# include <sys/param.h>
|
|
# include <sys/sysctl.h>
|
|
#else
|
|
# include <fcntl.h>
|
|
#endif
|
|
#include <dirent.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <gtk/gtk.h>
|
|
#include <System.h>
|
|
#include <Desktop.h>
|
|
#include <Desktop/Browser.h>
|
|
|
|
|
|
/* types */
|
|
struct _Panel
|
|
{
|
|
Config * config;
|
|
GtkWidget * window;
|
|
gint timeout;
|
|
guint source;
|
|
};
|
|
|
|
|
|
/* constants */
|
|
#ifndef PREFIX
|
|
# define PREFIX "/usr/local"
|
|
#endif
|
|
#ifndef LIBDIR
|
|
# define LIBDIR PREFIX "/lib"
|
|
#endif
|
|
|
|
|
|
static char const * _authors[] =
|
|
{
|
|
"Pierre Pronchery <khorben@defora.org>",
|
|
NULL
|
|
};
|
|
|
|
|
|
/* private */
|
|
/* prototypes */
|
|
static int _applet_list(void);
|
|
static char * _config_get_filename(void);
|
|
|
|
static int _error(char const * message, int ret);
|
|
|
|
|
|
/* helper */
|
|
/* essential */
|
|
static void _helper_init(PanelAppletHelper * helper, Panel * panel,
|
|
PanelAppletType type, GtkIconSize iconsize);
|
|
|
|
/* useful */
|
|
static char const * _helper_config_get(Panel * panel, char const * section,
|
|
char const * variable);
|
|
static int _helper_config_set(Panel * panel, char const * section,
|
|
char const * variable, char const * value);
|
|
static int _helper_error(Panel * panel, char const * message, int ret);
|
|
static void _helper_about_dialog(Panel * panel);
|
|
static int _helper_lock(Panel * panel);
|
|
static void _helper_logout_dialog(Panel * panel);
|
|
static void _helper_position_menu(Panel * panel, GtkMenu * menu, gint * x,
|
|
gint * y, gboolean * push_in);
|
|
static void _helper_rotate_screen(Panel * panel);
|
|
static void _helper_shutdown_dialog(Panel * panel);
|
|
static int _helper_suspend(Panel * panel);
|
|
|
|
|
|
/* functions */
|
|
/* applet_list */
|
|
static int _applet_list(void)
|
|
{
|
|
char const path[] = LIBDIR "/Panel/applets";
|
|
DIR * dir;
|
|
struct dirent * de;
|
|
size_t len;
|
|
char const * sep = "";
|
|
#ifdef __APPLE__
|
|
char const ext[] = ".dylib";
|
|
#else
|
|
char const ext[] = ".so";
|
|
#endif
|
|
|
|
puts("Applets available:");
|
|
if((dir = opendir(path)) == NULL)
|
|
return _error(path, 1);
|
|
while((de = readdir(dir)) != NULL)
|
|
{
|
|
len = strlen(de->d_name);
|
|
if(len < sizeof(ext) || strcmp(&de->d_name[
|
|
len - sizeof(ext) + 1], ext) != 0)
|
|
continue;
|
|
de->d_name[len - 3] = '\0';
|
|
printf("%s%s", sep, de->d_name);
|
|
sep = ", ";
|
|
}
|
|
putchar('\n');
|
|
closedir(dir);
|
|
return 0;
|
|
}
|
|
|
|
|
|
/* config_get_filename */
|
|
static char * _config_get_filename(void)
|
|
{
|
|
char const * homedir;
|
|
size_t len;
|
|
char * filename;
|
|
|
|
if((homedir = getenv("HOME")) == NULL)
|
|
homedir = g_get_home_dir();
|
|
len = strlen(homedir) + 1 + sizeof(PANEL_CONFIG_FILE);
|
|
if((filename = malloc(len)) == NULL)
|
|
return NULL;
|
|
snprintf(filename, len, "%s/%s", homedir, PANEL_CONFIG_FILE);
|
|
return filename;
|
|
}
|
|
|
|
|
|
/* error */
|
|
static int _error(char const * message, int ret)
|
|
{
|
|
return _helper_error(NULL, message, ret);
|
|
}
|
|
|
|
|
|
/* helpers */
|
|
/* essential */
|
|
/* helper_init */
|
|
static void _helper_init(PanelAppletHelper * helper, Panel * panel,
|
|
PanelAppletType type, GtkIconSize iconsize)
|
|
{
|
|
memset(helper, 0, sizeof(*helper));
|
|
helper->panel = panel;
|
|
helper->type = type;
|
|
helper->icon_size = iconsize;
|
|
helper->config_get = _helper_config_get;
|
|
helper->config_set = _helper_config_set;
|
|
helper->error = _helper_error;
|
|
helper->about_dialog = _helper_about_dialog;
|
|
helper->lock = _helper_lock;
|
|
helper->logout_dialog = _helper_logout_dialog;
|
|
helper->position_menu = _helper_position_menu;
|
|
helper->rotate_screen = _helper_rotate_screen;
|
|
helper->shutdown_dialog = _helper_shutdown_dialog;
|
|
helper->suspend = _helper_suspend;
|
|
}
|
|
|
|
|
|
/* useful */
|
|
/* helper_config_get */
|
|
static char const * _helper_config_get(Panel * panel, char const * section,
|
|
char const * variable)
|
|
{
|
|
#ifdef DEBUG
|
|
fprintf(stderr, "DEBUG: %s(\"%s\", \"%s\")\n", __func__, section,
|
|
variable);
|
|
#endif
|
|
return config_get(panel->config, section, variable);
|
|
}
|
|
|
|
|
|
/* helper_config_set */
|
|
static int _helper_config_set(Panel * panel, char const * section,
|
|
char const * variable, char const * value)
|
|
{
|
|
#ifdef DEBUG
|
|
fprintf(stderr, "DEBUG: %s(\"%s\", \"%s\", \"%s\")\n", __func__,
|
|
section, variable, value);
|
|
#endif
|
|
/* setting but _not_ saving the configuration */
|
|
return config_set(panel->config, section, variable, value);
|
|
}
|
|
|
|
|
|
/* helper_error */
|
|
static int _helper_error(Panel * panel, char const * message, int ret)
|
|
{
|
|
fputs(PACKAGE ": ", stderr);
|
|
perror(message);
|
|
return ret;
|
|
}
|
|
|
|
|
|
/* helper_about_dialog */
|
|
static void _helper_about_dialog(Panel * panel)
|
|
{
|
|
GtkWidget * dialog;
|
|
|
|
dialog = desktop_about_dialog_new();
|
|
desktop_about_dialog_set_authors(dialog, _authors);
|
|
desktop_about_dialog_set_comments(dialog,
|
|
"Test application for the DeforaOS desktop panel");
|
|
desktop_about_dialog_set_copyright(dialog, _copyright);
|
|
desktop_about_dialog_set_logo_icon_name(dialog,
|
|
"panel-settings"); /* XXX */
|
|
desktop_about_dialog_set_license(dialog, _license);
|
|
desktop_about_dialog_set_name(dialog, PACKAGE);
|
|
desktop_about_dialog_set_program_name(dialog, "Panel test");
|
|
desktop_about_dialog_set_version(dialog, VERSION);
|
|
desktop_about_dialog_set_website(dialog,
|
|
"http://www.defora.org/");
|
|
gtk_window_set_position(GTK_WINDOW(dialog),
|
|
GTK_WIN_POS_CENTER_ALWAYS);
|
|
gtk_dialog_run(GTK_DIALOG(dialog));
|
|
gtk_widget_destroy(dialog);
|
|
}
|
|
|
|
|
|
/* helper_lock */
|
|
static gboolean _lock_on_idle(gpointer data);
|
|
|
|
static int _helper_lock(Panel * panel)
|
|
{
|
|
panel->source = g_idle_add(_lock_on_idle, panel);
|
|
return 0;
|
|
}
|
|
|
|
static gboolean _lock_on_idle(gpointer data)
|
|
{
|
|
/* XXX code duplicated from panel.c */
|
|
/* FIXME default to calling XActivateScreenSaver() */
|
|
Panel * panel = data;
|
|
char const * command = "xset s activate";
|
|
char const * p;
|
|
GError * error = NULL;
|
|
|
|
panel->source = 0;
|
|
if((p = config_get(panel->config, "lock", "command")) != NULL)
|
|
command = p;
|
|
if(g_spawn_command_line_async(command, &error) != TRUE)
|
|
{
|
|
/* XXX will also call perror() */
|
|
_helper_error(panel, error->message, 1);
|
|
g_error_free(error);
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
/* helper_logout_dialog */
|
|
static void _helper_logout_dialog(Panel * panel)
|
|
{
|
|
GtkWidget * dialog;
|
|
GtkWidget * widget;
|
|
const char message[] = "This will log you out of the current session,"
|
|
" therefore closing any application currently opened"
|
|
" and losing any unsaved data.\n"
|
|
"Do you really want to proceed?";
|
|
|
|
dialog = gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_QUESTION,
|
|
GTK_BUTTONS_NONE,
|
|
#if GTK_CHECK_VERSION(2, 6, 0)
|
|
"%s", "Logout");
|
|
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
|
|
#endif
|
|
"%s", message);
|
|
gtk_dialog_add_buttons(GTK_DIALOG(dialog), GTK_STOCK_CANCEL,
|
|
GTK_RESPONSE_CANCEL, NULL);
|
|
widget = gtk_button_new_with_label("Logout");
|
|
gtk_button_set_image(GTK_BUTTON(widget), gtk_image_new_from_icon_name(
|
|
"gnome-logout", GTK_ICON_SIZE_BUTTON));
|
|
gtk_widget_show_all(widget);
|
|
gtk_dialog_add_action_widget(GTK_DIALOG(dialog), widget,
|
|
GTK_RESPONSE_ACCEPT);
|
|
gtk_window_set_keep_above(GTK_WINDOW(dialog), TRUE);
|
|
gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER_ALWAYS);
|
|
gtk_window_set_title(GTK_WINDOW(dialog), "Logout");
|
|
gtk_dialog_run(GTK_DIALOG(dialog));
|
|
gtk_widget_destroy(dialog);
|
|
}
|
|
|
|
|
|
/* helper_position_menu */
|
|
static void _helper_position_menu(Panel * panel, GtkMenu * menu, gint * x,
|
|
gint * y, gboolean * push_in)
|
|
{
|
|
GtkRequisition req;
|
|
gint sx = 0;
|
|
gint sy = 0;
|
|
|
|
gtk_widget_size_request(GTK_WIDGET(menu), &req);
|
|
#ifdef DEBUG
|
|
fprintf(stderr, "DEBUG: %s() width=%d, height=%d\n", __func__,
|
|
req.width, req.height);
|
|
#endif
|
|
if(req.height <= 0)
|
|
return;
|
|
gtk_window_get_position(GTK_WINDOW(panel->window), x, y);
|
|
gtk_window_get_size(GTK_WINDOW(panel->window), &sx, &sy);
|
|
*y += sy;
|
|
*push_in = TRUE;
|
|
}
|
|
|
|
|
|
/* helper_rotate_screen */
|
|
static void _helper_rotate_screen(Panel * panel)
|
|
{
|
|
desktop_message_send(DESKTOP_CLIENT_MESSAGE, DESKTOP_MESSAGE_SET_LAYOUT,
|
|
DESKTOP_LAYOUT_TOGGLE, 0);
|
|
}
|
|
|
|
|
|
/* helper_shutdown_dialog */
|
|
enum { RES_CANCEL, RES_REBOOT, RES_SHUTDOWN };
|
|
|
|
static void _helper_shutdown_dialog(Panel * panel)
|
|
{
|
|
GtkWidget * dialog;
|
|
GtkWidget * widget;
|
|
#ifdef EMBEDDED
|
|
const char message[] = "This will shutdown your device,"
|
|
" therefore closing any application currently opened"
|
|
" and losing any unsaved data.\n"
|
|
"Do you really want to proceed?";
|
|
#else
|
|
const char message[] = "This will shutdown your computer,"
|
|
" therefore closing any application currently opened"
|
|
" and losing any unsaved data.\n"
|
|
"Do you really want to proceed?";
|
|
#endif
|
|
|
|
dialog = gtk_message_dialog_new(NULL, 0, GTK_MESSAGE_QUESTION,
|
|
GTK_BUTTONS_NONE, "%s",
|
|
#if GTK_CHECK_VERSION(2, 6, 0)
|
|
"Shutdown");
|
|
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
|
|
#endif
|
|
"%s", message);
|
|
gtk_dialog_add_buttons(GTK_DIALOG(dialog), GTK_STOCK_CANCEL, RES_CANCEL,
|
|
"Restart", RES_REBOOT, NULL);
|
|
widget = gtk_button_new_with_label("Shutdown");
|
|
gtk_button_set_image(GTK_BUTTON(widget), gtk_image_new_from_icon_name(
|
|
"gnome-shutdown", GTK_ICON_SIZE_BUTTON));
|
|
gtk_widget_show_all(widget);
|
|
gtk_dialog_add_action_widget(GTK_DIALOG(dialog), widget, RES_SHUTDOWN);
|
|
gtk_window_set_keep_above(GTK_WINDOW(dialog), TRUE);
|
|
gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_CENTER_ALWAYS);
|
|
gtk_window_set_title(GTK_WINDOW(dialog), "Shutdown");
|
|
gtk_dialog_run(GTK_DIALOG(dialog));
|
|
gtk_widget_destroy(dialog);
|
|
}
|
|
|
|
|
|
/* helper_suspend */
|
|
static int _helper_suspend(Panel * panel)
|
|
{
|
|
/* XXX code duplicated from panel.c */
|
|
#ifdef __NetBSD__
|
|
int sleep_state = 3;
|
|
#else
|
|
int fd;
|
|
char * suspend[] = { "/usr/bin/sudo", "sudo", "/usr/bin/apm", "-s",
|
|
NULL };
|
|
int flags = G_SPAWN_FILE_AND_ARGV_ZERO;
|
|
GError * error = NULL;
|
|
#endif
|
|
|
|
#ifdef __NetBSD__
|
|
if(sysctlbyname("machdep.sleep_state", NULL, NULL, &sleep_state,
|
|
sizeof(sleep_state)) != 0)
|
|
return -_helper_error(panel, "sysctl", 1);
|
|
#else
|
|
if((fd = open("/sys/power/state", O_WRONLY)) >= 0)
|
|
{
|
|
write(fd, "mem\n", 4);
|
|
close(fd);
|
|
}
|
|
else if(g_spawn_async(NULL, suspend, NULL, flags, NULL, NULL, NULL,
|
|
&error) != TRUE)
|
|
{
|
|
/* XXX will also call perror() */
|
|
_helper_error(panel, error->message, 1);
|
|
g_error_free(error);
|
|
return -1;
|
|
}
|
|
#endif
|
|
_helper_lock(panel); /* XXX may already be suspended */
|
|
return 0;
|
|
}
|