diff options
author | Thomas White <taw@physics.org> | 2020-08-13 16:58:51 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-08-13 16:58:51 +0200 |
commit | 1323191a533b420bb9119960f41bfcf0175a18ad (patch) | |
tree | 9cdf9a1f4cff273da91baca71b74a4972da7bb71 /src/crystfel_gui.c | |
parent | aaee08b4fe53bf2cdc2079ee623d4d86f4f73991 (diff) |
GUI: Add some more task buttons
Diffstat (limited to 'src/crystfel_gui.c')
-rw-r--r-- | src/crystfel_gui.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/crystfel_gui.c b/src/crystfel_gui.c index 619ebd37..a941dca6 100644 --- a/src/crystfel_gui.c +++ b/src/crystfel_gui.c @@ -743,6 +743,7 @@ static void add_button(GtkWidget *vbox, const char *label, const char *imagen, static void add_task_buttons(GtkWidget *vbox, struct crystfelproject *proj) { + /* FIXME: All these icons are placeholders */ add_button(vbox, "Load data", "folder-pictures", G_CALLBACK(finddata_sig), proj); add_button(vbox, "Peak detection", "edit-find", @@ -753,10 +754,14 @@ static void add_task_buttons(GtkWidget *vbox, struct crystfelproject *proj) G_CALLBACK(index_all_sig), proj); add_button(vbox, "Determine unit cell", "applications-engineering", G_CALLBACK(cell_explorer_sig), proj); + add_button(vbox, "Indexing ambiguity", "face-worried", + G_CALLBACK(NULL), proj); add_button(vbox, "Merge", "applications-science", G_CALLBACK(NULL), proj); add_button(vbox, "Figures of merit", "trophy-gold", G_CALLBACK(NULL), proj); + add_button(vbox, "Export data", "document-send", + G_CALLBACK(NULL), proj); } |