|
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/21572/root/usr/include/libgnomeui-2.0/libgnomeui/ |
Upload File : |
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* * gnome-window.h: wrappers for setting window properties * * Author: Chema Celorio <chema@celorio.com> */ /* * These functions are a convenience wrapper for gtk_window_set_title * This allows all the gnome-apps to have a consitent way of setting * the window & dialogs titles. We could also add a configurable way * of setting the windows titles in the future.. */ #ifndef GNOME_DISABLE_DEPRECATED #ifndef GNOME_WINDOW_H #define GNOME_WINDOW_H #include <gtk/gtkwindow.h> G_BEGIN_DECLS /* set the window title */ void gnome_window_toplevel_set_title (GtkWindow *window, const gchar *doc_name, const gchar *app_name, const gchar *extension); G_END_DECLS #endif /* GNOME_WINDOW_H */ #endif /* GNOME_DISABLE_DEPRECATED */