Panel

/* $Id$ */
/* Copyright (c) 2010-2020 Pierre Pronchery <khorben@defora.org> */
/* This file is part of DeforaOS Desktop Panel */
/* 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, version 3 of the License.
*
* 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, see <http://www.gnu.org/licenses/>. */
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <libintl.h>
#include <System.h>
#include "Panel/applet.h"
#define _(string) gettext(string)
#define N_(string) string
/* Logout */
/* private */
/* types */
typedef struct _PanelApplet
{
PanelAppletHelper * helper;
GtkWidget * widget;
} Logout;
/* prototypes */
static Logout * _logout_init(PanelAppletHelper * helper, GtkWidget ** widget);
static void _logout_destroy(Logout * logout);
/* callbacks */
static void _logout_on_clicked(gpointer data);
/* public */
/* variables */
PanelAppletDefinition applet =
{
N_("Logout"),
"gnome-logout",
NULL,
_logout_init,
_logout_destroy,
NULL,
FALSE,
TRUE
};
/* private */
/* functions */
/* logout_init */
static Logout * _logout_init(PanelAppletHelper * helper, GtkWidget ** widget)
{
Logout * logout;
GtkWidget * image;
if((logout = malloc(sizeof(*logout))) == NULL)
{
error_set("%s: %s", applet.name, strerror(errno));
return NULL;
}
logout->helper = helper;
if(helper->logout_dialog == NULL)
{
error_set("%s: %s", applet.name, _("Logging out is disabled"));
return NULL;
}
logout->widget = gtk_button_new();
image = gtk_image_new_from_icon_name(applet.icon,
panel_window_get_icon_size(helper->window));
gtk_button_set_image(GTK_BUTTON(logout->widget), image);
gtk_button_set_relief(GTK_BUTTON(logout->widget), GTK_RELIEF_NONE);
#if GTK_CHECK_VERSION(2, 12, 0)
gtk_widget_set_tooltip_text(logout->widget, _("Logout"));
#endif
g_signal_connect_swapped(logout->widget, "clicked", G_CALLBACK(
_logout_on_clicked), logout);
gtk_widget_show_all(logout->widget);
*widget = logout->widget;
return logout;
}
/* logout_destroy */
static void _logout_destroy(Logout * logout)
{
gtk_widget_destroy(logout->widget);
free(logout);
}
/* callbacks */
/* logout_on_clicked */
static void _logout_on_clicked(gpointer data)
{
Logout * logout = data;
logout->helper->logout_dialog(logout->helper->panel);
}