summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Charles <SlackBuilds@catcons.co.uk>2010-11-28 02:15:53 -0600
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-11-29 12:45:58 +0100
commit14a12809754222cfb92fbe196dcc4f08d70f6cdd (patch)
tree1c3a46786b847f28042dd9d04bf5f2130bf02ea8 /desktop
parentc55883f33685ae9fb02f6c90c00e563418eaa31e (diff)
downloadslackbuilds-14a12809754222cfb92fbe196dcc4f08d70f6cdd.tar.gz
slackbuilds-14a12809754222cfb92fbe196dcc4f08d70f6cdd.tar.xz
desktop/yad: Added (Yet Another Dialog display utility)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/yad/README5
-rw-r--r--desktop/yad/notification.c.r158380
-rw-r--r--desktop/yad/slack-desc19
-rw-r--r--desktop/yad/yad.SlackBuild84
-rw-r--r--desktop/yad/yad.info10
5 files changed, 498 insertions, 0 deletions
diff --git a/desktop/yad/README b/desktop/yad/README
new file mode 100644
index 0000000000..a7e2d49301
--- /dev/null
+++ b/desktop/yad/README
@@ -0,0 +1,5 @@
+yad displays graphical dialogs from shell scripts or command line.
+
+Yad is a fork of Zenity with many improvements, including custom
+buttons, additional dialogs and a pop-up menu in the notification
+area.
diff --git a/desktop/yad/notification.c.r158 b/desktop/yad/notification.c.r158
new file mode 100644
index 0000000000..adcaa859ac
--- /dev/null
+++ b/desktop/yad/notification.c.r158
@@ -0,0 +1,380 @@
+/*
+ * This file is part of YAD.
+ *
+ * YAD 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 3 of the License, or
+ * (at your option) any later version.
+ *
+ * YAD 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 YAD; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * Copyright (C) 2008-2010, Victor Ananjevsky <ananasik@gmail.com>
+ *
+ */
+
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <time.h>
+#include <string.h>
+#include <unistd.h>
+#include <errno.h>
+
+#include "yad.h"
+
+typedef struct {
+ gchar *name;
+ gchar *action;
+} MenuData;
+
+static GtkStatusIcon *status_icon;
+
+static gchar *icon = NULL;
+static gchar *action = NULL;
+
+static GSList *menu_data;
+
+static gint exit_code;
+static gint icon_size;
+
+static void
+timeout_cb (gpointer data)
+{
+ exit_code = YAD_RESPONSE_TIMEOUT;
+ gtk_main_quit ();
+}
+
+static void
+set_icon (void)
+{
+ GdkPixbuf *pixbuf;
+ GError *err = NULL;
+
+ if (icon == NULL)
+ {
+ gtk_status_icon_set_from_icon_name (status_icon, "yad");
+ return;
+ }
+
+ if (g_file_test (icon, G_FILE_TEST_EXISTS))
+ {
+ pixbuf =
+ gdk_pixbuf_new_from_file_at_scale (icon, icon_size, icon_size,
+ TRUE, &err);
+ if (err)
+ {
+ g_printerr (_("Could not load notification icon '%s': %s"),
+ icon, err->message);
+ g_clear_error (&err);
+ }
+ if (pixbuf)
+ {
+ gtk_status_icon_set_from_pixbuf (status_icon, pixbuf);
+ g_object_unref (pixbuf);
+ }
+ else
+ gtk_status_icon_set_from_icon_name (status_icon, "yad");
+ }
+ else
+ gtk_status_icon_set_from_icon_name (status_icon, icon);
+}
+
+static gboolean
+icon_size_changed_cb (GtkStatusIcon * icon, gint size, gpointer data)
+{
+ icon_size = size;
+ set_icon ();
+ return TRUE;
+}
+
+static gboolean
+activate_cb (GtkWidget * widget, YadData * data)
+{
+ if (action == NULL || g_ascii_strcasecmp (action, "quit") == 0)
+ {
+ exit_code = YAD_RESPONSE_OK;
+ gtk_main_quit ();
+ }
+ else
+ g_spawn_command_line_async (action, NULL);
+
+ return TRUE;
+}
+
+static gboolean
+middle_quit_cb (GtkStatusIcon * icon, GdkEventButton * ev,
+ gpointer data)
+{
+ if (ev->button == 2)
+ {
+ exit_code = YAD_RESPONSE_ESC;
+ gtk_main_quit ();
+ }
+
+ return FALSE;
+}
+
+static void
+popup_menu_item_activate_cb (GtkWidget * w, gpointer data)
+{
+ gchar *cmd = (gchar *) data;
+
+ if (g_ascii_strcasecmp (cmd, "quit") == 0)
+ {
+ exit_code = YAD_RESPONSE_OK;
+ gtk_main_quit ();
+ }
+ else
+ g_spawn_command_line_async (cmd, NULL);
+}
+
+static void
+popup_menu_cb (GtkStatusIcon * icon, guint button,
+ guint activate_time, gpointer data)
+{
+ GtkWidget *menu;
+ GtkWidget *item;
+ int i;
+
+ g_return_if_fail (menu_data != NULL);
+
+ menu = gtk_menu_new ();
+ for (i = 0; i < g_slist_length (menu_data); i++)
+ {
+ MenuData *d = (MenuData *) g_slist_nth_data (menu_data, i);
+
+ if (d->name)
+ {
+ item = gtk_menu_item_new_with_label (d->name);
+ g_signal_connect (GTK_MENU_ITEM (item), "activate",
+ G_CALLBACK (popup_menu_item_activate_cb),
+ (gpointer) d->action);
+ }
+ else
+ item = gtk_separator_menu_item_new ();
+
+ gtk_widget_show (item);
+ gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
+ }
+ gtk_menu_popup (GTK_MENU (menu), NULL, NULL,
+ gtk_status_icon_position_menu,
+ icon, button, activate_time);
+}
+
+static gboolean
+handle_stdin (GIOChannel * channel,
+ GIOCondition condition, gpointer data)
+{
+ if ((condition & G_IO_IN) != 0)
+ {
+ GString *string;
+ GError *err = NULL;
+
+ string = g_string_new (NULL);
+ while (channel->is_readable == FALSE) ;
+
+ do
+ {
+ gint status;
+ gchar *command, *value, **args;
+
+ do
+ {
+ status =
+ g_io_channel_read_line_string (channel, string, NULL, &err);
+
+ while (gdk_events_pending ())
+ gtk_main_iteration ();
+ }
+ while (status == G_IO_STATUS_AGAIN);
+ strip_new_line (string->str);
+
+ if (status != G_IO_STATUS_NORMAL)
+ {
+ if (err)
+ {
+ g_printerr ("yad_notification_handle_stdin(): %s\n",
+ err->message);
+ g_error_free (err);
+ err = NULL;
+ }
+ continue;
+ }
+
+ args = g_strsplit (string->str, ":", 2);
+ command = g_strdup (args[0]);
+ value = g_strdup (args[1]);
+ g_strfreev (args);
+
+ if (!g_ascii_strcasecmp (command, "icon"))
+ {
+ while (*value && g_ascii_isspace (*value))
+ value++;
+
+ g_free (icon);
+ icon = g_strdup (value);
+
+ if (gtk_status_icon_get_visible (status_icon) &&
+ gtk_status_icon_is_embedded (status_icon))
+ set_icon ();
+ }
+ else if (!g_ascii_strcasecmp (command, "tooltip"))
+ {
+ if (g_utf8_validate (value, -1, NULL))
+ {
+ gchar *message = g_strcompress (value);
+#if GTK_CHECK_VERSION(2,16,0)
+ if (options.data.no_markup)
+ gtk_status_icon_set_tooltip_markup (status_icon, message);
+ else
+ gtk_status_icon_set_tooltip_text (status_icon, message);
+#else
+ gtk_status_icon_set_tooltip (status_icon, message);
+#endif
+
+ g_free (message);
+ }
+ else
+ g_printerr (_("Invalid UTF-8 in tooltip!\n"));
+ }
+ else if (!g_ascii_strcasecmp (command, "visible"))
+ {
+#if !GTK_CHECK_VERSION(2,91,0)
+ if (!g_ascii_strcasecmp (value, "blink"))
+ {
+ gboolean state = gtk_status_icon_get_blinking (status_icon);
+ gtk_status_icon_set_blinking (status_icon, !state);
+ }
+ else
+#endif
+ if (!g_ascii_strcasecmp (value, "false"))
+ gtk_status_icon_set_visible (status_icon, FALSE);
+ else
+ gtk_status_icon_set_visible (status_icon, TRUE);
+ }
+ else if (!g_ascii_strcasecmp (command, "action"))
+ {
+ g_free (action);
+ action = g_strdup (value);
+ }
+ else if (!g_ascii_strcasecmp (command, "quit"))
+ {
+ exit_code = YAD_RESPONSE_OK;
+ gtk_main_quit ();
+ }
+ else if (!g_ascii_strcasecmp (command, "menu"))
+ {
+ MenuData *mdata;
+ int i = 0;
+ gchar *s, **menu_vals = g_strsplit (value, options.common_data.separator, -1);
+
+ g_slist_free (menu_data);
+ menu_data = NULL;
+
+ while (menu_vals[i] != NULL)
+ {
+ mdata = g_new0 (MenuData, 1);
+ s = strchr (menu_vals[i], settings.menu_sep[0]);
+ if (s != NULL)
+ {
+ mdata->name =
+ g_strndup (menu_vals[i], s - menu_vals[i]);
+ mdata->action = g_strdup (s + 1);
+ }
+ menu_data = g_slist_append (menu_data, mdata);
+ i++;
+ }
+
+ g_strfreev (menu_vals);
+ }
+ else
+ g_printerr (_("Unknown command '%s'\n"), command);
+
+ g_free (command);
+ g_free (value);
+ }
+ while (g_io_channel_get_buffer_condition (channel) == G_IO_IN);
+ g_string_free (string, TRUE);
+ }
+
+ if ((condition & G_IO_HUP) != 0)
+ {
+ g_io_channel_shutdown (channel, TRUE, NULL);
+ gtk_main_quit ();
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
+gint
+yad_notification_run ()
+{
+ GIOChannel *channel = NULL;
+
+ status_icon = gtk_status_icon_new ();
+ g_signal_connect (status_icon, "size-changed",
+ G_CALLBACK (icon_size_changed_cb), NULL);
+
+ if (options.data.dialog_text)
+ {
+#if GTK_CHECK_VERSION(2,16,0)
+ if (options.data.no_markup)
+ gtk_status_icon_set_tooltip_markup (status_icon, options.data.dialog_text);
+ else
+ gtk_status_icon_set_tooltip_text (status_icon, options.data.dialog_text);
+#else
+ gtk_status_icon_set_tooltip (status_icon, options.data.dialog_text);
+#endif
+ }
+ else
+#if GTK_CHECK_VERSION(2,16,0)
+ gtk_status_icon_set_tooltip_text (status_icon, _("Yad notification"));
+#else
+ gtk_status_icon_set_tooltip (status_icon, _("Yad notification"));
+#endif
+
+ if (options.data.dialog_image)
+ icon = g_strdup (options.data.dialog_image);
+ if (options.common_data.command)
+ action = g_strdup (options.common_data.command);
+ menu_data = NULL;
+
+ g_signal_connect (status_icon, "activate",
+ G_CALLBACK (activate_cb), NULL);
+
+ /* quit on middle click (like press Esc) */
+ g_signal_connect (status_icon, "button-press-event",
+ G_CALLBACK (middle_quit_cb), NULL);
+
+ if (options.notification_data.listen)
+ {
+ channel = g_io_channel_unix_new (0);
+ if (channel)
+ {
+ g_io_channel_set_encoding (channel, NULL, NULL);
+ g_io_channel_set_flags (channel, G_IO_FLAG_NONBLOCK, NULL);
+ g_io_add_watch (channel, G_IO_IN | G_IO_HUP, handle_stdin, NULL);
+
+ g_signal_connect (status_icon, "popup_menu",
+ G_CALLBACK (popup_menu_cb), NULL);
+ }
+ }
+
+ /* Show icon and wait */
+ gtk_status_icon_set_visible (status_icon, TRUE);
+
+ if (options.data.timeout > 0)
+ g_timeout_add_seconds (options.data.timeout,
+ (GSourceFunc) timeout_cb, NULL);
+
+ gtk_main ();
+
+ return exit_code;
+}
diff --git a/desktop/yad/slack-desc b/desktop/yad/slack-desc
new file mode 100644
index 0000000000..e5cef17bd3
--- /dev/null
+++ b/desktop/yad/slack-desc
@@ -0,0 +1,19 @@
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+yad: yad (displays graphical dialogs from shell scripts or command line)
+yad:
+yad: Yad (yet another dialog) is a fork of Zenity with many improvements,
+yad: including custom buttons, additional dialogs and a pop-up menu in
+yad: the notification area.
+yad:
+yad: There were two main reasons for this fork. The first was to remove
+yad: dependencies on deprecated libraries like libglade and gnome-canvas.
+yad: The second was the slow pace of Zenity development including many
+yad: unimplemented enhancement suggestions in the GNOME Bugzilla.
+yad:
diff --git a/desktop/yad/yad.SlackBuild b/desktop/yad/yad.SlackBuild
new file mode 100644
index 0000000000..cd6b847473
--- /dev/null
+++ b/desktop/yad/yad.SlackBuild
@@ -0,0 +1,84 @@
+#!/bin/sh
+
+# Slackware build script for yad
+
+# Written by Charles (SlackBuilds@catcons.co.uk)
+
+PRGNAM=yad
+VERSION=${VERSION:-0.5.2}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i486 ;;
+ arm*) ARCH=arm ;;
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+if [ "$ARCH" = "i486" ]; then
+ SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+fi
+
+set -e # Exit on most errors
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
+cd $PRGNAM-$VERSION
+chown -R root:root .
+find . \
+ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
+ -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
+ -exec chmod 644 {} \;
+
+# Update notification.c with the SVN r158 version
+cp $CWD/notification.c.r158 src/notification.c
+
+CFLAGS="$SLKCFLAGS" \
+CXXFLAGS="$SLKCFLAGS" \
+./configure \
+ --prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --mandir=/usr/man \
+ --docdir=/usr/doc/$PRGNAM-$VERSION \
+ --build=$ARCH-slackware-linux
+
+make
+make install DESTDIR=$PKG
+
+find $PKG/usr/man -type f -exec gzip -9 {} \;
+for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a \
+ AUTHORS NEWS README \
+ $PKG/usr/doc/$PRGNAM-$VERSION
+cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $PKG
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/desktop/yad/yad.info b/desktop/yad/yad.info
new file mode 100644
index 0000000000..02568f52fd
--- /dev/null
+++ b/desktop/yad/yad.info
@@ -0,0 +1,10 @@
+PRGNAM="yad"
+VERSION="0.5.2"
+HOMEPAGE="http://code.google.com/p/yad/"
+DOWNLOAD="http://yad.googlecode.com/files/yad-0.5.2.tar.xz"
+MD5SUM="184c6476a79c6f456ca1f7f18127aa83"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+MAINTAINER="Charles"
+EMAIL="SlackBuilds@catcons.co.uk"
+APPROVED="rworkman"