Desktop

/* $Id: systray.c,v 1.3 2011/08/20 15:20:25 khorben Exp $ */
/* Copyright (c) 2011 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Desktop Phone */
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/>.";
#include <System.h>
#include <Desktop.h>
#ifdef DEBUG
# include <stdio.h>
#endif
#include <gtk/gtk.h>
#include "Phone.h"
#include "../../config.h"
/* Systray */
/* private */
/* types */
typedef struct _Systray
{
GtkStatusIcon * icon;
GtkWidget * ab_window;
} Systray;
/* prototypes */
/* plug-in */
static int _systray_init(PhonePlugin * plugin);
static int _systray_destroy(PhonePlugin * plugin);
/* callbacks */
#if GTK_CHECK_VERSION(2, 10, 0)
static void _systray_on_activate(gpointer data);
static void _systray_on_popup_menu(GtkStatusIcon * icon, guint button,
guint time, gpointer data);
#endif
/* variables */
static char const * _authors[] =
{
"Pierre Pronchery <khorben@defora.org>",
NULL
};
static char _copyright[] =
"Copyright (c) 2011 DeforaOS Project <contact@defora.org>";
/* public */
/* variables */
PhonePlugin plugin =
{
NULL,
"System tray",
"gnome-monitor",
_systray_init,
_systray_destroy,
NULL,
NULL,
NULL
};
/* private */
/* functions */
/* systray_init */
static int _systray_init(PhonePlugin * plugin)
{
Systray * systray;
#ifdef DEBUG
fprintf(stderr, "DEBUG: %s()\n", __func__);
#endif
#if GTK_CHECK_VERSION(2, 10, 0)
if((systray = object_new(sizeof(*systray))) == NULL)
return 1;
plugin->priv = systray;
systray->icon = gtk_status_icon_new_from_icon_name("phone-dialer");
g_signal_connect_swapped(systray->icon, "activate", G_CALLBACK(
_systray_on_activate), plugin);
g_signal_connect(systray->icon, "popup-menu", G_CALLBACK(
_systray_on_popup_menu), plugin);
systray->ab_window = NULL;
return 0;
#else
return 1;
#endif
}
/* systray_destroy */
static int _systray_destroy(PhonePlugin * plugin)
{
Systray * systray = plugin->priv;
g_object_unref(systray->icon);
return 0;
}
#if GTK_CHECK_VERSION(2, 10, 0)
/* callbacks */
/* systray_on_activate */
static gboolean _activate_on_closex(gpointer data);
static void _systray_on_activate(gpointer data)
{
PhonePlugin * plugin = data;
Systray * systray = plugin->priv;
if(systray->ab_window != NULL)
{
gtk_window_present(GTK_WINDOW(systray->ab_window));
return;
}
systray->ab_window = desktop_about_dialog_new();
desktop_about_dialog_set_authors(systray->ab_window, _authors);
desktop_about_dialog_set_copyright(systray->ab_window, _copyright);
desktop_about_dialog_set_license(systray->ab_window, _license);
desktop_about_dialog_set_logo_icon_name(systray->ab_window,
"phone-dialer");
desktop_about_dialog_set_name(systray->ab_window, PACKAGE);
desktop_about_dialog_set_version(systray->ab_window, VERSION);
g_signal_connect_swapped(systray->ab_window, "delete-event",
G_CALLBACK(_activate_on_closex), plugin);
gtk_widget_show(systray->ab_window);
}
static gboolean _activate_on_closex(gpointer data)
{
PhonePlugin * plugin = data;
Systray * systray = plugin->priv;
gtk_widget_hide(systray->ab_window);
return TRUE;
}
/* systray_on_popup_menu */
static void _popup_menu_on_show_dialer(gpointer data);
static void _popup_menu_on_show_logs(gpointer data);
static void _popup_menu_on_show_messages(gpointer data);
static void _popup_menu_on_show_settings(gpointer data);
static void _popup_menu_on_resume(gpointer data);
static void _popup_menu_on_suspend(gpointer data);
static void _systray_on_popup_menu(GtkStatusIcon * icon, guint button,
guint time, gpointer data)
{
PhonePlugin * plugin = data;
GtkWidget * menu;
GtkWidget * menuitem;
menu = gtk_menu_new();
/* show windows */
menuitem = gtk_menu_item_new_with_mnemonic("Show _dialer");
g_signal_connect_swapped(menuitem, "activate", G_CALLBACK(
_popup_menu_on_show_dialer), plugin);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
menuitem = gtk_menu_item_new_with_mnemonic("Show _logs");
g_signal_connect_swapped(menuitem, "activate", G_CALLBACK(
_popup_menu_on_show_logs), plugin);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
menuitem = gtk_menu_item_new_with_mnemonic("Show _messages");
g_signal_connect_swapped(menuitem, "activate", G_CALLBACK(
_popup_menu_on_show_messages), plugin);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
menuitem = gtk_menu_item_new_with_mnemonic("Show _settings");
g_signal_connect_swapped(menuitem, "activate", G_CALLBACK(
_popup_menu_on_show_settings), plugin);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
/* suspend and resume */
menuitem = gtk_separator_menu_item_new();
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
menuitem = gtk_menu_item_new_with_mnemonic("_Resume telephony");
g_signal_connect_swapped(menuitem, "activate", G_CALLBACK(
_popup_menu_on_resume), plugin);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
menuitem = gtk_menu_item_new_with_mnemonic("S_uspend telephony");
g_signal_connect_swapped(menuitem, "activate", G_CALLBACK(
_popup_menu_on_suspend), plugin);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
gtk_widget_show_all(menu);
gtk_menu_popup(GTK_MENU(menu), NULL, NULL, NULL, NULL, button, time);
}
static void _popup_menu_on_show_dialer(gpointer data)
{
PhonePlugin * plugin = data;
plugin->helper->message(plugin->helper->phone, PHONE_MESSAGE_SHOW,
PHONE_MESSAGE_SHOW_DIALER);
}
static void _popup_menu_on_show_logs(gpointer data)
{
PhonePlugin * plugin = data;
plugin->helper->message(plugin->helper->phone, PHONE_MESSAGE_SHOW,
PHONE_MESSAGE_SHOW_LOGS);
}
static void _popup_menu_on_show_messages(gpointer data)
{
PhonePlugin * plugin = data;
plugin->helper->message(plugin->helper->phone, PHONE_MESSAGE_SHOW,
PHONE_MESSAGE_SHOW_MESSAGES);
}
static void _popup_menu_on_show_settings(gpointer data)
{
PhonePlugin * plugin = data;
plugin->helper->message(plugin->helper->phone, PHONE_MESSAGE_SHOW,
PHONE_MESSAGE_SHOW_SETTINGS);
}
static void _popup_menu_on_resume(gpointer data)
{
PhonePlugin * plugin = data;
plugin->helper->message(plugin->helper->phone,
PHONE_MESSAGE_POWER_MANAGEMENT,
PHONE_MESSAGE_POWER_MANAGEMENT_RESUME);
}
static void _popup_menu_on_suspend(gpointer data)
{
PhonePlugin * plugin = data;
plugin->helper->message(plugin->helper->phone,
PHONE_MESSAGE_POWER_MANAGEMENT,
PHONE_MESSAGE_POWER_MANAGEMENT_SUSPEND);
}
#endif