aboutsummaryrefslogtreecommitdiff
path: root/src/gui_project.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-08-26 16:47:58 +0200
committerThomas White <taw@physics.org>2020-08-26 16:47:58 +0200
commitbeed39e09a3573380ee2cc0792b547c2f2d52852 (patch)
treeb606a9d9faab02d68f848f78bc4600559dac63f2 /src/gui_project.h
parentf249385feb6799c913f3eba13d79dfd507c72c04 (diff)
Add job title and notes fields
This required a bit of callback re-wiring
Diffstat (limited to 'src/gui_project.h')
-rw-r--r--src/gui_project.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui_project.h b/src/gui_project.h
index 6d6ca919..34aa6f61 100644
--- a/src/gui_project.h
+++ b/src/gui_project.h
@@ -95,7 +95,9 @@ struct crystfel_backend {
/* Called to ask the backend to start indexing frames.
* It should return a void pointer representing this job */
- void *(*run_indexing)(char **filenames,
+ void *(*run_indexing)(const char *job_title,
+ const char *job_notes,
+ char **filenames,
char **events,
int n_frames,
char *geom_filename,
@@ -171,9 +173,7 @@ struct crystfelproject {
struct index_params indexing_params;
int indexing_backend_selected;
GtkWidget *indexing_opts;
- GtkWidget *indexing_backend_combo;
- GtkWidget *indexing_backend_opts_widget;
- GtkWidget *indexing_backend_opts_box;
+ char *indexing_new_job_title;
GtkWidget *type_combo;
GtkWidget *peak_vbox; /* Box for peak search parameter widgets */