summary refs log tree commit diff stats
path: root/src
AgeCommit message (Expand)Author
2010-09-29use G_DISABLE_DEPRECATEDberkeviktor@aol.com
2010-09-29add separate gdk-pixbuf includesberkeviktor@aol.com
2010-09-29remove some redundancyberkeviktor@aol.com
2010-09-29move gtk includes to makefileberkeviktor@aol.com
2010-09-20don't build mmx_cmod since it ain't speeding up anything (and it's x86-only btw)berkeviktor@aol.com
2010-09-06fix makefile commentberkeviktor@aol.com
2010-09-06don't build fe-text as it is unusable ATMberkeviktor@aol.com
2010-09-06disable update menu and widgetberkeviktor@aol.com
2010-08-30remove old referencesberkeviktor@aol.com
2010-08-30update checker cosmeticsberkeviktor@aol.com
2010-08-30update checker reworkedberkeviktor@aol.com
2010-08-30about dialog cosmeticsberkeviktor@aol.com
2010-08-30preliminary update checkerberkeviktor@aol.com
2010-08-30re-enable xtray, disable plugin-tray if installedberkeviktor@aol.com
2010-08-29make perl version selectableberkeviktor@aol.com
2010-08-26clean fe-text before building for x64berkeviktor@aol.com
2010-08-26make fe-text build work (to some degree)berkeviktor@aol.com
2010-08-25xchat-text compiles but won't runberkeviktor@aol.com
2010-08-24some more reworkberkeviktor@aol.com
2010-08-24even more cleanupberkeviktor@aol.com
2010-08-24huge cleanup on build systemberkeviktor@aol.com
2010-08-24remove a few dependenciesberkeviktor@aol.com
2010-08-19makeinc cleanupberkeviktor@aol.com
2010-08-19merge the x86 and x64 building processberkeviktor@aol.com
2010-08-18some more cleanupberkeviktor@aol.com
2010-08-18portable mode enabled in runtimeberkeviktor@aol.com
2010-08-17separate exe files, unified packages for standard and portable, stage 1berkeviktor@aol.com
2010-08-16some heavy restructuring and reformattingberkeviktor@aol.com
2010-08-15don't build and link with sexy-spell-entry since there's no spellcheck ATMberkeviktor@aol.com
2010-08-13upgrade perl to 5.12berkeviktor@aol.com
2010-08-13skeleton for adding spell supportberkeviktor@aol.com
2010-08-12lua support for x64 as well, and use own lua buildberkeviktor@aol.com
2010-08-12add support for xchat-lua, but don't build by defaultberkeviktor@aol.com
2010-08-11enable the python interfaceberkeviktor@aol.com
2010-08-11enable opensslberkeviktor@aol.com
2010-08-10no identd.obj builtberkeviktor@aol.com
2010-07-30update tcl lib and copy tcl interface for x64 tooberkeviktor@aol.com
2010-07-30enable x64 Tcl, downgrade to 8.5 and update messagesberkeviktor@aol.com
2010-06-15update xchat to 1441 and enable dcc64berkeviktor@aol.com
2010-05-29remove comment for an obvious thingberkeviktor@aol.com
2010-05-23add support for building a portable versionberkeviktor@aol.com
2010-05-02enable taskbar alerts only on x64. on x86 they crash xchat-wdk.berkeviktor@aol.com
2010-04-02move additions to own repo, so that patch contains only modificationsberkeviktor@aol.com
vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * DO NOT EDIT THIS FILE - it is generated by Glade.
 */

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <string.h>
#include <stdio.h>

#include <gtk/gtk.h>

#include "support.h"

GtkWidget*
lookup_widget                          (GtkWidget       *widget,
                                        const gchar     *widget_name)
{
  GtkWidget *parent, *found_widget;

  for (;;)
    {
      if (GTK_IS_MENU (widget))
        parent = gtk_menu_get_attach_widget (GTK_MENU (widget));
      else
        parent = widget->parent;
      if (!parent)
        parent = (GtkWidget*)g_object_get_data (G_OBJECT (widget), "GladeParentKey");
      if (parent == NULL)
        break;
      widget = parent;
    }

  found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget),
                                                 widget_name);
  if (!found_widget)
    g_warning ("Widget not found: %s", widget_name);
  return found_widget;
}

static GList *pixmaps_directories = NULL;

/* Use this function to set the directory containing installed pixmaps. */
void
add_pixmap_directory                   (const gchar     *directory)
{
  pixmaps_directories = g_list_prepend (pixmaps_directories,
                                        g_strdup (directory));
}

/* This is an internally used function to find pixmap files. */
static gchar*
find_pixmap_file                       (const gchar     *filename)
{
  GList *elem;

  /* We step through each of the pixmaps directory to find it. */
  elem = pixmaps_directories;
  while (elem)
    {
      gchar *pathname = g_strdup_printf ("%s%s%s", (gchar*)elem->data,
                                         G_DIR_SEPARATOR_S, filename);
      if (g_file_test (pathname, G_FILE_TEST_EXISTS))
        return pathname;
      g_free (pathname);
      elem = elem->next;
    }
  return NULL;
}

/* This is an internally used function to create pixmaps. */
GtkWidget*
create_pixmap                          (GtkWidget       *widget,
                                        const gchar     *filename)
{
  gchar *pathname = NULL;
  GtkWidget *pixmap;

  if (!filename || !filename[0])
      return gtk_image_new ();

  pathname = find_pixmap_file (filename);

  if (!pathname)
    {
      g_warning ("Couldn't find pixmap file: %s", filename);
      return gtk_image_new ();
    }

  pixmap = gtk_image_new_from_file (pathname);
  g_free (pathname);
  return pixmap;
}

/* This is an internally used function to create pixmaps. */
GdkPixbuf*
create_pixbuf                          (const gchar     *filename)
{
  gchar *pathname = NULL;
  GdkPixbuf *pixbuf;
  GError *error = NULL;

  if (!filename || !filename[0])
      return NULL;

  pathname = find_pixmap_file (filename);

  if (!pathname)
    {
      g_warning ("Couldn't find pixmap file: %s", filename);
      return NULL;
    }

  pixbuf = gdk_pixbuf_new_from_file (pathname, &error);
  if (!pixbuf)
    {
      fprintf (stderr, "Failed to load pixbuf file: %s: %s\n",
               pathname, error->message);
      g_error_free (error);
    }
  g_free (pathname);
  return pixbuf;
}

/* This is used to set ATK action descriptions. */
void
glade_set_atk_action_description       (AtkAction       *action,
                                        const gchar     *action_name,
                                        const gchar     *description)
{
  gint n_actions, i;

  n_actions = atk_action_get_n_actions (action);
  for (i = 0; i < n_actions; i++)
    {
      if (!strcmp (atk_action_get_name (action, i), action_name))
        atk_action_set_description (action, i, description);
    }
}