aboutsummaryrefslogtreecommitdiff
path: root/src/gui_peaksearch.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2020-03-16 10:56:56 +0100
committerThomas White <taw@physics.org>2020-07-29 18:42:24 +0200
commit6ec178c76a4298680f497b3a043ec1198d3a66b2 (patch)
tree36548dd9c6279e855df5fd56f3fa69e1663d19aa /src/gui_peaksearch.h
parent952f89e192d848dfbc53e6d1e0da964dd82ffaf6 (diff)
Split off GUI peak search stuff to separate file
Diffstat (limited to 'src/gui_peaksearch.h')
-rw-r--r--src/gui_peaksearch.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/gui_peaksearch.h b/src/gui_peaksearch.h
new file mode 100644
index 00000000..5124acdb
--- /dev/null
+++ b/src/gui_peaksearch.h
@@ -0,0 +1,41 @@
+/*
+ * gui_peaksearch.h
+ *
+ * Peak search parts of GUI
+ *
+ * Copyright © 2020 Deutsches Elektronen-Synchrotron DESY,
+ * a research centre of the Helmholtz Association.
+ *
+ * Authors:
+ * 2020 Thomas White <taw@physics.org>
+ *
+ * This file is part of CrystFEL.
+ *
+ * CrystFEL is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * CrystFEL is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with CrystFEL. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef GUI_PEAKSEARCH_H
+#define GUI_PEAKSEARCH_H
+
+#include <gtk/gtk.h>
+
+#include "crystfel_gui.h"
+
+extern gint peaksearch_sig(GtkWidget *widget,
+ struct crystfelproject *proj);
+
+extern void update_peaks(struct crystfelproject *proj);
+
+#endif