aboutsummaryrefslogtreecommitdiff
path: root/mate-applet/topmenu-mate-panel-applet.c
blob: aeb412413921e9a1b9e61fda04ea582985fecafd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
 * Copyright 2014 Javier S. Pedro <maemo@javispedro.com>
 *
 * This file is part of TopMenu.
 *
 * TopMenu is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * TopMenu 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with TopMenu.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "topmenu-mate-panel-applet.h"

#include <glib/gi18n.h>
#include <gdk/gdkx.h>

G_DEFINE_TYPE(TopMenuMatePanelApplet, topmenu_mate_panel_applet, PANEL_TYPE_APPLET)

static void display_about_dialog(GtkAction *action, TopMenuMatePanelApplet *self)
{
	GtkWindow *parent = NULL;
	GtkWidget *parent_widget = gtk_widget_get_toplevel(GTK_WIDGET(self));
	if (GTK_IS_WINDOW(parent_widget)) {
		parent = GTK_WINDOW(parent_widget);
	}

	static const char *authors[] = {
		"Javier S. Pedro <dev.bugs@javispedro.com>",
		NULL};

	gtk_show_about_dialog(parent,
	                      "program-name", "TopMenu Mate Panel Applet",
	                      "logo-icon-name", "topmenu-applet",
	                      "website", "https://git.javispedro.com/cgit/topmenu-gtk.git/about/",
	                      "authors", authors,
	                      NULL);
}

static const GtkActionEntry menu_verbs[] = {
	{ "TopMenuAbout", GTK_STOCK_ABOUT, N_("_About"),
	  NULL, NULL,
	  G_CALLBACK (display_about_dialog) }
};

static void topmenu_mate_panel_applet_size_allocate(GtkWidget *widget, GtkAllocation *allocation)
{
	TopMenuMatePanelApplet *self = TOPMENU_MATE_PANEL_APPLET(widget);
	if (self->menu_widget) {
		gtk_widget_size_allocate(GTK_WIDGET(self->menu_widget), allocation);
	}
	GTK_WIDGET_CLASS(topmenu_mate_panel_applet_parent_class)->size_allocate(widget, allocation);
}

#if GTK_MAJOR_VERSION == 3
static void topmenu_mate_panel_get_preferred_width(GtkWidget *widget, gint *minimal_width, gint *natural_width)
{
	TopMenuMatePanelApplet *self = TOPMENU_MATE_PANEL_APPLET(widget);
	if (self->menu_widget) {
		gtk_widget_get_preferred_width(GTK_WIDGET(self->menu_widget), minimal_width, natural_width);
	}
}

static void topmenu_mate_panel_get_preferred_height(GtkWidget *widget, gint *minimal_height, gint *natural_height)
{
	TopMenuMatePanelApplet *self = TOPMENU_MATE_PANEL_APPLET(widget);
	if (self->menu_widget) {
		gtk_widget_get_preferred_height(GTK_WIDGET(self->menu_widget), minimal_height, natural_height);
	}
}
#elif GTK_MAJOR_VERSION == 2
static void topmenu_mate_panel_applet_size_request(GtkWidget *widget, GtkRequisition *requisition)
{
	TopMenuMatePanelApplet *self = TOPMENU_MATE_PANEL_APPLET(widget);
	if (self->menu_widget) {
		gtk_widget_size_request(GTK_WIDGET(self->menu_widget), requisition);
	}
}
#endif

static void topmenu_mate_panel_applet_class_init(TopMenuMatePanelAppletClass *klass)
{
	GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
	widget_class->size_allocate = topmenu_mate_panel_applet_size_allocate;
#if GTK_MAJOR_VERSION == 3
	widget_class->get_preferred_width = topmenu_mate_panel_get_preferred_width;
	widget_class->get_preferred_height = topmenu_mate_panel_get_preferred_height;
#elif GTK_MAJOR_VERSION == 2
	widget_class->size_request = topmenu_mate_panel_applet_size_request;
#endif
}

static void topmenu_mate_panel_applet_init(TopMenuMatePanelApplet *self)
{
	self->menu_widget = TOPMENU_WIDGET(topmenu_widget_new());
	gtk_widget_set_can_focus(GTK_WIDGET(self->menu_widget), TRUE);
	gtk_container_add(GTK_CONTAINER(self), GTK_WIDGET(self->menu_widget));

	GtkActionGroup *action_group = gtk_action_group_new("TopMenu Mate Panel Applet Actions");
	gtk_action_group_add_actions(action_group,
	                             menu_verbs, G_N_ELEMENTS(menu_verbs), self);

	mate_panel_applet_set_flags(MATE_PANEL_APPLET(self),
	                            MATE_PANEL_APPLET_EXPAND_MINOR);
	mate_panel_applet_setup_menu(MATE_PANEL_APPLET(self),
	                             "<menuitem name=\"TopMenu About Item\" action=\"TopMenuAbout\"/>",
	                             action_group);

	g_object_unref(action_group);
}

MatePanelApplet *topmenu_mate_panel_applet_new(void)
{
	return MATE_PANEL_APPLET(g_object_new(TOPMENU_TYPE_MATE_PANEL_APPLET, NULL));
}