From 65f7ff44d6a5461f2392b644a0c4e03b550d4975 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 22 Oct 2020 18:28:25 +0200 Subject: Skeleton for merging via GUI --- src/crystfelmergeopts.h | 73 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/crystfelmergeopts.h (limited to 'src/crystfelmergeopts.h') diff --git a/src/crystfelmergeopts.h b/src/crystfelmergeopts.h new file mode 100644 index 00000000..dc4333fc --- /dev/null +++ b/src/crystfelmergeopts.h @@ -0,0 +1,73 @@ +/* + * crystfelmergeopts.h + * + * A GTK widget to set merge options + * + * Copyright © 2020 Deutsches Elektronen-Synchrotron DESY, + * a research centre of the Helmholtz Association. + * + * Authors: + * 2020 Thomas White + * + * 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 . + * + */ + +#ifndef CRYSTFELMERGEOPTS_H +#define CRYSTFELMERGEOPTS_H + +#include +#include + +#define CRYSTFEL_TYPE_MERGE_OPTS (crystfel_merge_opts_get_type()) + +#define CRYSTFEL_MERGE_OPTS(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \ + CRYSTFEL_TYPE_MERGE_OPTS, CrystFELMergeOpts)) + +#define CRYSTFEL_IS_MERGE_OPTS(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \ + CRYSTFEL_TYPE_MERGE_OPTS)) + +#define CRYSTFEL_MERGE_OPTS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((obj), \ + CRYSTFEL_TYPE_MERGE_OPTS, CrystFELMergeOpts)) + +#define CRYSTFEL_IS_MERGE_OPTS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((obj), \ + CRYSTFEL_TYPE_MERGE_OPTS)) + +#define CRYSTFEL_MERGE_OPTS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \ + CRYSTFEL_TYPE_MERGE_OPTS, CrystFELMergeOpts)) + +struct _crystfelmergeopts +{ + GtkNotebook parent_instance; + + /*< private >*/ + GtkWidget *model_combo; + GtkWidget *limit_res; + GtkWidget *push_res; +}; + +struct _crystfelmergeoptsclass +{ + GtkNotebookClass parent_class; +}; + +typedef struct _crystfelmergeopts CrystFELMergeOpts; +typedef struct _crystfelmergeoptsclass CrystFELMergeOptsClass; + +extern GType crystfel_merge_opts_get_type(void); +extern GtkWidget *crystfel_merge_opts_new(void); + +#endif /* CRYSTFELMERGEOPTS_H */ -- cgit v1.2.3