aboutsummaryrefslogtreecommitdiff
path: root/src/imagedisplay.h
blob: 99332018a45748e6869c5fc4ce10688eb4b954bf (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * imagedisplay.h
 *
 * Show raw and processed images
 *
 * (c) 2007-2008 Thomas White <taw27@cam.ac.uk>
 *
 *  dtr - Diffraction Tomography Reconstruction
 *
 */
 
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef IMAGEDISPLAY_H
#define IMAGEDISPLAY_H

#include <stdint.h>
#include <gtk/gtk.h>

#include "image.h"

typedef enum {
	IMAGEDISPLAY_NONE		= 0,
	IMAGEDISPLAY_SHOW_CENTRE	= 1<<1,
	IMAGEDISPLAY_SHOW_TILT_AXIS	= 1<<2,
	IMAGEDISPLAY_QUIT_IF_CLOSED	= 1<<3,
	IMAGEDISPLAY_FREE		= 1<<4,
	IMAGEDISPLAY_SCALE_BAR		= 1<<5
} ImageDisplayFlags;

typedef enum {
	IMAGEDISPLAY_MARK_CIRCLE_1,
	IMAGEDISPLAY_MARK_CIRCLE_2,
	IMAGEDISPLAY_MARK_CIRCLE_3,
	IMAGEDISPLAY_MARK_LINE_1,
	IMAGEDISPLAY_MARK_LINE_2
} ImageDisplayMarkType;

typedef struct struct_imagedisplaymark {

	double				x;
	double				y;
	double				x2;
	double				y2;
	ImageDisplayMarkType		type;
	double				weight;	/* The 'intensity' if this is a peak */
	
	struct struct_imagedisplaymark	*next;
	
} ImageDisplayMark;

typedef struct imagedisplay_struct {

	ImageRecord		imagerecord;
	ImageDisplayFlags	flags;
	ImageDisplayMark	*marks;
	const char		*title;
	const char		*message;
	guchar			*data;

	GtkWidget		*window;
	GdkPixbuf		*pixbuf;
	GdkPixbuf		*pixbuf_scaled;
	GtkWidget		*drawingarea;
	GtkWidget		*vbox;
	GCallback		mouse_click_func;
	GdkGC			*gc_centre;
	GdkGC			*gc_tiltaxis;
	GdkGC			*gc_marks_1;
	GdkGC			*gc_marks_2;
	GdkGC			*gc_marks_3;
	GdkGC			*gc_scalebar;
	gboolean		realised;
	
	unsigned int		drawingarea_width;
	unsigned int		drawingarea_height;	/* Size of the drawing area */
	unsigned int		view_width;
	unsigned int		view_height;		/* Size of the picture inside the drawing area */
	
} ImageDisplay;

extern ImageDisplay *imagedisplay_open(ImageRecord image, const char *title, ImageDisplayFlags flags);

extern ImageDisplay *imagedisplay_open_with_message(ImageRecord image, const char *title, const char *message,
						ImageDisplayFlags flags, GCallback mouse_click_func,
						gpointer callback_data);

extern ImageDisplay *imagedisplay_new_nowindow(ImageRecord imagerecord, ImageDisplayFlags flags, const char *message,
						GCallback mouse_click_func, gpointer callback_data);

extern void imagedisplay_add_mark(ImageDisplay *imagedisplay, double x, double y, ImageDisplayMarkType type,
						double weight);

extern void imagedisplay_add_line(ImageDisplay *imagedisplay, double x1, double y1,
						double x2, double y2, ImageDisplayMarkType type);

extern void imagedisplay_force_redraw(ImageDisplay *imagedisplay);
extern void imagedisplay_put_data(ImageDisplay *imagedisplay, ImageRecord imagerecord);
extern void imagedisplay_close(ImageDisplay *imagedisplay);
extern void imagedisplay_clear_marks(ImageDisplay *imagedisplay);

#endif	/* IMAGEDISPLAY_H */