diff options
author | Thomas White <taw@physics.org> | 2020-03-05 15:38:41 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:24 +0200 |
commit | a7057533b2d8dbccb2e29d7215a054e368d0b749 (patch) | |
tree | 4e6609003cabe2975ca3482c1afcf331eac6a299 /src/crystfelimageview.h | |
parent | bd4ed1a96bcbaca39ad39ff6d31e4f1bbf8d74ee (diff) |
Show the peaks in the image view
Diffstat (limited to 'src/crystfelimageview.h')
-rw-r--r-- | src/crystfelimageview.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/crystfelimageview.h b/src/crystfelimageview.h index 3e2c35e2..62faf044 100644 --- a/src/crystfelimageview.h +++ b/src/crystfelimageview.h @@ -86,6 +86,9 @@ struct _crystfelimageview char *event; struct image *image; GdkPixbuf **pixbufs; + + int num_peaklists; + ImageFeatureList **peaklists; }; struct _crystfelimageviewclass @@ -109,6 +112,7 @@ extern int crystfel_image_view_set_image(CrystFELImageView *iv, extern struct image *crystfel_image_view_get_image_struct(CrystFELImageView *iv); extern void crystfel_image_view_set_peaks(CrystFELImageView *iv, - ImageFeatureList *peaks); + ImageFeatureList *peaks, + int list_num); #endif /* CRYSTFELIMAGEVIEW_H */ |