2 /* creates the UI for the equipment page -
3 * controlled through the following interfaces:
5 * void show_dive_equipment(struct dive *dive, int w_idx)
8 * GtkWidget *equipment_widget(int w_idx)
18 #include "display-gtk.h"
21 static GtkListStore *cylinder_model, *weightsystem_model;
40 struct equipment_list {
43 GtkTreeView *tree_view;
44 GtkWidget *edit, *add, *del;
47 static struct equipment_list cylinder_list[2], weightsystem_list[2];
50 struct cylinder_widget {
54 GtkComboBox *description;
55 GtkSpinButton *size, *pressure;
56 GtkWidget *start, *end, *pressure_button;
57 GtkWidget *o2, *he, *gasmix_button;
64 GtkComboBox *description;
65 GtkSpinButton *weight;
68 /* we want bar - so let's not use our unit functions */
69 static int convert_pressure(int mbar, double *p)
74 if (output_units.pressure == PSI) {
75 pressure = mbar_to_PSI(mbar);
78 pressure = mbar / 1000.0;
85 static void convert_volume_pressure(int ml, int mbar, double *v, double *p)
87 double volume, pressure;
91 if (output_units.volume == CUFT) {
92 volume = ml_to_cuft(ml);
93 volume *= bar_to_atm(mbar / 1000.0);
96 if (output_units.pressure == PSI) {
97 pressure = mbar_to_PSI(mbar);
99 pressure = mbar / 1000.0;
105 static int convert_weight(int grams, double *m)
107 int decimals = 1; /* not sure - do people do less than whole lbs/kg ? */
110 if (output_units.weight == LBS)
111 weight = grams_to_lbs(grams);
113 weight = grams / 1000.0;
118 static void set_cylinder_type_spinbuttons(struct cylinder_widget *cylinder, int ml, int mbar)
120 double volume, pressure;
122 convert_volume_pressure(ml, mbar, &volume, &pressure);
123 gtk_spin_button_set_value(cylinder->size, volume);
124 gtk_spin_button_set_value(cylinder->pressure, pressure);
127 static void set_cylinder_pressure_spinbuttons(struct cylinder_widget *cylinder, cylinder_t *cyl)
130 unsigned int start, end;
133 start = cyl->start.mbar;
137 start = cyl->sample_start.mbar;
138 end = cyl->sample_end.mbar;
140 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cylinder->pressure_button), set);
141 gtk_widget_set_sensitive(cylinder->start, set);
142 gtk_widget_set_sensitive(cylinder->end, set);
144 convert_pressure(start, &pressure);
145 gtk_spin_button_set_value(GTK_SPIN_BUTTON(cylinder->start), pressure);
146 convert_pressure(end, &pressure);
147 gtk_spin_button_set_value(GTK_SPIN_BUTTON(cylinder->end), pressure);
150 static void set_weight_weight_spinbutton(struct ws_widget *ws_widget, int grams)
154 convert_weight(grams, &weight);
155 gtk_spin_button_set_value(ws_widget->weight, weight);
159 * The gtk_tree_model_foreach() interface is bad. It could have
160 * returned whether the callback ever returned true
162 static GtkTreeIter *found_match = NULL;
163 static GtkTreeIter match_iter;
165 static gboolean match_desc(GtkTreeModel *model, GtkTreePath *path,
166 GtkTreeIter *iter, gpointer data)
170 const char *desc = data;
172 gtk_tree_model_get(model, iter, 0, &name, -1);
173 match = !strcmp(desc, name);
177 found_match = &match_iter;
182 static int get_active_item(GtkComboBox *combo_box, GtkTreeIter *iter, GtkListStore *model)
186 if (gtk_combo_box_get_active_iter(combo_box, iter))
189 desc = gtk_combo_box_get_active_text(combo_box);
192 gtk_tree_model_foreach(GTK_TREE_MODEL(model), match_desc, (void *)desc);
198 *iter = *found_match;
199 gtk_combo_box_set_active_iter(combo_box, iter);
203 static void cylinder_cb(GtkComboBox *combo_box, gpointer data)
206 GtkTreeModel *model = gtk_combo_box_get_model(combo_box);
208 struct cylinder_widget *cylinder = data;
209 cylinder_t *cyl = current_dive->cylinder + cylinder->index;
211 /* Did the user set it to some non-standard value? */
212 if (!get_active_item(combo_box, &iter, cylinder_model)) {
213 cylinder->changed = 1;
218 * We get "change" signal callbacks just because we set
219 * the description by hand. Whatever. So ignore them if
222 if (!cylinder->changed && cyl->type.description) {
224 char *desc = gtk_combo_box_get_active_text(combo_box);
226 same = !strcmp(desc, cyl->type.description);
231 cylinder->changed = 1;
233 gtk_tree_model_get(model, &iter,
238 set_cylinder_type_spinbuttons(cylinder, ml, mbar);
241 static void weight_cb(GtkComboBox *combo_box, gpointer data)
244 GtkTreeModel *model = gtk_combo_box_get_model(combo_box);
246 struct ws_widget *ws_widget = data;
247 weightsystem_t *ws = current_dive->weightsystem + ws_widget->index;
249 /* Did the user set it to some non-standard value? */
250 if (!get_active_item(combo_box, &iter, weightsystem_model)) {
251 ws_widget->changed = 1;
256 * We get "change" signal callbacks just because we set
257 * the description by hand. Whatever. So ignore them if
260 if (!ws_widget->changed && ws->description) {
262 char *desc = gtk_combo_box_get_active_text(combo_box);
264 same = !strcmp(desc, ws->description);
269 ws_widget->changed = 1;
271 gtk_tree_model_get(model, &iter,
275 set_weight_weight_spinbutton(ws_widget, weight);
278 static GtkTreeIter *add_cylinder_type(const char *desc, int ml, int mbar, GtkTreeIter *iter)
282 /* Don't even bother adding stuff without a size */
287 model = GTK_TREE_MODEL(cylinder_model);
288 gtk_tree_model_foreach(model, match_desc, (void *)desc);
291 GtkListStore *store = GTK_LIST_STORE(model);
293 gtk_list_store_append(store, iter);
294 gtk_list_store_set(store, iter,
304 static GtkTreeIter *add_weightsystem_type(const char *desc, int weight, GtkTreeIter *iter)
309 model = GTK_TREE_MODEL(weightsystem_model);
310 gtk_tree_model_foreach(model, match_desc, (void *)desc);
313 gtk_list_store_set(GTK_LIST_STORE(model), found_match,
316 } else if (desc && desc[0]) {
317 gtk_list_store_append(GTK_LIST_STORE(model), iter);
318 gtk_list_store_set(GTK_LIST_STORE(model), iter,
328 * When adding a dive, we'll add all the pre-existing cylinder
329 * information from that dive to our cylinder model.
331 void add_cylinder_description(cylinder_type_t *type)
335 unsigned int size, workp;
337 desc = type->description;
340 size = type->size.mliter;
341 workp = type->workingpressure.mbar;
342 add_cylinder_type(desc, size, workp, &iter);
345 static void add_cylinder(struct cylinder_widget *cylinder, const char *desc, int ml, int mbar)
347 GtkTreeIter iter, *match;
349 cylinder->name = desc;
350 match = add_cylinder_type(desc, ml, mbar, &iter);
352 gtk_combo_box_set_active_iter(cylinder->description, match);
355 void add_weightsystem_description(weightsystem_t *weightsystem)
361 desc = weightsystem->description;
364 weight = weightsystem->weight.grams;
365 add_weightsystem_type(desc, weight, &iter);
368 static void add_weightsystem(struct ws_widget *ws_widget, const char *desc, int weight)
370 GtkTreeIter iter, *match;
372 ws_widget->name = desc;
373 match = add_weightsystem_type(desc, weight, &iter);
375 gtk_combo_box_set_active_iter(ws_widget->description, match);
378 static void show_cylinder(cylinder_t *cyl, struct cylinder_widget *cylinder)
385 /* Don't show uninitialized cylinder widgets */
386 if (!cylinder->description)
389 desc = cyl->type.description;
392 ml = cyl->type.size.mliter;
393 mbar = cyl->type.workingpressure.mbar;
394 add_cylinder(cylinder, desc, ml, mbar);
396 set_cylinder_type_spinbuttons(cylinder,
397 cyl->type.size.mliter, cyl->type.workingpressure.mbar);
398 set_cylinder_pressure_spinbuttons(cylinder, cyl);
400 gasmix = cyl->gasmix.o2.permille || cyl->gasmix.he.permille;
401 gtk_widget_set_sensitive(cylinder->o2, gasmix);
402 gtk_widget_set_sensitive(cylinder->he, gasmix);
403 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(cylinder->gasmix_button), gasmix);
405 o2 = cyl->gasmix.o2.permille / 10.0;
406 he = cyl->gasmix.he.permille / 10.0;
408 o2 = AIR_PERMILLE / 10.0;
409 gtk_spin_button_set_value(GTK_SPIN_BUTTON(cylinder->o2), o2);
410 gtk_spin_button_set_value(GTK_SPIN_BUTTON(cylinder->he), he);
413 static void show_weightsystem(weightsystem_t *ws, struct ws_widget *weightsystem_widget)
418 /* Don't show uninitialized widgets */
419 if (!weightsystem_widget->description)
422 desc = ws->description;
425 grams = ws->weight.grams;
426 add_weightsystem(weightsystem_widget, desc, grams);
428 set_weight_weight_spinbutton(weightsystem_widget, ws->weight.grams);
431 gboolean cylinder_none(void *_data)
433 cylinder_t *cyl = _data;
434 return !cyl->type.size.mliter &&
435 !cyl->type.workingpressure.mbar &&
436 !cyl->type.description &&
437 !cyl->gasmix.o2.permille &&
438 !cyl->gasmix.he.permille &&
439 !cyl->sample_start.mbar &&
440 !cyl->sample_end.mbar &&
445 gboolean no_cylinders(cylinder_t *cyl)
449 for (i = 0; i < MAX_CYLINDERS; i++)
450 if (!cylinder_none(cyl + i))
455 /* descriptions are equal if they are both NULL or both non-NULL
457 gboolean description_equal(const char *desc1, const char *desc2)
459 return ((! desc1 && ! desc2) ||
460 (desc1 && desc2 && strcmp(desc1, desc2) == 0));
463 /* when checking for the same cylinder we want the size and description to match
464 but don't compare the start and end pressures, nor the Nitrox/He values */
465 static gboolean one_cylinder_equal(cylinder_t *cyl1, cylinder_t *cyl2)
467 return cyl1->type.size.mliter == cyl2->type.size.mliter &&
468 cyl1->type.workingpressure.mbar == cyl2->type.workingpressure.mbar &&
469 description_equal(cyl1->type.description, cyl2->type.description);
472 gboolean cylinders_equal(cylinder_t *cyl1, cylinder_t *cyl2)
476 for (i = 0; i < MAX_CYLINDERS; i++)
477 if (!one_cylinder_equal(cyl1 + i, cyl2 + i))
482 /* copy size and description of all cylinders from cyl1 to cyl2 */
483 void copy_cylinders(cylinder_t *cyl1, cylinder_t *cyl2)
487 for (i = 0; i < MAX_CYLINDERS; i++) {
488 cyl2[i].type.size.mliter = cyl1[i].type.size.mliter;
489 cyl2[i].type.workingpressure.mbar = cyl1[i].type.workingpressure.mbar;
490 if (cyl1[i].type.description)
491 cyl2[i].type.description = strdup(cyl1[i].type.description);
493 cyl2[i].type.description = NULL;
497 static gboolean weightsystem_none(void *_data)
499 weightsystem_t *ws = _data;
500 return !ws->weight.grams && !ws->description;
503 gboolean no_weightsystems(weightsystem_t *ws)
507 for (i = 0; i < MAX_WEIGHTSYSTEMS; i++)
508 if (!weightsystem_none(ws + i))
513 static gboolean one_weightsystem_equal(weightsystem_t *ws1, weightsystem_t *ws2)
515 return ws1->weight.grams == ws2->weight.grams &&
516 description_equal(ws1->description, ws2->description);
519 gboolean weightsystems_equal(weightsystem_t *ws1, weightsystem_t *ws2)
523 for (i = 0; i < MAX_WEIGHTSYSTEMS; i++)
524 if (!one_weightsystem_equal(ws1 + i, ws2 + i))
529 static void set_one_cylinder(void *_data, GtkListStore *model, GtkTreeIter *iter)
531 cylinder_t *cyl = _data;
532 unsigned int start, end;
534 start = cyl->start.mbar ? : cyl->sample_start.mbar;
535 end = cyl->end.mbar ? : cyl->sample_end.mbar;
536 gtk_list_store_set(model, iter,
537 CYL_DESC, cyl->type.description ? : "",
538 CYL_SIZE, cyl->type.size.mliter,
539 CYL_WORKP, cyl->type.workingpressure.mbar,
542 CYL_O2, cyl->gasmix.o2.permille,
543 CYL_HE, cyl->gasmix.he.permille,
547 static void set_one_weightsystem(void *_data, GtkListStore *model, GtkTreeIter *iter)
549 weightsystem_t *ws = _data;
551 gtk_list_store_set(model, iter,
552 WS_DESC, ws->description ? : "unspecified",
553 WS_WEIGHT, ws->weight.grams,
557 static void *cyl_ptr(struct dive *dive, int idx)
559 if (idx < 0 || idx >= MAX_CYLINDERS)
561 return &dive->cylinder[idx];
564 static void *ws_ptr(struct dive *dive, int idx)
566 if (idx < 0 || idx >= MAX_WEIGHTSYSTEMS)
568 return &dive->weightsystem[idx];
571 static void show_equipment(struct dive *dive, int max,
572 struct equipment_list *equipment_list,
573 void*(*ptr_function)(struct dive*, int),
574 gboolean(*none_function)(void *),
575 void(*set_one_function)(void*, GtkListStore*, GtkTreeIter *))
580 GtkListStore *model = equipment_list->model;
582 gtk_list_store_clear(model);
585 data = ptr_function(dive, used-1);
586 if (!none_function(data))
590 equipment_list->max_index = used;
592 gtk_widget_set_sensitive(equipment_list->edit, 0);
593 gtk_widget_set_sensitive(equipment_list->del, 0);
594 gtk_widget_set_sensitive(equipment_list->add, used < max);
596 for (i = 0; i < used; i++) {
597 data = ptr_function(dive, i);
598 gtk_list_store_append(model, &iter);
599 set_one_function(data, model, &iter);
603 void show_dive_equipment(struct dive *dive, int w_idx)
605 show_equipment(dive, MAX_CYLINDERS, &cylinder_list[w_idx],
606 &cyl_ptr, &cylinder_none, &set_one_cylinder);
607 show_equipment(dive, MAX_WEIGHTSYSTEMS, &weightsystem_list[w_idx],
608 &ws_ptr, &weightsystem_none, &set_one_weightsystem);
611 static GtkWidget *create_spinbutton(GtkWidget *vbox, const char *name, double min, double max, double incr)
613 GtkWidget *frame, *hbox, *button;
615 frame = gtk_frame_new(name);
616 gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, FALSE, 0);
618 hbox = gtk_hbox_new(FALSE, 3);
619 gtk_container_add(GTK_CONTAINER(frame), hbox);
621 button = gtk_spin_button_new_with_range(min, max, incr);
622 gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, FALSE, 0);
624 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(button), GTK_UPDATE_IF_VALID);
629 static void fill_cylinder_info(struct cylinder_widget *cylinder, cylinder_t *cyl, const char *desc,
630 double volume, double pressure, double start, double end, int o2, int he)
634 if (output_units.pressure == PSI) {
635 pressure = psi_to_bar(pressure);
636 start = psi_to_bar(start);
637 end = psi_to_bar(end);
640 if (pressure && output_units.volume == CUFT) {
641 volume = cuft_to_l(volume);
642 volume /= bar_to_atm(pressure);
645 ml = volume * 1000 + 0.5;
646 mbar = pressure * 1000 + 0.5;
648 /* Ignore obviously crazy He values */
652 /* We have a rule that normal air is all zeroes */
653 if (!he && o2 > 208 && o2 < 211)
656 cyl->type.description = desc;
657 cyl->type.size.mliter = ml;
658 cyl->type.workingpressure.mbar = mbar;
659 cyl->start.mbar = start * 1000 + 0.5;
660 cyl->end.mbar = end * 1000 + 0.5;
661 cyl->gasmix.o2.permille = o2;
662 cyl->gasmix.he.permille = he;
665 * Also, insert it into the model if it doesn't already exist
667 add_cylinder(cylinder, desc, ml, mbar);
670 static void record_cylinder_changes(cylinder_t *cyl, struct cylinder_widget *cylinder)
674 double volume, pressure, start, end;
677 /* Ignore uninitialized cylinder widgets */
678 box = cylinder->description;
682 desc = gtk_combo_box_get_active_text(box);
683 volume = gtk_spin_button_get_value(cylinder->size);
684 pressure = gtk_spin_button_get_value(cylinder->pressure);
685 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(cylinder->pressure_button))) {
686 start = gtk_spin_button_get_value(GTK_SPIN_BUTTON(cylinder->start));
687 end = gtk_spin_button_get_value(GTK_SPIN_BUTTON(cylinder->end));
691 if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(cylinder->gasmix_button))) {
692 o2 = gtk_spin_button_get_value(GTK_SPIN_BUTTON(cylinder->o2))*10 + 0.5;
693 he = gtk_spin_button_get_value(GTK_SPIN_BUTTON(cylinder->he))*10 + 0.5;
698 fill_cylinder_info(cylinder, cyl, desc, volume, pressure, start, end, o2, he);
701 static void record_weightsystem_changes(weightsystem_t *ws, struct ws_widget *weightsystem_widget)
709 /* Ignore uninitialized cylinder widgets */
710 box = weightsystem_widget->description;
714 desc = gtk_combo_box_get_active_text(box);
715 value = gtk_spin_button_get_value(weightsystem_widget->weight);
717 if (output_units.weight == LBS)
718 grams = lbs_to_grams(value);
720 grams = value * 1000;
721 ws->weight.grams = grams;
722 ws->description = desc;
723 add_weightsystem_type(desc, grams, &iter);
727 * We hardcode the most common standard cylinders,
728 * we should pick up any other names from the dive
731 static struct tank_info {
733 int cuft, ml, psi, bar;
735 /* Need an empty entry for the no-cylinder case */
738 /* Size-only metric cylinders */
739 { "10.0 l", .ml = 10000 },
740 { "11.1 l", .ml = 11100 },
742 /* Most common AL cylinders */
743 { "AL50", .cuft = 50, .psi = 3000 },
744 { "AL63", .cuft = 63, .psi = 3000 },
745 { "AL72", .cuft = 72, .psi = 3000 },
746 { "AL80", .cuft = 80, .psi = 3000 },
747 { "AL100", .cuft = 100, .psi = 3300 },
749 /* Somewhat common LP steel cylinders */
750 { "LP85", .cuft = 85, .psi = 2640 },
751 { "LP95", .cuft = 95, .psi = 2640 },
752 { "LP108", .cuft = 108, .psi = 2640 },
753 { "LP121", .cuft = 121, .psi = 2640 },
755 /* Somewhat common HP steel cylinders */
756 { "HP65", .cuft = 65, .psi = 3442 },
757 { "HP80", .cuft = 80, .psi = 3442 },
758 { "HP100", .cuft = 100, .psi = 3442 },
759 { "HP119", .cuft = 119, .psi = 3442 },
760 { "HP130", .cuft = 130, .psi = 3442 },
762 /* Common European steel cylinders */
763 { "10L 300 bar", .ml = 10000, .bar = 300 },
764 { "12L 200 bar", .ml = 12000, .bar = 200 },
765 { "12L 232 bar", .ml = 12000, .bar = 232 },
766 { "12L 300 bar", .ml = 12000, .bar = 300 },
767 { "15L 200 bar", .ml = 15000, .bar = 200 },
768 { "15L 232 bar", .ml = 15000, .bar = 232 },
769 { "D7 300 bar", .ml = 14000, .bar = 300 },
770 { "D8.5 232 bar", .ml = 17000, .bar = 232 },
771 { "D12 232 bar", .ml = 24000, .bar = 232 },
773 /* We'll fill in more from the dive log dynamically */
777 static void fill_tank_list(GtkListStore *store)
780 struct tank_info *info = tank_info;
782 for (info = tank_info ; info->name; info++) {
784 int cuft = info->cuft;
787 double bar = info->bar;
796 /* Is it in cuft and psi? */
798 bar = psi_to_bar(psi);
801 double airvolume = cuft_to_l(cuft) * 1000.0;
802 double atm = bar_to_atm(bar);
804 ml = airvolume / atm + 0.5;
807 mbar = bar * 1000 + 0.5;
809 gtk_list_store_append(store, &iter);
810 gtk_list_store_set(store, &iter,
818 fprintf(stderr, "Bad tank info for '%s'\n", info->name);
823 * We hardcode the most common weight system types
824 * This is a bit odd as the weight system types don't usually encode weight
826 static struct ws_info {
837 static void fill_ws_list(GtkListStore *store)
840 struct ws_info *info = ws_info;
843 gtk_list_store_append(store, &iter);
844 gtk_list_store_set(store, &iter,
852 static void gasmix_cb(GtkToggleButton *button, gpointer data)
854 struct cylinder_widget *cylinder = data;
857 state = gtk_toggle_button_get_active(button);
858 gtk_widget_set_sensitive(cylinder->o2, state);
859 gtk_widget_set_sensitive(cylinder->he, state);
862 static void pressure_cb(GtkToggleButton *button, gpointer data)
864 struct cylinder_widget *cylinder = data;
867 state = gtk_toggle_button_get_active(button);
868 gtk_widget_set_sensitive(cylinder->start, state);
869 gtk_widget_set_sensitive(cylinder->end, state);
872 static gboolean completion_cb(GtkEntryCompletion *widget, GtkTreeModel *model, GtkTreeIter *iter, struct cylinder_widget *cylinder)
875 unsigned int ml, mbar;
877 gtk_tree_model_get(model, iter, CYL_DESC, &desc, CYL_SIZE, &ml, CYL_WORKP, &mbar, -1);
878 add_cylinder(cylinder, desc, ml, mbar);
882 static void cylinder_activate_cb(GtkComboBox *combo_box, gpointer data)
884 struct cylinder_widget *cylinder = data;
885 cylinder_cb(cylinder->description, data);
888 /* Return a frame containing a hbox inside a hbox */
889 static GtkWidget *frame_box(const char *title, GtkWidget *vbox)
891 GtkWidget *hbox, *frame;
893 hbox = gtk_hbox_new(FALSE, 10);
894 gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, FALSE, 0);
896 frame = gtk_frame_new(title);
897 gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, FALSE, 0);
899 hbox = gtk_hbox_new(FALSE, 10);
900 gtk_container_add(GTK_CONTAINER(frame), hbox);
905 static GtkWidget *labeled_spinbutton(GtkWidget *box, const char *name, double min, double max, double incr)
907 GtkWidget *hbox, *label, *button;
909 hbox = gtk_hbox_new(FALSE, 0);
910 gtk_box_pack_start(GTK_BOX(box), hbox, TRUE, FALSE, 0);
912 label = gtk_label_new(name);
913 gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, FALSE, 0);
915 button = gtk_spin_button_new_with_range(min, max, incr);
916 gtk_box_pack_start(GTK_BOX(hbox), button, TRUE, FALSE, 0);
918 gtk_spin_button_set_update_policy(GTK_SPIN_BUTTON(button), GTK_UPDATE_IF_VALID);
923 static void cylinder_widget(GtkWidget *vbox, struct cylinder_widget *cylinder, GtkListStore *model)
925 GtkWidget *frame, *hbox;
927 GtkEntryCompletion *completion;
931 * Cylinder type: description, size and
934 frame = gtk_frame_new("Cylinder");
936 hbox = gtk_hbox_new(FALSE, 3);
937 gtk_container_add(GTK_CONTAINER(frame), hbox);
939 widget = gtk_combo_box_entry_new_with_model(GTK_TREE_MODEL(model), 0);
940 gtk_box_pack_start(GTK_BOX(hbox), widget, FALSE, TRUE, 0);
942 cylinder->description = GTK_COMBO_BOX(widget);
943 g_signal_connect(widget, "changed", G_CALLBACK(cylinder_cb), cylinder);
945 entry = GTK_ENTRY(GTK_BIN(widget)->child);
946 g_signal_connect(entry, "activate", G_CALLBACK(cylinder_activate_cb), cylinder);
948 completion = gtk_entry_completion_new();
949 gtk_entry_completion_set_text_column(completion, 0);
950 gtk_entry_completion_set_model(completion, GTK_TREE_MODEL(model));
951 g_signal_connect(completion, "match-selected", G_CALLBACK(completion_cb), cylinder);
952 gtk_entry_set_completion(entry, completion);
954 hbox = gtk_hbox_new(FALSE, 3);
955 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 0);
956 gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 0);
958 widget = create_spinbutton(hbox, "Size", 0, 300, 0.1);
959 cylinder->size = GTK_SPIN_BUTTON(widget);
961 widget = create_spinbutton(hbox, "Pressure", 0, 5000, 1);
962 cylinder->pressure = GTK_SPIN_BUTTON(widget);
965 * Cylinder start/end pressures
967 hbox = frame_box("Pressure", vbox);
969 widget = labeled_spinbutton(hbox, "Start", 0, 5000, 1);
970 cylinder->start = widget;
972 widget = labeled_spinbutton(hbox, "End", 0, 5000, 1);
973 cylinder->end = widget;
975 cylinder->pressure_button = gtk_check_button_new();
976 gtk_box_pack_start(GTK_BOX(hbox), cylinder->pressure_button, FALSE, FALSE, 3);
977 g_signal_connect(cylinder->pressure_button, "toggled", G_CALLBACK(pressure_cb), cylinder);
980 * Cylinder gas mix: Air, Nitrox or Trimix
982 hbox = frame_box("Gasmix", vbox);
984 widget = labeled_spinbutton(hbox, "O"UTF8_SUBSCRIPT_2 "%", 1, 100, 0.1);
985 cylinder->o2 = widget;
986 widget = labeled_spinbutton(hbox, "He%", 0, 100, 0.1);
987 cylinder->he = widget;
988 cylinder->gasmix_button = gtk_check_button_new();
989 gtk_box_pack_start(GTK_BOX(hbox), cylinder->gasmix_button, FALSE, FALSE, 3);
990 g_signal_connect(cylinder->gasmix_button, "toggled", G_CALLBACK(gasmix_cb), cylinder);
993 static gboolean weight_completion_cb(GtkEntryCompletion *widget, GtkTreeModel *model, GtkTreeIter *iter, struct ws_widget *ws_widget)
998 gtk_tree_model_get(model, iter, WS_DESC, &desc, WS_WEIGHT, &weight, -1);
999 add_weightsystem(ws_widget, desc, weight);
1003 static void weight_activate_cb(GtkComboBox *combo_box, gpointer data)
1005 struct ws_widget *ws_widget = data;
1006 weight_cb(ws_widget->description, data);
1009 static void ws_widget(GtkWidget *vbox, struct ws_widget *ws_widget, GtkListStore *model)
1011 GtkWidget *frame, *hbox;
1012 GtkEntryCompletion *completion;
1017 * weight_system: description and weight
1019 frame = gtk_frame_new("Weight");
1021 hbox = gtk_hbox_new(FALSE, 3);
1022 gtk_container_add(GTK_CONTAINER(frame), hbox);
1024 widget = gtk_combo_box_entry_new_with_model(GTK_TREE_MODEL(model), 0);
1025 gtk_box_pack_start(GTK_BOX(hbox), widget, FALSE, TRUE, 0);
1027 ws_widget->description = GTK_COMBO_BOX(widget);
1028 g_signal_connect(widget, "changed", G_CALLBACK(weight_cb), ws_widget);
1030 entry = GTK_ENTRY(GTK_BIN(widget)->child);
1031 g_signal_connect(entry, "activate", G_CALLBACK(weight_activate_cb), ws_widget);
1033 completion = gtk_entry_completion_new();
1034 gtk_entry_completion_set_text_column(completion, 0);
1035 gtk_entry_completion_set_model(completion, GTK_TREE_MODEL(model));
1036 g_signal_connect(completion, "match-selected", G_CALLBACK(weight_completion_cb), ws_widget);
1037 gtk_entry_set_completion(entry, completion);
1039 hbox = gtk_hbox_new(FALSE, 3);
1040 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, TRUE, 0);
1041 gtk_box_pack_start(GTK_BOX(hbox), frame, FALSE, TRUE, 0);
1043 if ( output_units.weight == KG)
1044 widget = create_spinbutton(hbox, "kg", 0, 50, 0.5);
1046 widget = create_spinbutton(hbox, "lbs", 0, 110, 1);
1047 ws_widget->weight = GTK_SPIN_BUTTON(widget);
1050 static int edit_cylinder_dialog(int index, cylinder_t *cyl)
1053 GtkWidget *dialog, *vbox;
1054 struct cylinder_widget cylinder;
1057 cylinder.index = index;
1058 cylinder.changed = 0;
1060 dive = current_dive;
1063 *cyl = dive->cylinder[index];
1065 dialog = gtk_dialog_new_with_buttons("Cylinder",
1066 GTK_WINDOW(main_window),
1067 GTK_DIALOG_DESTROY_WITH_PARENT,
1068 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1069 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1072 vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
1073 cylinder_widget(vbox, &cylinder, cylinder_model);
1075 show_cylinder(cyl, &cylinder);
1077 gtk_widget_show_all(dialog);
1078 success = gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT;
1080 record_cylinder_changes(cyl, &cylinder);
1081 dive->cylinder[index] = *cyl;
1082 mark_divelist_changed(TRUE);
1083 update_cylinder_related_info(dive);
1084 flush_divelist(dive);
1087 gtk_widget_destroy(dialog);
1092 static int edit_weightsystem_dialog(int index, weightsystem_t *ws)
1095 GtkWidget *dialog, *vbox;
1096 struct ws_widget weightsystem_widget;
1099 weightsystem_widget.index = index;
1100 weightsystem_widget.changed = 0;
1102 dive = current_dive;
1105 *ws = dive->weightsystem[index];
1107 dialog = gtk_dialog_new_with_buttons("Weight System",
1108 GTK_WINDOW(main_window),
1109 GTK_DIALOG_DESTROY_WITH_PARENT,
1110 GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
1111 GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
1114 vbox = gtk_dialog_get_content_area(GTK_DIALOG(dialog));
1115 ws_widget(vbox, &weightsystem_widget, weightsystem_model);
1117 show_weightsystem(ws, &weightsystem_widget);
1119 gtk_widget_show_all(dialog);
1120 success = gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT;
1122 record_weightsystem_changes(ws, &weightsystem_widget);
1123 dive->weightsystem[index] = *ws;
1124 mark_divelist_changed(TRUE);
1125 flush_divelist(dive);
1128 gtk_widget_destroy(dialog);
1133 static int get_model_index(GtkListStore *model, GtkTreeIter *iter)
1138 path = gtk_tree_model_get_path(GTK_TREE_MODEL(model), iter);
1139 p = gtk_tree_path_get_indices(path);
1141 gtk_tree_path_free(path);
1145 static void edit_cb(GtkButton *button, int w_idx)
1149 GtkListStore *model = cylinder_list[w_idx].model;
1150 GtkTreeView *tree_view = cylinder_list[w_idx].tree_view;
1151 GtkTreeSelection *selection;
1154 selection = gtk_tree_view_get_selection(tree_view);
1156 /* Nothing selected? This shouldn't happen, since the button should be inactive */
1157 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
1160 index = get_model_index(model, &iter);
1161 if (!edit_cylinder_dialog(index, &cyl))
1164 set_one_cylinder(&cyl, model, &iter);
1168 static void add_cb(GtkButton *button, int w_idx)
1170 int index = cylinder_list[w_idx].max_index;
1172 GtkListStore *model = cylinder_list[w_idx].model;
1173 GtkTreeView *tree_view = cylinder_list[w_idx].tree_view;
1174 GtkTreeSelection *selection;
1177 if (!edit_cylinder_dialog(index, &cyl))
1180 gtk_list_store_append(model, &iter);
1181 set_one_cylinder(&cyl, model, &iter);
1183 selection = gtk_tree_view_get_selection(tree_view);
1184 gtk_tree_selection_select_iter(selection, &iter);
1186 cylinder_list[w_idx].max_index++;
1187 gtk_widget_set_sensitive(cylinder_list[w_idx].add, cylinder_list[w_idx].max_index < MAX_CYLINDERS);
1190 static void del_cb(GtkButton *button, int w_idx)
1194 GtkListStore *model = cylinder_list[w_idx].model;
1195 GtkTreeView *tree_view = cylinder_list[w_idx].tree_view;
1196 GtkTreeSelection *selection;
1200 selection = gtk_tree_view_get_selection(tree_view);
1202 /* Nothing selected? This shouldn't happen, since the button should be inactive */
1203 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
1206 index = get_model_index(model, &iter);
1208 dive = current_dive;
1211 cyl = dive->cylinder + index;
1212 nr = cylinder_list[w_idx].max_index - index - 1;
1214 gtk_list_store_remove(model, &iter);
1216 cylinder_list[w_idx].max_index--;
1217 memmove(cyl, cyl+1, nr*sizeof(*cyl));
1218 memset(cyl+nr, 0, sizeof(*cyl));
1220 mark_divelist_changed(TRUE);
1221 flush_divelist(dive);
1223 gtk_widget_set_sensitive(cylinder_list[w_idx].edit, 0);
1224 gtk_widget_set_sensitive(cylinder_list[w_idx].del, 0);
1225 gtk_widget_set_sensitive(cylinder_list[w_idx].add, 1);
1228 static void ws_edit_cb(GtkButton *button, int w_idx)
1232 GtkListStore *model = weightsystem_list[w_idx].model;
1233 GtkTreeView *tree_view = weightsystem_list[w_idx].tree_view;
1234 GtkTreeSelection *selection;
1237 selection = gtk_tree_view_get_selection(tree_view);
1239 /* Nothing selected? This shouldn't happen, since the button should be inactive */
1240 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
1243 index = get_model_index(model, &iter);
1244 if (!edit_weightsystem_dialog(index, &ws))
1247 set_one_weightsystem(&ws, model, &iter);
1251 static void ws_add_cb(GtkButton *button, int w_idx)
1253 int index = weightsystem_list[w_idx].max_index;
1255 GtkListStore *model = weightsystem_list[w_idx].model;
1256 GtkTreeView *tree_view = weightsystem_list[w_idx].tree_view;
1257 GtkTreeSelection *selection;
1260 if (!edit_weightsystem_dialog(index, &ws))
1263 gtk_list_store_append(model, &iter);
1264 set_one_weightsystem(&ws, model, &iter);
1266 selection = gtk_tree_view_get_selection(tree_view);
1267 gtk_tree_selection_select_iter(selection, &iter);
1269 weightsystem_list[w_idx].max_index++;
1270 gtk_widget_set_sensitive(weightsystem_list[w_idx].add, weightsystem_list[w_idx].max_index < MAX_WEIGHTSYSTEMS);
1273 static void ws_del_cb(GtkButton *button, int w_idx)
1277 GtkListStore *model = weightsystem_list[w_idx].model;
1278 GtkTreeView *tree_view = weightsystem_list[w_idx].tree_view;
1279 GtkTreeSelection *selection;
1283 selection = gtk_tree_view_get_selection(tree_view);
1285 /* Nothing selected? This shouldn't happen, since the button should be inactive */
1286 if (!gtk_tree_selection_get_selected(selection, NULL, &iter))
1289 index = get_model_index(model, &iter);
1291 dive = current_dive;
1294 ws = dive->weightsystem + index;
1295 nr = weightsystem_list[w_idx].max_index - index - 1;
1297 gtk_list_store_remove(model, &iter);
1299 weightsystem_list[w_idx].max_index--;
1300 memmove(ws, ws+1, nr*sizeof(*ws));
1301 memset(ws+nr, 0, sizeof(*ws));
1303 mark_divelist_changed(TRUE);
1304 flush_divelist(dive);
1306 gtk_widget_set_sensitive(weightsystem_list[w_idx].edit, 0);
1307 gtk_widget_set_sensitive(weightsystem_list[w_idx].del, 0);
1308 gtk_widget_set_sensitive(weightsystem_list[w_idx].add, 1);
1311 static GtkListStore *create_tank_size_model(void)
1313 GtkListStore *model;
1315 model = gtk_list_store_new(3,
1316 G_TYPE_STRING, /* Tank name */
1317 G_TYPE_INT, /* Tank size in mliter */
1318 G_TYPE_INT, /* Tank working pressure in mbar */
1321 fill_tank_list(model);
1325 static GtkListStore *create_weightsystem_model(void)
1327 GtkListStore *model;
1329 model = gtk_list_store_new(2,
1330 G_TYPE_STRING, /* Weightsystem description */
1331 G_TYPE_INT, /* Weight in grams */
1334 fill_ws_list(model);
1338 static void size_data_func(GtkTreeViewColumn *col,
1339 GtkCellRenderer *renderer,
1340 GtkTreeModel *model,
1345 double size, pressure;
1348 gtk_tree_model_get(model, iter, CYL_SIZE, &ml, CYL_WORKP, &mbar, -1);
1349 convert_volume_pressure(ml, mbar, &size, &pressure);
1351 snprintf(buffer, sizeof(buffer), "%.1f", size);
1353 strcpy(buffer, "unkn");
1354 g_object_set(renderer, "text", buffer, NULL);
1357 static void weight_data_func(GtkTreeViewColumn *col,
1358 GtkCellRenderer *renderer,
1359 GtkTreeModel *model,
1363 int idx = (long)data;
1364 int grams, decimals;
1368 gtk_tree_model_get(model, iter, idx, &grams, -1);
1369 decimals = convert_weight(grams, &value);
1371 snprintf(buffer, sizeof(buffer), "%.*f", decimals, value);
1373 strcpy(buffer, "unkn");
1374 g_object_set(renderer, "text", buffer, NULL);
1377 static void pressure_data_func(GtkTreeViewColumn *col,
1378 GtkCellRenderer *renderer,
1379 GtkTreeModel *model,
1383 int index = (long)data;
1388 gtk_tree_model_get(model, iter, index, &mbar, -1);
1389 decimals = convert_pressure(mbar, &pressure);
1391 snprintf(buffer, sizeof(buffer), "%.*f", decimals, pressure);
1394 g_object_set(renderer, "text", buffer, NULL);
1397 static void percentage_data_func(GtkTreeViewColumn *col,
1398 GtkCellRenderer *renderer,
1399 GtkTreeModel *model,
1403 int index = (long)data;
1407 gtk_tree_model_get(model, iter, index, &permille, -1);
1409 snprintf(buffer, sizeof(buffer), "%.1f%%", permille / 10.0);
1412 g_object_set(renderer, "text", buffer, NULL);
1415 static void selection_cb(GtkTreeSelection *selection, struct equipment_list *list)
1420 selected = gtk_tree_selection_get_selected(selection, NULL, &iter);
1421 gtk_widget_set_sensitive(list->edit, selected);
1422 gtk_widget_set_sensitive(list->del, selected);
1425 static void row_activated_cb(GtkTreeView *tree_view,
1427 GtkTreeViewColumn *column,
1430 edit_cb(NULL, w_idx);
1433 static void ws_row_activated_cb(GtkTreeView *tree_view,
1435 GtkTreeViewColumn *column,
1438 ws_edit_cb(NULL, w_idx);
1441 GtkWidget *cylinder_list_widget(int w_idx)
1443 GtkListStore *model = cylinder_list[w_idx].model;
1444 GtkWidget *tree_view;
1445 GtkTreeSelection *selection;
1447 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
1448 gtk_widget_set_can_focus(tree_view, FALSE);
1450 g_signal_connect(tree_view, "row-activated", G_CALLBACK(row_activated_cb), GINT_TO_POINTER(w_idx));
1452 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
1453 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
1454 g_signal_connect(selection, "changed", G_CALLBACK(selection_cb), &cylinder_list[w_idx]);
1456 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE,
1457 "enable-grid-lines", GTK_TREE_VIEW_GRID_LINES_BOTH,
1460 tree_view_column(tree_view, CYL_DESC, "Type", NULL, ALIGN_LEFT | UNSORTABLE);
1461 tree_view_column(tree_view, CYL_SIZE, "Size", size_data_func, ALIGN_RIGHT | UNSORTABLE);
1462 tree_view_column(tree_view, CYL_WORKP, "MaxPress", pressure_data_func, ALIGN_RIGHT | UNSORTABLE);
1463 tree_view_column(tree_view, CYL_STARTP, "Start", pressure_data_func, ALIGN_RIGHT | UNSORTABLE);
1464 tree_view_column(tree_view, CYL_ENDP, "End", pressure_data_func, ALIGN_RIGHT | UNSORTABLE);
1465 tree_view_column(tree_view, CYL_O2, "O" UTF8_SUBSCRIPT_2 "%", percentage_data_func, ALIGN_RIGHT | UNSORTABLE);
1466 tree_view_column(tree_view, CYL_HE, "He%", percentage_data_func, ALIGN_RIGHT | UNSORTABLE);
1470 GtkWidget *weightsystem_list_widget(int w_idx)
1472 GtkListStore *model = weightsystem_list[w_idx].model;
1473 GtkWidget *tree_view;
1474 GtkTreeSelection *selection;
1476 tree_view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(model));
1477 gtk_widget_set_can_focus(tree_view, FALSE);
1478 g_signal_connect(tree_view, "row-activated", G_CALLBACK(ws_row_activated_cb), GINT_TO_POINTER(w_idx));
1480 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view));
1481 gtk_tree_selection_set_mode(GTK_TREE_SELECTION(selection), GTK_SELECTION_BROWSE);
1482 g_signal_connect(selection, "changed", G_CALLBACK(selection_cb), &weightsystem_list[w_idx]);
1484 g_object_set(G_OBJECT(tree_view), "headers-visible", TRUE,
1485 "enable-grid-lines", GTK_TREE_VIEW_GRID_LINES_BOTH,
1488 tree_view_column(tree_view, WS_DESC, "Type", NULL, ALIGN_LEFT | UNSORTABLE);
1489 tree_view_column(tree_view, WS_WEIGHT, "weight",
1490 weight_data_func, ALIGN_RIGHT | UNSORTABLE);
1495 static GtkWidget *cylinder_list_create(int w_idx)
1497 GtkListStore *model;
1499 model = gtk_list_store_new(CYL_COLUMNS,
1500 G_TYPE_STRING, /* CYL_DESC: utf8 */
1501 G_TYPE_INT, /* CYL_SIZE: mliter */
1502 G_TYPE_INT, /* CYL_WORKP: mbar */
1503 G_TYPE_INT, /* CYL_STARTP: mbar */
1504 G_TYPE_INT, /* CYL_ENDP: mbar */
1505 G_TYPE_INT, /* CYL_O2: permille */
1506 G_TYPE_INT /* CYL_HE: permille */
1508 cylinder_list[w_idx].model = model;
1509 return cylinder_list_widget(w_idx);
1512 static GtkWidget *weightsystem_list_create(int w_idx)
1514 GtkListStore *model;
1516 model = gtk_list_store_new(WS_COLUMNS,
1517 G_TYPE_STRING, /* WS_DESC: utf8 */
1518 G_TYPE_INT /* WS_WEIGHT: grams */
1520 weightsystem_list[w_idx].model = model;
1521 return weightsystem_list_widget(w_idx);
1524 GtkWidget *equipment_widget(int w_idx)
1526 GtkWidget *vbox, *hbox, *frame, *framebox, *tree_view;
1527 GtkWidget *add, *del, *edit;
1529 vbox = gtk_vbox_new(FALSE, 3);
1532 * We create the cylinder size (and weightsystem) models
1533 * at startup for the primary cylinder / weightsystem widget,
1534 * since we're going to share it across all cylinders and all
1535 * dives. So if you add a new cylinder type or weightsystem in
1536 * one dive, it will show up when you edit the cylinder types
1537 * or weightsystems for another dive.
1539 if (w_idx == W_IDX_PRIMARY)
1540 cylinder_model = create_tank_size_model();
1541 tree_view = cylinder_list_create(w_idx);
1542 cylinder_list[w_idx].tree_view = GTK_TREE_VIEW(tree_view);
1544 hbox = gtk_hbox_new(FALSE, 3);
1545 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
1547 frame = gtk_frame_new("Cylinders");
1548 gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, FALSE, 3);
1550 framebox = gtk_vbox_new(FALSE, 3);
1551 gtk_container_add(GTK_CONTAINER(frame), framebox);
1553 hbox = gtk_hbox_new(FALSE, 3);
1554 gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
1556 gtk_box_pack_start(GTK_BOX(hbox), tree_view, TRUE, FALSE, 3);
1558 hbox = gtk_hbox_new(TRUE, 3);
1559 gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
1561 edit = gtk_button_new_from_stock(GTK_STOCK_EDIT);
1562 add = gtk_button_new_from_stock(GTK_STOCK_ADD);
1563 del = gtk_button_new_from_stock(GTK_STOCK_DELETE);
1564 gtk_box_pack_start(GTK_BOX(hbox), edit, FALSE, FALSE, 0);
1565 gtk_box_pack_start(GTK_BOX(hbox), add, FALSE, FALSE, 0);
1566 gtk_box_pack_start(GTK_BOX(hbox), del, FALSE, FALSE, 0);
1568 cylinder_list[w_idx].edit = edit;
1569 cylinder_list[w_idx].add = add;
1570 cylinder_list[w_idx].del = del;
1572 g_signal_connect(edit, "clicked", G_CALLBACK(edit_cb), GINT_TO_POINTER(w_idx));
1573 g_signal_connect(add, "clicked", G_CALLBACK(add_cb), GINT_TO_POINTER(w_idx));
1574 g_signal_connect(del, "clicked", G_CALLBACK(del_cb), GINT_TO_POINTER(w_idx));
1576 hbox = gtk_hbox_new(FALSE, 3);
1577 gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
1579 if (w_idx == W_IDX_PRIMARY)
1580 weightsystem_model = create_weightsystem_model();
1581 tree_view = weightsystem_list_create(w_idx);
1582 weightsystem_list[w_idx].tree_view = GTK_TREE_VIEW(tree_view);
1584 frame = gtk_frame_new("Weight");
1585 gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, FALSE, 3);
1587 framebox = gtk_vbox_new(FALSE, 3);
1588 gtk_container_add(GTK_CONTAINER(frame), framebox);
1590 hbox = gtk_hbox_new(FALSE, 3);
1591 gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
1593 gtk_box_pack_start(GTK_BOX(hbox), tree_view, TRUE, FALSE, 3);
1595 hbox = gtk_hbox_new(TRUE, 3);
1596 gtk_box_pack_start(GTK_BOX(framebox), hbox, TRUE, FALSE, 3);
1598 edit = gtk_button_new_from_stock(GTK_STOCK_EDIT);
1599 add = gtk_button_new_from_stock(GTK_STOCK_ADD);
1600 del = gtk_button_new_from_stock(GTK_STOCK_DELETE);
1601 gtk_box_pack_start(GTK_BOX(hbox), edit, FALSE, FALSE, 0);
1602 gtk_box_pack_start(GTK_BOX(hbox), add, FALSE, FALSE, 0);
1603 gtk_box_pack_start(GTK_BOX(hbox), del, FALSE, FALSE, 0);
1605 weightsystem_list[w_idx].edit = edit;
1606 weightsystem_list[w_idx].add = add;
1607 weightsystem_list[w_idx].del = del;
1609 g_signal_connect(edit, "clicked", G_CALLBACK(ws_edit_cb), GINT_TO_POINTER(w_idx));
1610 g_signal_connect(add, "clicked", G_CALLBACK(ws_add_cb), GINT_TO_POINTER(w_idx));
1611 g_signal_connect(del, "clicked", G_CALLBACK(ws_del_cb), GINT_TO_POINTER(w_idx));