/usr/include/libgnomeui-2.0/libgnomeui/gnome-window.h is in libgnomeui-dev 2.24.5-3.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* -*- 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_WINDOW_H
#define GNOME_WINDOW_H
#ifndef GNOME_DISABLE_DEPRECATED
#include <gtk/gtk.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_DISABLE_DEPRECATED */
#endif /* GNOME_WINDOW_H */
|