|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/root/usr/include/libgnomeui-2.0/libgnomeui/ |
Upload File : |
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* * gnome-window-icon.h: convenience functions for window mini-icons * * Copyright 2000, 2001 Ximian, Inc. * * Author: Jacob Berkman <jacob@ximian.com> */ /* * These functions are a convenience wrapper for the * gtk_window_set_icon_list() function. They allow setting a default * icon, which is used by many top level windows in libgnomeui, such * as GnomeApp and GnomeDialog windows. * * They also handle drawing the icon on the iconified window's icon in * window managers such as TWM and Window Maker. * */ #ifndef GNOME_DISABLE_DEPRECATED #ifndef GNOME_WINDOW_ICON_H #define GNOME_WINDOW_ICON_H #include <gtk/gtkwindow.h> G_BEGIN_DECLS /* set an icon on a window */ void gnome_window_icon_set_from_default (GtkWindow *w); void gnome_window_icon_set_from_file (GtkWindow *w, const char *filename); void gnome_window_icon_set_from_file_list (GtkWindow *w, const char **filenames); /* set the default icon used */ void gnome_window_icon_set_default_from_file (const char *filename); void gnome_window_icon_set_default_from_file_list (const char **filenames); /* check for the GNOME_DESKTOP_ICON environment variable */ void gnome_window_icon_init (void); G_END_DECLS #endif /* GNOME_WINDOW_ICON_H */ #endif /* GNOME_DISABLE_DEPRECATED */