~ubuntu-branches/ubuntu/vivid/gimp/vivid

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach
  • Date: 2012-05-08 18:50:03 UTC
  • mto: (1.1.26) (0.5.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 71.
  • Revision ID: package-import@ubuntu.com-20120508185003-tltkvbaysf8d2426
ImportĀ upstreamĀ versionĀ 2.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 *
6
6
 * Copyright (C) 1998-2003 Maurits Rijk  lpeek.mrijk@consunet.nl
7
7
 *
8
 
 * This program is free software; you can redistribute it and/or modify
 
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
10
 
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * the Free Software Foundation; either version 3 of the License, or
11
11
 * (at your option) any later version.
12
12
 *
13
13
 * This program is distributed in the hope that it will be useful,
16
16
 * GNU General Public License for more details.
17
17
 *
18
18
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program; if not, write to the Free Software
20
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
20
 *
22
21
 */
23
22
 
31
30
 
32
31
struct AreaInfoDialog_t {
33
32
   DefaultDialog_t *dialog;
34
 
   Object_t        *obj;
35
 
   Object_t        *clone;
36
 
   gboolean         add;
37
 
   gboolean         geometry_lock;
38
 
   gboolean         preview;
 
33
   Object_t        *obj;
 
34
   Object_t        *clone;
 
35
   gboolean         add;
 
36
   gboolean         geometry_lock;
 
37
   gboolean         preview;
39
38
 
40
 
   GtkWidget       *notebook;
41
 
   GtkWidget       *web_site;
42
 
   GtkWidget       *ftp_site;
43
 
   GtkWidget       *gopher;
44
 
   GtkWidget       *other;
45
 
   GtkWidget       *file;
46
 
   GtkWidget       *wais;
47
 
   GtkWidget       *telnet;
48
 
   GtkWidget       *email;
49
 
   GtkWidget       *url;
50
 
   GtkWidget       *relative_link;
51
 
   GtkWidget       *target;
52
 
   GtkWidget       *comment;
53
 
   GtkWidget       *mouse_over;
54
 
   GtkWidget       *mouse_out;
55
 
   GtkWidget       *focus;
56
 
   GtkWidget       *blur;
57
 
   GtkWidget       *browse;
58
 
   gpointer         infotab;
59
 
   gpointer         geometry_cb_id;
 
39
   GtkWidget       *notebook;
 
40
   GtkWidget       *web_site;
 
41
   GtkWidget       *ftp_site;
 
42
   GtkWidget       *gopher;
 
43
   GtkWidget       *other;
 
44
   GtkWidget       *file;
 
45
   GtkWidget       *wais;
 
46
   GtkWidget       *telnet;
 
47
   GtkWidget       *email;
 
48
   GtkWidget       *url;
 
49
   GtkWidget       *relative_link;
 
50
   GtkWidget       *target;
 
51
   GtkWidget       *comment;
 
52
   GtkWidget       *mouse_over;
 
53
   GtkWidget       *mouse_out;
 
54
   GtkWidget       *focus;
 
55
   GtkWidget       *blur;
 
56
   GtkWidget       *browse;
 
57
   gpointer         infotab;
 
58
   gpointer         geometry_cb_id;
60
59
};
61
60
 
62
61
AreaInfoDialog_t *create_edit_area_info_dialog(Object_t *obj);
63
62
void edit_area_info_dialog_show(AreaInfoDialog_t *dialog, Object_t *obj,
64
 
                                gboolean add);
 
63
                                gboolean add);
65
64
void edit_area_info_dialog_emit_geometry_signal(AreaInfoDialog_t *dialog);
66
65
 
67
66
#endif /* _IMAP_EDIT_AREA_INFO_H */