diff options
author | Thomas White <taw@physics.org> | 2024-01-10 16:49:41 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2024-01-10 17:10:34 +0100 |
commit | 2058e8e032575c6b267271522778c9beb3d8b0aa (patch) | |
tree | 4eac3fd9d33530d8c9412758d3c41a64a101b75e /src/gui_align.h | |
parent | 8ad1eddff0b3f020581e1852448752145656d16d (diff) |
GUI: Skeleton task for detector alignment
Diffstat (limited to 'src/gui_align.h')
-rw-r--r-- | src/gui_align.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/gui_align.h b/src/gui_align.h new file mode 100644 index 00000000..50250e6a --- /dev/null +++ b/src/gui_align.h @@ -0,0 +1,38 @@ +/* + * gui_align.h + * + * Align detector via CrystFEL GUI + * + * Copyright © 2024 Deutsches Elektronen-Synchrotron DESY, + * a research centre of the Helmholtz Association. + * + * Authors: + * 2024 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_ALIGN_H +#define GUI_ALIGN_H + +#include <gtk/gtk.h> + +#include "gui_project.h" + +extern gint align_sig(GtkWidget *widget, struct crystfelproject *proj); + +#endif |