diff options
author | Thomas White <taw@physics.org> | 2011-06-30 16:18:34 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:28 +0100 |
commit | 7a5bb5f6a676058e8739314ef9086803c988baf0 (patch) | |
tree | 3abb63872f3a54564e3dfe8a4985b183e525de67 /src/dw-hdfsee.h | |
parent | 04c451ae1f31a0e2b94017eec86d44fa42f29bc7 (diff) |
hdfsee: Allow configuration of the ring radius
Diffstat (limited to 'src/dw-hdfsee.h')
-rw-r--r-- | src/dw-hdfsee.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/dw-hdfsee.h b/src/dw-hdfsee.h index 8079ee58..c13b3635 100644 --- a/src/dw-hdfsee.h +++ b/src/dw-hdfsee.h @@ -32,6 +32,12 @@ typedef struct { } BoostIntDialog; +typedef struct { + GtkWidget *window; + GtkWidget *entry; +} RingRadiusDialog; + + struct numberswindow { GtkWidget *window; GtkWidget *labels[17*17]; @@ -63,6 +69,7 @@ typedef struct { /* Dialog boxes */ BinningDialog *binning_dialog; BoostIntDialog *boostint_dialog; + RingRadiusDialog *ringradius_dialog; struct numberswindow *numbers_window; int width; @@ -79,6 +86,7 @@ typedef struct { int use_geom; int show_rings; int show_peaks; + double ring_radius; int show_col_scale; int scale; |