~ubuntu-branches/ubuntu/gutsy/gmanedit/gutsy

« back to all changes in this revision

Viewing changes to src/support.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach
  • Date: 2001-07-11 18:55:16 UTC
  • Revision ID: james.westby@ubuntu.com-20010711185516-xv17prucwqrjlhf3
Tags: upstream-0.3.3
ImportĀ upstreamĀ versionĀ 0.3.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * NON EDITES ESTE FICHEIRO - foi xerado por Glade.
 
3
 */
 
4
 
 
5
#include <gnome.h>
 
6
 
 
7
/*
 
8
 * Public Functions.
 
9
 */
 
10
 
 
11
/*
 
12
 * This function returns a widget in a component created by Glade.
 
13
 * Call it with the toplevel widget in the component (i.e. a window/dialog),
 
14
 * or alternatively any widget in the component, and the name of the widget
 
15
 * you want returned.
 
16
 */
 
17
GtkWidget*  lookup_widget              (GtkWidget       *widget,
 
18
                                        const gchar     *widget_name);
 
19
 
 
20
/* get_widget() is deprecated. Use lookup_widget instead. */
 
21
#define get_widget lookup_widget
 
22
 
 
23
 
 
24
/*
 
25
 * Private Functions.
 
26
 */
 
27
 
 
28
/* This is used to create the pixmaps in the interface. */
 
29
GtkWidget*  create_pixmap              (GtkWidget       *widget,
 
30
                                        const gchar     *filename,
 
31
                                        gboolean         gnome_pixmap);
 
32
 
 
33
GdkImlibImage* create_image            (const gchar     *filename);
 
34