diff options
author | Thomas White <taw@physics.org> | 2011-03-01 14:52:47 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:16 +0100 |
commit | d57837bdbc8a149bddb944ba7d125fafa70eb6fc (patch) | |
tree | 21a02772628aa5174bc60d2b5b79e11290408e5d /src/dw-geomatic.h | |
parent | 8e8cd379cb9cb82b70d8a0de70543ff09840edf5 (diff) |
Rename displaywindow.{c,h} -> dw-hdfsee.{c,h}, remove dw-geomatic.{c,h}
Diffstat (limited to 'src/dw-geomatic.h')
-rw-r--r-- | src/dw-geomatic.h | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/src/dw-geomatic.h b/src/dw-geomatic.h deleted file mode 100644 index 0482d26c..00000000 --- a/src/dw-geomatic.h +++ /dev/null @@ -1,68 +0,0 @@ -/* - * dw-geomatic.h - * - * GUI geometry calibration - * - * (c) 2006-2011 Thomas White <taw@physics.org> - * - * Part of CrystFEL - crystallography with a FEL - * - */ - - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#ifndef DW_GEOMATIC_H -#define DW_GEOMATIC_H - -#include <gtk/gtk.h> - -#include "cell.h" -#include "reflist.h" - - -struct gmdialog { - GtkWidget *window; - GtkWidget *entry; -}; - - -typedef struct { - - GtkWidget *window; - GtkWidget *drawingarea; - GtkUIManager *ui; - GtkActionGroup *action_group; - GdkPixbuf *pixbuf; - gulong motion_callback; - - struct hdfile *hdfile; - struct image *image; - int width; - int height; - double boostint; - - /* Dialog boxes */ - struct gmdialog *boostint_dialog; - - int show_col_scale; - int scale; - GdkPixbuf *col_scale; - - double motion_origx; - double motion_origy; - - UnitCell *cell; - double pos_x; - double pos_y; - double pos_z; - -} DWGeomatic; - -/* Return an image display window showing the given filename, or NULL */ -extern DWGeomatic *geomatic_open(const char *filename); - - -#endif /* DW_GEOMATICs_H */ |