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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
/* -*- c-basic-offset: 2 -*- vi:set ts=2 sts=2 sw=2:
* * Copyright (C) 2017-2020 Sean Davis <bluesabre@xfce.org>
*
* Licensed under the GNU General Public License Version 2
*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "devicemenuitem.h"
/* for DBG/TRACE */
#include <libxfce4util/libxfce4util.h>
struct _DeviceMenuItemPrivate {
GtkWidget *submenu;
GtkWidget *label;
GSList *group;
gchar *title;
};
enum {
DEVICE_CHANGED,
LAST_SIGNAL
};
static guint signals[LAST_SIGNAL] = { 0 };
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
G_DEFINE_TYPE_WITH_PRIVATE (DeviceMenuItem, device_menu_item, GTK_TYPE_MENU_ITEM)
G_GNUC_END_IGNORE_DEPRECATIONS
/* Static Declarations */
static void device_menu_item_finalize (GObject *object);
static void device_menu_item_device_toggled (DeviceMenuItem *item,
GtkCheckMenuItem *menu_item);
/* Public API */
GtkWidget*
device_menu_item_new_with_label (const gchar *label)
{
DeviceMenuItem *device_item;
DeviceMenuItemPrivate *priv;
TRACE("entering");
device_item = DEVICE_MENU_ITEM (g_object_new (TYPE_DEVICE_MENU_ITEM, NULL));
priv = device_menu_item_get_instance_private (device_item);
priv->submenu = gtk_menu_new ();
priv->title = g_strdup (label);
priv->group = NULL;
/* Configure menu item label */
gtk_menu_item_set_label (GTK_MENU_ITEM (device_item), priv->title);
priv->label = gtk_bin_get_child (GTK_BIN (device_item));
gtk_label_set_width_chars (GTK_LABEL (priv->label), 30);
gtk_label_set_max_width_chars (GTK_LABEL (priv->label), 30);
gtk_label_set_ellipsize (GTK_LABEL (priv->label), PANGO_ELLIPSIZE_MIDDLE);
/* Configure menu item submenu */
gtk_menu_item_set_submenu (GTK_MENU_ITEM (device_item), priv->submenu);
/* Keep references to the widgets */
g_object_ref (priv->submenu);
g_object_ref (priv->label);
return GTK_WIDGET(device_item);
}
void
device_menu_item_add_device (DeviceMenuItem *item,
const gchar *name,
const gchar *description,
gboolean sensitive)
{
DeviceMenuItemPrivate *priv;
GtkWidget *mi;
priv = device_menu_item_get_instance_private (item);
mi = gtk_radio_menu_item_new_with_label (priv->group, description);
g_object_set_data_full (G_OBJECT (mi), "name", g_strdup (name), (GDestroyNotify) g_free);
priv->group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (mi));
gtk_widget_set_sensitive (mi, sensitive);
gtk_widget_show (mi);
gtk_menu_shell_append (GTK_MENU_SHELL (priv->submenu), mi);
g_signal_connect_swapped (G_OBJECT (mi), "toggled", G_CALLBACK (device_menu_item_device_toggled), item);
}
void
device_menu_item_set_device_by_name (DeviceMenuItem *item,
const gchar *name)
{
DeviceMenuItemPrivate *priv;
GList *children = NULL;
GList *iter = NULL;
gboolean markup_set = FALSE;
g_return_if_fail (IS_DEVICE_MENU_ITEM (item));
priv = device_menu_item_get_instance_private (item);
children = gtk_container_get_children (GTK_CONTAINER (priv->submenu));
for (iter = children; iter != NULL; iter = g_list_next (iter)) {
if (g_strcmp0 (name, (gchar *)g_object_get_data (G_OBJECT(iter->data), "name")) == 0)
{
/* TRANSLATORS: <b>{Input/Output} ({Device Name})</b> */
gtk_label_set_markup (GTK_LABEL (priv->label), gtk_menu_item_get_label (GTK_MENU_ITEM (iter->data)));
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (iter->data), TRUE);
markup_set = TRUE;
} else {
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (iter->data), FALSE);
}
}
if (!markup_set)
gtk_label_set_markup (GTK_LABEL (priv->label), priv->title);
g_list_free (children);
}
/* Private API */
static void
device_menu_item_class_init (DeviceMenuItemClass *item_class)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (item_class);
gobject_class->finalize = device_menu_item_finalize;
/**
* DeviceMenuItem::value-changed:
* @menuitem: the #DeviceMenuItem for which the value changed
* @value: the new value
*
* Emitted whenever the value of the contained scale changes because
* of user input.
*/
signals[DEVICE_CHANGED] = g_signal_new ("device-changed",
TYPE_DEVICE_MENU_ITEM,
G_SIGNAL_RUN_LAST,
0, NULL, NULL,
g_cclosure_marshal_VOID__STRING,
G_TYPE_NONE,
1, G_TYPE_STRING);
}
static void
device_menu_item_init (DeviceMenuItem *item)
{
DeviceMenuItemPrivate *priv;
priv = device_menu_item_get_instance_private (item);
priv->submenu = NULL;
priv->label = NULL;
priv->title = NULL;
priv->group = NULL;
}
static void
device_menu_item_finalize (GObject *object)
{
DeviceMenuItem *item;
DeviceMenuItemPrivate *priv;
item = DEVICE_MENU_ITEM (object);
priv = device_menu_item_get_instance_private (item);
if (priv->title)
g_free (priv->title);
g_object_unref (priv->submenu);
g_object_unref (priv->label);
(*G_OBJECT_CLASS (device_menu_item_parent_class)->finalize) (object);
}
static void
device_menu_item_device_toggled (DeviceMenuItem *item,
GtkCheckMenuItem *menu_item)
{
g_return_if_fail (IS_DEVICE_MENU_ITEM (item));
if (gtk_check_menu_item_get_active (menu_item))
{
g_signal_emit (item, signals[DEVICE_CHANGED], 0, (gchar *)g_object_get_data (G_OBJECT(menu_item), "name"));
}
}
|