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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
/*
* Copyright (C) 2008-2010 Nick Schermer <nick@xfce.org>
*
* This library 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 library 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 Lesser General Public
* License along with this library; 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 "tasklist-widget.h"
#include "tasklist.h"
#include "common/panel-private.h"
#include "common/panel-utils.h"
#include "common/panel-xfconf.h"
#include <libxfce4ui/libxfce4ui.h>
#define HANDLE_SIZE (4)
struct _TasklistPlugin
{
XfcePanelPlugin __parent__;
/* the tasklist widget */
GtkWidget *tasklist;
GtkWidget *handle;
};
static void
tasklist_plugin_construct (XfcePanelPlugin *panel_plugin);
static void
tasklist_plugin_mode_changed (XfcePanelPlugin *panel_plugin,
XfcePanelPluginMode mode);
static gboolean
tasklist_plugin_size_changed (XfcePanelPlugin *panel_plugin,
gint size);
static void
tasklist_plugin_nrows_changed (XfcePanelPlugin *panel_plugin,
guint nrows);
static void
tasklist_plugin_screen_position_changed (XfcePanelPlugin *panel_plugin,
XfceScreenPosition position);
static void
tasklist_plugin_configure_plugin (XfcePanelPlugin *panel_plugin);
static gboolean
tasklist_plugin_handle_draw (GtkWidget *widget,
cairo_t *cr,
TasklistPlugin *plugin);
/* define and register the plugin */
XFCE_PANEL_DEFINE_PLUGIN_RESIDENT (TasklistPlugin, tasklist_plugin)
static void
tasklist_plugin_class_init (TasklistPluginClass *klass)
{
XfcePanelPluginClass *plugin_class;
plugin_class = XFCE_PANEL_PLUGIN_CLASS (klass);
plugin_class->construct = tasklist_plugin_construct;
plugin_class->mode_changed = tasklist_plugin_mode_changed;
plugin_class->size_changed = tasklist_plugin_size_changed;
plugin_class->nrows_changed = tasklist_plugin_nrows_changed;
plugin_class->screen_position_changed = tasklist_plugin_screen_position_changed;
plugin_class->configure_plugin = tasklist_plugin_configure_plugin;
}
static void
tasklist_plugin_init (TasklistPlugin *plugin)
{
GtkWidget *box;
/* create widgets */
box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_container_add (GTK_CONTAINER (plugin), box);
g_object_bind_property (G_OBJECT (plugin), "orientation",
G_OBJECT (box), "orientation",
G_BINDING_SYNC_CREATE);
gtk_widget_show (box);
plugin->handle = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
gtk_box_pack_start (GTK_BOX (box), plugin->handle, FALSE, FALSE, 0);
g_signal_connect (G_OBJECT (plugin->handle), "draw",
G_CALLBACK (tasklist_plugin_handle_draw), plugin);
gtk_widget_set_size_request (plugin->handle, 8, 8);
gtk_widget_show (plugin->handle);
plugin->tasklist = g_object_new (XFCE_TYPE_TASKLIST, NULL);
gtk_box_pack_start (GTK_BOX (box), plugin->tasklist, TRUE, TRUE, 0);
g_object_bind_property (G_OBJECT (plugin->tasklist), "show-handle",
G_OBJECT (plugin->handle), "visible",
G_BINDING_SYNC_CREATE);
}
static void
tasklist_plugin_construct (XfcePanelPlugin *panel_plugin)
{
TasklistPlugin *plugin = TASKLIST_PLUGIN (panel_plugin);
const PanelProperty properties[] = {
{ "show-labels", G_TYPE_BOOLEAN },
{ "grouping", G_TYPE_BOOLEAN },
{ "include-all-workspaces", G_TYPE_BOOLEAN },
{ "include-all-monitors", G_TYPE_BOOLEAN },
{ "flat-buttons", G_TYPE_BOOLEAN },
{ "switch-workspace-on-unminimize", G_TYPE_BOOLEAN },
{ "show-only-minimized", G_TYPE_BOOLEAN },
{ "show-wireframes", G_TYPE_BOOLEAN },
{ "show-handle", G_TYPE_BOOLEAN },
{ "show-tooltips", G_TYPE_BOOLEAN },
{ "sort-order", G_TYPE_UINT },
{ "window-scrolling", G_TYPE_BOOLEAN },
{ "wrap-windows", G_TYPE_BOOLEAN },
{ "include-all-blinking", G_TYPE_BOOLEAN },
{ "middle-click", G_TYPE_UINT },
{ "label-decorations", G_TYPE_BOOLEAN },
{ NULL }
};
/* show configure */
xfce_panel_plugin_menu_show_configure (XFCE_PANEL_PLUGIN (plugin));
/* bind all properties */
panel_properties_bind (NULL, G_OBJECT (plugin->tasklist),
xfce_panel_plugin_get_property_base (panel_plugin),
properties, FALSE);
/* show the tasklist */
gtk_widget_show (plugin->tasklist);
}
static void
tasklist_plugin_mode_changed (XfcePanelPlugin *panel_plugin,
XfcePanelPluginMode mode)
{
TasklistPlugin *plugin = TASKLIST_PLUGIN (panel_plugin);
/* set the new tasklist mode */
xfce_tasklist_set_mode (XFCE_TASKLIST (plugin->tasklist), mode);
}
static gboolean
tasklist_plugin_size_changed (XfcePanelPlugin *panel_plugin,
gint size)
{
TasklistPlugin *plugin = TASKLIST_PLUGIN (panel_plugin);
/* set the tasklist size */
xfce_tasklist_set_size (XFCE_TASKLIST (plugin->tasklist), size);
return TRUE;
}
static void
tasklist_plugin_nrows_changed (XfcePanelPlugin *panel_plugin,
guint nrows)
{
TasklistPlugin *plugin = TASKLIST_PLUGIN (panel_plugin);
/* set the tasklist nrows */
xfce_tasklist_set_nrows (XFCE_TASKLIST (plugin->tasklist), nrows);
}
static void
tasklist_plugin_screen_position_changed (XfcePanelPlugin *panel_plugin,
XfceScreenPosition position)
{
TasklistPlugin *plugin = TASKLIST_PLUGIN (panel_plugin);
/* update monitor geometry; this function is also triggered when
* the panel is moved to another monitor during runtime */
xfce_tasklist_update_monitor_geometry (XFCE_TASKLIST (plugin->tasklist));
}
static void
tasklist_plugin_configure_plugin (XfcePanelPlugin *panel_plugin)
{
TasklistPlugin *plugin = TASKLIST_PLUGIN (panel_plugin);
GtkBuilder *builder;
GObject *dialog;
GObject *object;
/* setup the dialog */
builder = panel_utils_builder_new (panel_plugin, "/org/xfce/panel/tasklist-dialog.glade", &dialog);
if (G_UNLIKELY (builder == NULL))
return;
#define TASKLIST_DIALOG_BIND(name, property) \
object = gtk_builder_get_object (builder, (name)); \
panel_return_if_fail (G_IS_OBJECT (object)); \
g_object_bind_property (G_OBJECT (plugin->tasklist), (name), \
G_OBJECT (object), (property), \
G_BINDING_BIDIRECTIONAL \
| G_BINDING_SYNC_CREATE);
#define TASKLIST_DIALOG_BIND_INV(name, property) \
object = gtk_builder_get_object (builder, (name)); \
panel_return_if_fail (G_IS_OBJECT (object)); \
g_object_bind_property (G_OBJECT (plugin->tasklist), \
name, G_OBJECT (object), \
property, \
G_BINDING_BIDIRECTIONAL \
| G_BINDING_SYNC_CREATE \
| G_BINDING_INVERT_BOOLEAN);
TASKLIST_DIALOG_BIND ("show-labels", "active")
TASKLIST_DIALOG_BIND ("grouping", "active")
TASKLIST_DIALOG_BIND ("include-all-workspaces", "active")
TASKLIST_DIALOG_BIND ("include-all-monitors", "active")
TASKLIST_DIALOG_BIND ("flat-buttons", "active")
TASKLIST_DIALOG_BIND_INV ("switch-workspace-on-unminimize", "active")
TASKLIST_DIALOG_BIND ("show-only-minimized", "active")
TASKLIST_DIALOG_BIND ("show-wireframes", "active")
TASKLIST_DIALOG_BIND ("show-handle", "active")
TASKLIST_DIALOG_BIND ("show-tooltips", "active")
TASKLIST_DIALOG_BIND ("sort-order", "active")
TASKLIST_DIALOG_BIND ("window-scrolling", "active")
TASKLIST_DIALOG_BIND ("middle-click", "active")
if (!WINDOWING_IS_X11 ())
{
/* not functional in x11, so avoid confusion */
object = gtk_builder_get_object (builder, "include-all-workspaces");
gtk_widget_hide (GTK_WIDGET (object));
object = gtk_builder_get_object (builder, "switch-workspace-on-unminimize");
gtk_widget_hide (GTK_WIDGET (object));
object = gtk_builder_get_object (builder, "show-wireframes");
gtk_widget_hide (GTK_WIDGET (object));
}
gtk_widget_show (GTK_WIDGET (dialog));
}
static gboolean
tasklist_plugin_handle_draw (GtkWidget *widget,
cairo_t *cr,
TasklistPlugin *plugin)
{
GtkAllocation allocation;
GtkStyleContext *ctx;
gdouble x, y;
guint i;
GdkRGBA fg_rgba;
panel_return_val_if_fail (TASKLIST_IS_PLUGIN (plugin), FALSE);
panel_return_val_if_fail (plugin->handle == widget, FALSE);
if (!gtk_widget_is_drawable (widget))
return FALSE;
gtk_widget_get_allocation (widget, &allocation);
ctx = gtk_widget_get_style_context (widget);
gtk_style_context_get_color (ctx, gtk_widget_get_state_flags (widget), &fg_rgba);
/* Tone down the foreground color a bit for the separators */
fg_rgba.alpha = 0.5;
gdk_cairo_set_source_rgba (cr, &fg_rgba);
cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE);
x = (allocation.width - HANDLE_SIZE) / 2;
y = (allocation.height - HANDLE_SIZE) / 2;
cairo_set_line_width (cr, 1.0);
/* draw the handle */
for (i = 0; i < 3; i++)
{
if (xfce_panel_plugin_get_orientation (XFCE_PANEL_PLUGIN (plugin)) == GTK_ORIENTATION_HORIZONTAL)
{
cairo_move_to (cr, x, y + (i * HANDLE_SIZE) - (HANDLE_SIZE / 2));
cairo_line_to (cr, x + HANDLE_SIZE, y + (i * HANDLE_SIZE) - (HANDLE_SIZE / 2));
}
else
{
cairo_move_to (cr, x + (i * HANDLE_SIZE) - (HANDLE_SIZE / 2), y);
cairo_line_to (cr, x + (i * HANDLE_SIZE) - (HANDLE_SIZE / 2), y + HANDLE_SIZE);
}
cairo_stroke (cr);
}
return TRUE;
}
|