~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/imagemap/imap_misc.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 * Generates clickable image maps.
5
5
 *
6
 
 * Copyright (C) 1998-2004 Maurits Rijk  m.rijk@chello.nl
 
6
 * Copyright (C) 1998-2005 Maurits Rijk  m.rijk@chello.nl
7
7
 *
8
8
 * This program is free software; you can redistribute it and/or modify
9
9
 * it under the terms of the GNU General Public License as published by
24
24
#ifndef _IMAP_MISC_H
25
25
#define _IMAP_MISC_H
26
26
 
27
 
void toolbar_add_space (GtkWidget *toolbar);
28
 
GtkWidget *make_toolbar_stock_icon(GtkWidget *toolbar, const gchar *stock_id, 
29
 
                                   const char *identifier, 
30
 
                                   const char *tooltip, 
31
 
                                   void (*callback)(GtkWidget*, gpointer), 
32
 
                                   gpointer udata);
33
 
GtkWidget *make_toolbar_radio_icon(GtkWidget *toolbar, const gchar *stock_id,
34
 
                                   GtkWidget *prev, const char *identifier, 
35
 
                                   const char *tooltip, 
36
 
                                   void (*callback)(GtkWidget*, gpointer),
37
 
                                   gpointer udata);
38
 
GtkWidget *make_toolbar_toggle_icon(GtkWidget *toolbar, const gchar *stock_id,
39
 
                                    const char *identifier, 
40
 
                                    const char *tooltip, 
41
 
                                    void (*callback)(GtkWidget*, gpointer),
42
 
                                    gpointer udata);
43
 
 
44
27
void set_sash_size(gboolean double_size);
45
28
void draw_sash(GdkWindow *window, GdkGC *gc, gint x, gint y);
46
29
gboolean near_sash(gint sash_x, gint sash_y, gint x, gint y);
47
30
 
48
 
typedef struct {
49
 
   DefaultDialog_t *dialog;
50
 
   GtkWidget *label;
51
 
} Alert_t;
52
 
 
53
 
Alert_t *create_alert(const gchar *stock_id);
54
 
Alert_t *create_confirm_alert(const gchar *stock_id);
55
 
void alert_set_text(Alert_t *alert, const char *primary_text, 
56
 
                    const char *secondary_text);
57
 
 
58
31
#endif /* _IMAP_MISC_H */
59
32