~ubuntu-branches/ubuntu/natty/bluefish/natty-proposed

« back to all changes in this revision

Viewing changes to src/images.h

  • Committer: Bazaar Package Importer
  • Author(s): Davide Puricelli (evo)
  • Date: 2005-04-23 17:05:18 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050423170518-pb8zi3vg32cm6g04
Tags: 1.0-1
* Acknowledge NMU, thanks Leo; closes: #291222.
* Updated debian/ files, thanks Daniel Leidert. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Bluefish HTML Editor
2
 
 * images.h - image stuff prototypes
3
 
 *
4
 
 * Copyright (C) 1998 Olivier Sessink and Chris Mazuc
5
 
 *
6
 
 * This program is free software; you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation; either version 2 of the License, or
9
 
 * (at your option) any later version.
10
 
 *
11
 
 * This program is distributed in the hope that it will be useful,
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 * GNU General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with this program; if not, write to the Free Software
18
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
 
 */
20
 
/* #define IMAGEMAP_EDITOR_TEST */
21
 
 
22
 
 
23
 
#ifndef __IMAGES_H_
24
 
#define __IMAGES_H_
25
 
 
26
 
#include <glib.h>
27
 
#include <gtk/gtkwidget.h>
28
 
 
29
 
void image_insert_dialog_cb(GtkWidget * widget, gpointer data);
30
 
 
31
 
#ifdef HAVE_IMAGE_LIBS
32
 
void image_thumbnail_dialog_cb(GtkWidget * widget, gpointer data);
33
 
void preview_image_by_filename (char *filename);
34
 
void preview_image_by_position_cb (GtkWidget * widget, gpointer data);
35
 
 
36
 
#endif
37
 
#endif                                                  /* __IMAGES_H_ */