/usr/include/libbonoboui-2.0/bonobo/bonobo-ui-config-widget.h is in libbonoboui2-dev 2.24.5-0ubuntu1.
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/**
* bonobo-ui-config-widget.h: Bonobo Component UIConfig
*
* Author:
* Michael Meeks (michael@helixcode.com)
*
* Copyright 2000 Helix Code, Inc.
*/
#ifndef BONOBO_UI_CONFIG_WIDGET_H
#define BONOBO_UI_CONFIG_WIDGET_H
/* Should be purely internal */
#ifndef BONOBO_UI_DISABLE_DEPRECATED
#include <gtk/gtk.h>
#include <bonobo/bonobo-ui-engine.h>
G_BEGIN_DECLS
#define BONOBO_TYPE_UI_CONFIG_WIDGET (bonobo_ui_config_widget_get_type ())
#define BONOBO_UI_CONFIG_WIDGET(obj) G_TYPE_CHECK_INSTANCE_CAST(obj, bonobo_ui_config_widget_get_type (), BonoboUIConfigWidget)
#define BONOBO_UI_CONFIG_WIDGET_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, bonobo_ui_config_widget_get_type (), BonoboUIConfigWidgetClass)
#define BONOBO_IS_UI_CONFIG_WIDGET(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, bonobo_ui_config_widget_get_type ())
typedef struct _BonoboUIConfigWidgetPrivate BonoboUIConfigWidgetPrivate;
typedef struct {
GtkVBox parent;
BonoboUIEngine *engine;
BonoboUIConfigWidgetPrivate *priv;
} BonoboUIConfigWidget;
typedef struct {
GtkVBoxClass parent_class;
gpointer dummy[2];
} BonoboUIConfigWidgetClass;
GType bonobo_ui_config_widget_get_type (void) G_GNUC_CONST;
GtkWidget *bonobo_ui_config_widget_construct (BonoboUIConfigWidget *config,
BonoboUIEngine *engine,
GtkAccelGroup *accel_group);
GtkWidget *bonobo_ui_config_widget_new (BonoboUIEngine *engine,
GtkAccelGroup *accel_group);
G_END_DECLS
#endif /* BONOBO_UI_DISABLE_DEPRECATED */
#endif /* BONOBO_UI_CONFIG_WIDGET_H */
|