1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
|
/* DataEditor.cpp
*
* Copyright (C) 1995-2012 Paul Boersma
*
* This program 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 2 of the License, or (at
* your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#define NAME_X 30
#define TEXT_X 250
#define BUTTON_X 250
#define LIST_Y (2 * Gui_TOP_DIALOG_SPACING + Gui_PUSHBUTTON_HEIGHT)
#define EDITOR_WIDTH 820
#define EDITOR_HEIGHT (LIST_Y + kDataSubEditor_MAXNUM_ROWS * ROW_HEIGHT + 29 + Machine_getMenuBarHeight ())
#define ROW_HEIGHT 31
#define SCROLL_BAR_WIDTH Machine_getScrollBarWidth ()
#include "DataEditor.h"
#include "EditorM.h"
#include "Collection.h"
#include "machine.h"
static Data_Description Class_getDescription (ClassInfo table) {
return ((Data) _Thing_dummyObject (table)) -> v_description ();
}
/*static const char * typeStrings [] = { "none",
"byte", "int", "long", "ubyte", "ushort", "uint", "ulong", "bool",
"float", "double", "fcomplex", "dcomplex",
"enum", "lenum", "boolean", "question", "stringw", "lstringw",
"struct", "widget", "object", "collection" };*/
static int stringLengths [] = { 0,
4, 6, 11, 3, 5, 10, 1,
15, 27, 35, 59,
33, 33, 8, 6, 60, 60 };
static VectorEditor VectorEditor_create (DataEditor root, const wchar *title, void *address,
Data_Description description, long minimum, long maximum);
static MatrixEditor MatrixEditor_create (DataEditor root, const wchar *title, void *address,
Data_Description description, long min1, long max1, long min2, long max2);
static StructEditor StructEditor_create (DataEditor root, const wchar *title, void *address, Data_Description description);
static ClassEditor ClassEditor_create (DataEditor root, const wchar *title, void *address, Data_Description description);
static inline const wchar * strip_d (const wchar *s) {
return s && s [0] == 'd' && s [1] == '_' ? & s [2] : & s [0];
}
/********** DataSubEditor **********/
Thing_implement (DataSubEditor, Editor, 0);
void structDataSubEditor :: v_destroy () {
for (int i = 1; i <= kDataSubEditor_MAXNUM_ROWS; i ++)
Melder_free (d_fieldData [i]. history);
if (d_root && d_root -> d_children)
for (int i = d_root -> d_children -> size; i > 0; i --)
if (d_root -> d_children -> item [i] == this)
Collection_subtractItem (d_root -> d_children, i);
DataSubEditor_Parent :: v_destroy ();
}
static void update (DataSubEditor me) {
/* Hide all the existing widgets. */
for (int i = 1; i <= kDataSubEditor_MAXNUM_ROWS; i ++) {
my d_fieldData [i]. address = NULL;
my d_fieldData [i]. description = NULL;
GuiObject_hide (my d_fieldData [i]. label);
GuiObject_hide (my d_fieldData [i]. button);
GuiObject_hide (my d_fieldData [i]. text);
}
my d_irow = 0;
my v_showMembers ();
}
static Data_Description DataSubEditor_findNumberUse (DataSubEditor me, const wchar_t *number) {
Data_Description structDescription, result;
wchar_t string [100];
if (my classInfo == classMatrixEditor) return NULL; // no structs inside
if (my classInfo == classVectorEditor) {
if (my d_description -> type != structwa) return NULL; // no structs inside
structDescription = * (Data_Description *) my d_description -> tagType;
} else { /* StructEditor or ClassEditor or DataEditor. */
structDescription = my d_description;
}
swprintf (string, 100, L"%ls", number);
if ((result = Data_Description_findNumberUse (structDescription, string)) != NULL) return result;
swprintf (string, 100, L"%ls - 1", number);
if ((result = Data_Description_findNumberUse (structDescription, string)) != NULL) return result;
return NULL;
}
static void gui_button_cb_change (I, GuiButtonEvent event) {
(void) event;
iam (DataSubEditor);
int i = 1;
for (; i <= kDataSubEditor_MAXNUM_ROWS; i ++) {
#if motif
bool visible = XtIsManaged (my d_fieldData [i]. text);
#elif gtk
gboolean visible;
g_object_get (G_OBJECT (my d_fieldData [i]. text), "visible", & visible, NULL);
#elif ! useCarbon
bool visible = false; // TODO
#endif
if (visible) {
int type = my d_fieldData [i]. description -> type;
wchar_t *text;
if (type > maxsingletypewa) continue;
text = GuiText_getString (my d_fieldData [i]. text);
switch (type) {
case bytewa: {
signed char oldValue = * (signed char *) my d_fieldData [i]. address, newValue = wcstol (text, NULL, 10);
if (newValue != oldValue) {
Data_Description numberUse = DataSubEditor_findNumberUse (me, my d_fieldData [i]. description -> name);
if (numberUse) {
Melder_error_ ("Changing field \"", strip_d (my d_fieldData [i]. description -> name),
"\" would damage the array \"", strip_d (numberUse -> name), "\".");
Melder_flushError (NULL);
} else {
* (signed char *) my d_fieldData [i]. address = newValue;
}
}
} break;
case intwa: {
int oldValue = * (int *) my d_fieldData [i]. address, newValue = wcstol (text, NULL, 10);
if (newValue != oldValue) {
Data_Description numberUse = DataSubEditor_findNumberUse (me, my d_fieldData [i]. description -> name);
if (numberUse) {
Melder_error_ ("Changing field \"", strip_d (my d_fieldData [i]. description -> name),
"\" would damage the array \"", strip_d (numberUse -> name), "\".");
Melder_flushError (NULL);
} else {
* (int *) my d_fieldData [i]. address = newValue;
}
}
} break;
case longwa: {
long oldValue = * (long *) my d_fieldData [i]. address, newValue = wcstol (text, NULL, 10);
if (newValue != oldValue) {
Data_Description numberUse = DataSubEditor_findNumberUse (me, my d_fieldData [i]. description -> name);
if (numberUse) {
Melder_error_ ("Changing field \"", strip_d (my d_fieldData [i]. description -> name),
"\" would damage the array \"", strip_d (numberUse -> name), "\".");
Melder_flushError (NULL);
} else {
* (long *) my d_fieldData [i]. address = newValue;
}
}
} break;
case ubytewa: { * (unsigned char *) my d_fieldData [i]. address = wcstoul (text, NULL, 10); } break;
case uintwa: { * (unsigned int *) my d_fieldData [i]. address = wcstoul (text, NULL, 10); } break;
case ulongwa: { * (unsigned long *) my d_fieldData [i]. address = wcstoul (text, NULL, 10); } break;
case boolwa: { * (bool *) my d_fieldData [i]. address = wcstol (text, NULL, 10); } break;
case floatwa: { * (double *) my d_fieldData [i]. address = Melder_atof (text); } break;
case doublewa: { * (double *) my d_fieldData [i]. address = Melder_atof (text); } break;
case fcomplexwa: { fcomplex *x = (fcomplex *) my d_fieldData [i]. address;
swscanf (text, L"%f + %f i", & x -> re, & x -> im); } break;
case dcomplexwa: { dcomplex *x = (dcomplex *) my d_fieldData [i]. address;
swscanf (text, L"%lf + %lf i", & x -> re, & x -> im); } break;
case enumwa: {
if (wcslen (text) < 3) goto error;
text [wcslen (text) - 1] = '\0'; // remove trailing ">"
int value = ((int (*) (const wchar_t *)) (my d_fieldData [i]. description -> tagType)) (text + 1); // skip leading "<"
if (value < 0) goto error;
* (signed char *) my d_fieldData [i]. address = value;
} break;
case lenumwa: {
if (wcslen (text) < 3) goto error;
text [wcslen (text) - 1] = '\0'; // remove trailing ">"
int value = ((int (*) (const wchar_t *)) (my d_fieldData [i]. description -> tagType)) (text + 1); // skip leading "<"
if (value < 0) goto error;
* (signed short *) my d_fieldData [i]. address = value;
} break;
case booleanwa: {
int value = wcsnequ (text, L"<true>", 6) ? 1 : wcsnequ (text, L"<false>", 7) ? 0 : -1;
if (value < 0) goto error;
* (signed char *) my d_fieldData [i]. address = value;
} break;
case questionwa: {
int value = wcsnequ (text, L"<yes>", 5) ? 1 : wcsnequ (text, L"<no>", 4) ? 0 : -1;
if (value < 0) goto error;
* (signed char *) my d_fieldData [i]. address = value;
} break;
case stringwa:
case lstringwa: {
wchar *old = * (wchar_t **) my d_fieldData [i]. address;
Melder_free (old);
* (wchar **) my d_fieldData [i]. address = Melder_wcsdup_f (text);
} break;
default: break;
}
Melder_free (text);
}
}
/* Several collaborators have to be notified of this change:
* 1. The owner (creator) of our root DataEditor: so that she can notify other editors, if any.
* 2. All our sibling DataSubEditors.
*/
my d_root -> broadcastDataChanged ();
update (me);
for (int i = 1; i <= my d_root -> d_children -> size; i ++) {
DataSubEditor subeditor = (DataSubEditor) my d_root -> d_children -> item [i];
if (subeditor != me) update (subeditor);
}
return;
error:
Melder_error_ ("Edit field \"", strip_d (my d_fieldData [i]. description -> name), "\" or click \"Cancel\".");
Melder_flushError (NULL);
}
static void gui_button_cb_cancel (I, GuiButtonEvent event) {
(void) event;
iam (DataSubEditor);
update (me);
}
static void gui_cb_scroll (GUI_ARGS) {
GUI_IAM (DataSubEditor);
int value, slider, incr, pincr;
#if motif
XmScrollBarGetValues (w, & value, & slider, & incr, & pincr);
#endif
my d_topField = value + 1;
update (me);
}
static void gui_button_cb_open (I, GuiButtonEvent event) {
iam (DataSubEditor);
int ifield = 0;
static MelderString name = { 0 };
MelderString_empty (& name);
/* Identify the pressed button; it must be one of those created in the list. */
for (int i = 1; i <= kDataSubEditor_MAXNUM_ROWS; i ++) if (my d_fieldData [i]. button == event -> button) { ifield = i; break; }
Melder_assert (ifield != 0);
/* Launch the appropriate subeditor. */
DataSubEditor_FieldData fieldData = & my d_fieldData [ifield];
if (! fieldData -> description) {
Melder_casual ("Not yet implemented.");
return; /* Not yet implemented. */
}
if (fieldData -> description -> rank == 1 || fieldData -> description -> rank == 3 || fieldData -> description -> rank < 0) {
MelderString_append (& name, fieldData -> history, L". ", strip_d (fieldData -> description -> name),
L" [", Melder_integer (fieldData -> minimum), L"..", Melder_integer (fieldData -> maximum), L"]");
VectorEditor_create (my d_root, name.string, fieldData -> address,
fieldData -> description, fieldData -> minimum, fieldData -> maximum);
} else if (fieldData -> description -> rank == 2) {
MelderString_append (& name, fieldData -> history, L". ", strip_d (fieldData -> description -> name),
L" [", Melder_integer (fieldData -> minimum), L"..", Melder_integer (fieldData -> maximum), L"]");
MelderString_append (& name, L" [", Melder_integer (fieldData -> min2), L"..", Melder_integer (fieldData -> max2), L"]");
MatrixEditor_create (my d_root, name.string, fieldData -> address, fieldData -> description,
fieldData -> minimum, fieldData -> maximum, fieldData -> min2, fieldData -> max2);
} else if (fieldData -> description -> type == structwa) {
MelderString_append (& name, fieldData -> history, L". ", strip_d (fieldData -> description -> name));
StructEditor_create (my d_root, name.string, fieldData -> address,
* (Data_Description *) fieldData -> description -> tagType);
} else if (fieldData -> description -> type == objectwa || fieldData -> description -> type == collectionwa) {
MelderString_append (& name, fieldData -> history, L". ", strip_d (fieldData -> description -> name));
ClassEditor_create (my d_root, name.string, fieldData -> address,
Class_getDescription ((ClassInfo) fieldData -> description -> tagType));
} else /*if (fieldData -> description -> type == inheritwa)*/ {
ClassEditor_create (my d_root, fieldData -> history, fieldData -> address,
fieldData -> description);
/* } else {
Melder_casual ("Strange editor \"%s\" required (type %d, rank %d).",
strip_d (fieldData -> description -> name),
fieldData -> description -> type,
fieldData -> description -> rank);*/
}
}
void structDataSubEditor :: v_createChildren () {
int x = Gui_LEFT_DIALOG_SPACING, y = Gui_TOP_DIALOG_SPACING + Machine_getMenuBarHeight (), buttonWidth = 120;
#if motif
GuiButton_createShown (d_windowForm, x, x + buttonWidth, y, Gui_AUTOMATIC,
L"Change", gui_button_cb_change, this, 0);
x += buttonWidth + Gui_HORIZONTAL_DIALOG_SPACING;
GuiButton_createShown (d_windowForm, x, x + buttonWidth, y, Gui_AUTOMATIC,
L"Cancel", gui_button_cb_cancel, this, 0);
GuiObject scrolledWindow = XmCreateScrolledWindow (d_windowForm, "list", NULL, 0);
XtVaSetValues (scrolledWindow,
XmNrightAttachment, XmATTACH_FORM,
XmNtopAttachment, XmATTACH_FORM, XmNtopOffset, LIST_Y + Machine_getMenuBarHeight (),
XmNbottomAttachment, XmATTACH_FORM,
XmNleftAttachment, XmATTACH_FORM, NULL);
d_scrollBar = XtVaCreateManagedWidget ("verticalScrollBar",
xmScrollBarWidgetClass, scrolledWindow,
XmNheight, SCROLL_BAR_WIDTH,
XmNminimum, 0,
XmNmaximum, d_numberOfFields,
XmNvalue, 0,
XmNsliderSize, d_numberOfFields < kDataSubEditor_MAXNUM_ROWS ? d_numberOfFields : kDataSubEditor_MAXNUM_ROWS,
XmNincrement, 1, XmNpageIncrement, kDataSubEditor_MAXNUM_ROWS - 1,
NULL);
XtVaSetValues (scrolledWindow, XmNverticalScrollBar, d_scrollBar, NULL);
GuiObject_show (scrolledWindow);
XtAddCallback (d_scrollBar, XmNvalueChangedCallback, gui_cb_scroll, (XtPointer) this);
XtAddCallback (d_scrollBar, XmNdragCallback, gui_cb_scroll, (XtPointer) this);
GuiObject form = XmCreateForm (scrolledWindow, "list", NULL, 0);
#elif gtk
GuiObject outerBox = gtk_vbox_new (0, 0);
GuiObject buttonBox = gtk_hbutton_box_new ();
gtk_button_box_set_layout (GTK_BUTTON_BOX (buttonBox), GTK_BUTTONBOX_START);
gtk_box_pack_start (GTK_BOX (outerBox), GTK_WIDGET (buttonBox), 0, 0, 3);
GuiButton_createShown (buttonBox, x, x + buttonWidth, y, Gui_AUTOMATIC,
L"Change", gui_button_cb_change, this, 0);
x += buttonWidth + Gui_HORIZONTAL_DIALOG_SPACING;
GuiButton_createShown (buttonBox, x, x + buttonWidth, y, Gui_AUTOMATIC,
L"Cancel", gui_button_cb_cancel, this, 0);
GuiObject scrolledWindow = gtk_scrolled_window_new (NULL, NULL);
GuiObject form = gtk_vbox_new (0, 3);
gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrolledWindow), GTK_WIDGET (form));
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledWindow), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
gtk_box_pack_start (GTK_BOX (outerBox), GTK_WIDGET (scrolledWindow), 1, 1, 3);
gtk_container_add (GTK_CONTAINER (d_windowForm), GTK_WIDGET (outerBox));
GuiObject_show (outerBox);
GuiObject_show (buttonBox);
GuiObject_show (scrolledWindow);
#elif ! useCarbon
GuiObject form = NULL; // TODO
#endif
for (int i = 1; i <= kDataSubEditor_MAXNUM_ROWS; i ++) {
y = Gui_TOP_DIALOG_SPACING + (i - 1) * ROW_HEIGHT;
d_fieldData [i]. label = GuiLabel_create (form, 0, 200, y, Gui_AUTOMATIC, L"label", 0); // no fixed x value: sometimes indent
d_fieldData [i]. button = GuiButton_create (form, BUTTON_X, BUTTON_X + buttonWidth, y, Gui_AUTOMATIC,
L"Open", gui_button_cb_open, this, 0);
d_fieldData [i]. text = GuiText_create (form, TEXT_X, 0, y, Gui_AUTOMATIC, 0);
}
GuiObject_show (form);
}
static void menu_cb_help (EDITOR_ARGS) { EDITOR_IAM (DataSubEditor); Melder_help (L"Inspect"); }
void structDataSubEditor :: v_createHelpMenuItems (EditorMenu menu) {
DataSubEditor_Parent :: v_createHelpMenuItems (menu);
EditorMenu_addCommand (menu, L"DataEditor help", '?', menu_cb_help);
}
static void DataSubEditor_init (DataSubEditor me, DataEditor root, const wchar_t *title, void *address, Data_Description description) {
my d_root = root;
if (me != root) {
Collection_addItem (root -> d_children, me);
}
my d_address = address;
my d_description = description;
my d_topField = 1;
my d_numberOfFields = my v_countFields ();
Editor_init (me, root -> d_windowParent, 0, 0, EDITOR_WIDTH, EDITOR_HEIGHT, title, NULL); therror
update (me);
}
/********** StructEditor **********/
Thing_implement (StructEditor, DataSubEditor, 0);
long structStructEditor :: v_countFields () {
return Data_Description_countMembers (d_description);
}
static const wchar * singleTypeToText (void *address, int type, void *tagType, MelderString *buffer) {
switch (type) {
case bytewa: MelderString_append (buffer, Melder_integer (* (signed char *) address)); break;
case intwa: MelderString_append (buffer, Melder_integer (* (int *) address)); break;
case longwa: MelderString_append (buffer, Melder_integer (* (long *) address)); break;
case ubytewa: MelderString_append (buffer, Melder_integer (* (unsigned char *) address)); break;
case uintwa: MelderString_append (buffer, Melder_integer (* (unsigned int *) address)); break;
case ulongwa: MelderString_append (buffer, Melder_integer (* (unsigned long *) address)); break;
case boolwa: MelderString_append (buffer, Melder_integer (* (bool *) address)); break;
case floatwa: MelderString_append (buffer, Melder_single (* (double *) address)); break;
case doublewa: MelderString_append (buffer, Melder_double (* (double *) address)); break;
case fcomplexwa: { fcomplex value = * (fcomplex *) address;
MelderString_append (buffer, Melder_single (value. re), L" + ", Melder_single (value. im), L" i"); } break;
case dcomplexwa: { dcomplex value = * (dcomplex *) address;
MelderString_append (buffer, Melder_double (value. re), L" + ", Melder_double (value. im), L" i"); } break;
case enumwa: MelderString_append (buffer, L"<", ((const wchar_t * (*) (int)) tagType) (* (signed char *) address), L">"); break;
case lenumwa: MelderString_append (buffer, L"<", ((const wchar_t * (*) (int)) tagType) (* (signed short *) address), L">"); break;
case booleanwa: MelderString_append (buffer, * (signed char *) address ? L"<true>" : L"<false>"); break;
case questionwa: MelderString_append (buffer, * (signed char *) address ? L"<yes>" : L"<no>" ); break;
case stringwa:
case lstringwa: {
wchar_t *string = * (wchar_t **) address;
if (string == NULL) { MelderString_empty (buffer); return buffer -> string; } // convert NULL string to empty string
return string; // may be much longer than the usual size of 'buffer'
} break;
default: return L"(unknown)";
}
return buffer -> string; // Mind the special return for strings above.
}
static void showStructMember (
void *structAddress, /* The address of (the first member of) the struct. */
Data_Description structDescription, /* The description of (the first member of) the struct. */
Data_Description memberDescription, /* The description of the current member. */
DataSubEditor_FieldData fieldData, /* The widgets in which to show the info about the current member. */
wchar *history)
{
int type = memberDescription -> type, rank = memberDescription -> rank, isSingleType = type <= maxsingletypewa && rank == 0;
unsigned char *memberAddress = (unsigned char *) structAddress + memberDescription -> offset;
static MelderString buffer = { 0 };
MelderString_empty (& buffer);
if (type == inheritwa) {
MelderString_append (& buffer, L"Class part \"", memberDescription -> name, L"\":");
} else {
MelderString_append (& buffer, strip_d (memberDescription -> name),
rank == 0 ? L"" : rank == 1 || rank == 3 || rank < 0 ? L" [ ]" : L" [ ] [ ]");
}
GuiLabel_setString (fieldData -> label, buffer.string);
GuiObject_move (fieldData -> label, type == inheritwa ? 0 : NAME_X, Gui_AUTOMATIC);
GuiObject_show (fieldData -> label);
/* Show the value (for a single type) or a button (for a composite type). */
if (isSingleType) {
#if motif
XtVaSetValues (fieldData -> text, XmNcolumns, stringLengths [type], NULL); // TODO: change to GuiObject_size
#endif
MelderString_empty (& buffer);
const wchar_t *text = singleTypeToText (memberAddress, type, memberDescription -> tagType, & buffer);
GuiText_setString (fieldData -> text, text);
GuiObject_show (fieldData -> text);
fieldData -> address = memberAddress;
fieldData -> description = memberDescription;
fieldData -> rank = 0;
} else if (rank == 1) {
void *arrayAddress = * (void **) memberAddress;
long minimum, maximum;
if (arrayAddress == NULL) return; /* No button for empty fields. */
Data_Description_evaluateInteger (structAddress, structDescription,
memberDescription -> min1, & minimum);
Data_Description_evaluateInteger (structAddress, structDescription,
memberDescription -> max1, & maximum);
if (maximum < minimum) return; /* No button if no elements. */
fieldData -> address = arrayAddress; /* Indirect. */
fieldData -> description = memberDescription;
fieldData -> minimum = minimum; /* Normally 1. */
fieldData -> maximum = maximum;
fieldData -> rank = 1;
Melder_free (fieldData -> history); fieldData -> history = Melder_wcsdup_f (history);
GuiObject_show (fieldData -> button);
} else if (rank < 0) {
/*
* This represents an in-line array.
*/
long maximum; /* But: capacity = - rank */
Data_Description_evaluateInteger (structAddress, structDescription,
memberDescription -> max1, & maximum);
if (-- maximum < 0) return; /* Subtract one for zero-based array; no button if no elements. */
fieldData -> address = memberAddress; /* Direct. */
fieldData -> description = memberDescription;
fieldData -> minimum = 0; /* In-line arrays start with index 0. */
fieldData -> maximum = maximum; /* Probably between -1 and capacity - 1. */
fieldData -> rank = rank;
Melder_free (fieldData -> history); fieldData -> history = Melder_wcsdup_f (history);
GuiObject_show (fieldData -> button);
} else if (rank == 3) {
/*
* This represents an in-line set.
*/
fieldData -> address = memberAddress; /* Direct. */
fieldData -> description = memberDescription;
fieldData -> minimum = wcsequ (((const wchar_t * (*) (int)) memberDescription -> min1) (0), L"_") ? 1 : 0;
fieldData -> maximum = ((int (*) (const wchar_t *)) memberDescription -> max1) (L"\n");
fieldData -> rank = rank;
Melder_free (fieldData -> history); fieldData -> history = Melder_wcsdup_f (history);
GuiObject_show (fieldData -> button);
} else if (rank == 2) {
void *arrayAddress = * (void **) memberAddress;
long min1, max1, min2, max2;
if (arrayAddress == NULL) return; /* No button for empty fields. */
Data_Description_evaluateInteger (structAddress, structDescription,
memberDescription -> min1, & min1);
Data_Description_evaluateInteger (structAddress, structDescription,
memberDescription -> max1, & max1);
Data_Description_evaluateInteger (structAddress, structDescription,
memberDescription -> min2, & min2);
Data_Description_evaluateInteger (structAddress, structDescription,
memberDescription -> max2, & max2);
if (max1 < min1 || max2 < min2) return; /* No button if no elements. */
fieldData -> address = arrayAddress; /* Indirect. */
fieldData -> description = memberDescription;
fieldData -> minimum = min1; /* Normally 1. */
fieldData -> maximum = max1;
fieldData -> min2 = min2;
fieldData -> max2 = max2;
fieldData -> rank = 2;
Melder_free (fieldData -> history); fieldData -> history = Melder_wcsdup_f (history);
GuiObject_show (fieldData -> button);
} else if (type == structwa) { /* In-line struct. */
fieldData -> address = memberAddress; /* Direct. */
fieldData -> description = memberDescription;
fieldData -> rank = 0;
Melder_free (fieldData -> history); fieldData -> history = Melder_wcsdup_f (history);
GuiObject_show (fieldData -> button);
} else if (type == objectwa || type == collectionwa) {
fieldData -> address = * (Data *) memberAddress; /* Indirect. */
if (! fieldData -> address) return; /* No button if no object. */
fieldData -> description = memberDescription;
fieldData -> rank = 0;
Melder_free (fieldData -> history); fieldData -> history = Melder_wcsdup_f (history);
GuiObject_show (fieldData -> button);
}
}
static void showStructMembers (DataSubEditor me, void *structAddress, Data_Description structDescription, int fromMember, wchar *history) {
int i = 1;
Data_Description memberDescription = structDescription;
for (; i < fromMember && memberDescription -> name != NULL; i ++, memberDescription ++)
(void) 0;
for (; memberDescription -> name != NULL; memberDescription ++) {
if (++ my d_irow > kDataSubEditor_MAXNUM_ROWS) return;
showStructMember (structAddress, structDescription, memberDescription, & my d_fieldData [my d_irow], history);
}
}
void structStructEditor :: v_showMembers () {
showStructMembers (this, d_address, d_description, d_topField, name);
}
static void StructEditor_init (StructEditor me, DataEditor root, const wchar_t *title, void *address, Data_Description description) {
DataSubEditor_init (me, root, title, address, description);
}
static StructEditor StructEditor_create (DataEditor root, const wchar_t *title, void *address, Data_Description description) {
try {
autoStructEditor me = Thing_new (StructEditor);
StructEditor_init (me.peek(), root, title, address, description);
return me.transfer();
} catch (MelderError) {
Melder_throw ("Struct inspector window not created.");
}
}
/********** VectorEditor **********/
Thing_implement (VectorEditor, DataSubEditor, 0);
long structVectorEditor :: v_countFields () {
long numberOfElements = d_maximum - d_minimum + 1;
if (d_description -> type == structwa)
return numberOfElements * (Data_Description_countMembers (* (Data_Description *) d_description -> tagType) + 1);
else
return numberOfElements;
}
void structVectorEditor :: v_showMembers () {
int type = d_description -> type, isSingleType = type <= maxsingletypewa;
int elementSize = type == structwa ?
Data_Description_countMembers (* (Data_Description *) d_description -> tagType) + 1 : 1;
long firstElement = d_minimum + (d_topField - 1) / elementSize;
for (long ielement = firstElement; ielement <= d_maximum; ielement ++) {
unsigned char *elementAddress = (unsigned char *) d_address + ielement * d_description -> size;
static MelderString buffer = { 0 };
MelderString_empty (& buffer);
int skip = ielement == firstElement ? (d_topField - 1) % elementSize : 0;
if (++ d_irow > kDataSubEditor_MAXNUM_ROWS) return;
DataSubEditor_FieldData fieldData = & d_fieldData [d_irow];
if (isSingleType) {
MelderString_append (& buffer, strip_d (d_description -> name), L" [",
d_description -> rank == 3 ? ((const wchar_t * (*) (int)) d_description -> min1) (ielement) : Melder_integer (ielement), L"]");
GuiObject_move (fieldData -> label, 0, Gui_AUTOMATIC);
GuiLabel_setString (fieldData -> label, buffer.string);
GuiObject_show (fieldData -> label);
MelderString_empty (& buffer);
const wchar_t *text = singleTypeToText (elementAddress, type, d_description -> tagType, & buffer);
#if motif
XtVaSetValues (fieldData -> text, XmNcolumns, stringLengths [type], NULL); // TODO: change to GuiObject_size
#endif
GuiText_setString (fieldData -> text, text);
GuiObject_show (fieldData -> text);
fieldData -> address = elementAddress;
fieldData -> description = d_description;
} else if (type == structwa) {
static MelderString history = { 0 };
MelderString_copy (& history, name);
/* Replace things like [1..100] by things like [19]. */
if (history.string [history.length - 1] == ']') {
wchar_t *openingBracket = wcsrchr (history.string, '[');
Melder_assert (openingBracket != NULL);
* openingBracket = '\0';
history.length = openingBracket - history.string;
}
MelderString_append (& history, L"[", Melder_integer (ielement), L"]");
if (skip) {
d_irow --;
} else {
MelderString_append (& buffer, strip_d (d_description -> name), L" [", Melder_integer (ielement), L"]: ---------------------------");
GuiObject_move (fieldData -> label, 0, Gui_AUTOMATIC);
GuiLabel_setString (fieldData -> label, buffer.string);
GuiObject_show (fieldData -> label);
}
showStructMembers (this, elementAddress, * (Data_Description *) d_description -> tagType, skip, history.string);
} else if (type == objectwa) {
static MelderString history = { 0 };
MelderString_copy (& history, name);
if (history.string [history.length - 1] == ']') {
wchar_t *openingBracket = wcsrchr (history.string, '[');
Melder_assert (openingBracket != NULL);
* openingBracket = '\0';
history.length = openingBracket - history.string;
}
MelderString_append (& history, L"[", Melder_integer (ielement), L"]");
MelderString_append (& buffer, strip_d (d_description -> name), L" [", Melder_integer (ielement), L"]");
GuiObject_move (fieldData -> label, 0, Gui_AUTOMATIC);
GuiLabel_setString (fieldData -> label, buffer.string);
GuiObject_show (fieldData -> label);
Data object = * (Data *) elementAddress;
if (object == NULL) return; // no button if no object
if (! Class_getDescription (object -> classInfo)) return; // no button if no description for this class
fieldData -> address = object;
fieldData -> description = Class_getDescription (object -> classInfo);
fieldData -> rank = 0;
if (fieldData -> history) Melder_free (fieldData -> history);
fieldData -> history = Melder_wcsdup_f (history.string);
GuiObject_show (fieldData -> button);
}
}
}
static VectorEditor VectorEditor_create (DataEditor root, const wchar_t *title, void *address,
Data_Description description, long minimum, long maximum)
{
try {
autoVectorEditor me = Thing_new (VectorEditor);
my d_minimum = minimum;
my d_maximum = maximum;
DataSubEditor_init (me.peek(), root, title, address, description);
return me.transfer();
} catch (MelderError) {
Melder_throw ("Vector inspector window not created.");
}
}
/********** MatrixEditor **********/
Thing_implement (MatrixEditor, DataSubEditor, 0);
long structMatrixEditor :: v_countFields () {
long numberOfElements = (d_maximum - d_minimum + 1) * (d_max2 - d_min2 + 1);
if (d_description -> type == structwa)
return numberOfElements * (Data_Description_countMembers (* (Data_Description *) d_description -> tagType) + 1);
else
return numberOfElements;
}
void structMatrixEditor :: v_showMembers () {
int type = d_description -> type, isSingleType = type <= maxsingletypewa;
int elementSize = type == structwa ?
Data_Description_countMembers (* (Data_Description *) d_description -> tagType) + 1 : 1;
int rowSize = elementSize * (d_max2 - d_min2 + 1);
long firstRow = d_minimum + (d_topField - 1) / rowSize;
long firstColumn = d_min2 + (d_topField - 1 - (firstRow - d_minimum) * rowSize) / elementSize;
for (long irow = firstRow; irow <= d_maximum; irow ++)
for (long icolumn = irow == firstRow ? firstColumn : d_min2; icolumn <= d_max2; icolumn ++) {
unsigned char *elementAddress = * ((unsigned char **) d_address + irow) + icolumn * d_description -> size;
if (++ d_irow > kDataSubEditor_MAXNUM_ROWS) return;
DataSubEditor_FieldData fieldData = & d_fieldData [d_irow];
if (isSingleType) {
static MelderString buffer = { 0 };
MelderString_empty (& buffer);
MelderString_append (& buffer, strip_d (d_description -> name), L" [", Melder_integer (irow), L"] [", Melder_integer (icolumn), L"]");
GuiObject_move (fieldData -> label, 0, Gui_AUTOMATIC);
GuiLabel_setString (fieldData -> label, buffer.string);
GuiObject_show (fieldData -> label);
MelderString_empty (& buffer);
const wchar_t *text = singleTypeToText (elementAddress, type, d_description -> tagType, & buffer);
#if motif
XtVaSetValues (fieldData -> text, XmNcolumns, stringLengths [type], NULL); // TODO: change to GuiObject_size
#endif
GuiText_setString (fieldData -> text, text);
GuiObject_show (fieldData -> text);
fieldData -> address = elementAddress;
fieldData -> description = d_description;
}
}
}
static MatrixEditor MatrixEditor_create (DataEditor root, const wchar_t *title, void *address,
Data_Description description, long min1, long max1, long min2, long max2)
{
try {
autoMatrixEditor me = Thing_new (MatrixEditor);
my d_minimum = min1;
my d_maximum = max1;
my d_min2 = min2;
my d_max2 = max2;
DataSubEditor_init (me.peek(), root, title, address, description);
return me.transfer();
} catch (MelderError) {
Melder_throw ("Matrix inspector window not created.");
}
}
/********** ClassEditor **********/
Thing_implement (ClassEditor, StructEditor, 0);
static void ClassEditor_showMembers_recursive (ClassEditor me, ClassInfo klas) {
ClassInfo parentClass = klas -> parent;
Data_Description description = Class_getDescription (klas);
int classFieldsTraversed = 0;
while (Class_getDescription (parentClass) == description)
parentClass = parentClass -> parent;
if (parentClass != classData) {
ClassEditor_showMembers_recursive (me, parentClass);
classFieldsTraversed = Data_Description_countMembers (Class_getDescription (parentClass));
Melder_casual ("ClassEditor_showMembers_recursive: classFieldsTraversed = %d", classFieldsTraversed);
}
showStructMembers (me, my d_address, description, my d_irow ? 1 : my d_topField - classFieldsTraversed, my name);
}
void structClassEditor :: v_showMembers () {
ClassEditor_showMembers_recursive (this, ((Data) d_address) -> classInfo);
}
static void ClassEditor_init (ClassEditor me, DataEditor root, const wchar_t *title, void *address, Data_Description description) {
if (description == NULL)
Melder_throw ("Class ", Thing_className ((Thing) address), " cannot be inspected.");
StructEditor_init (me, root, title, address, description);
}
static ClassEditor ClassEditor_create (DataEditor root, const wchar_t *title, void *address, Data_Description description) {
try {
autoClassEditor me = Thing_new (ClassEditor);
ClassEditor_init (me.peek(), root, title, address, description);
return me.transfer();
} catch (MelderError) {
Melder_throw ("Class inspector window not created.");
}
}
/********** DataEditor **********/
Thing_implement (DataEditor, ClassEditor, 0);
void structDataEditor :: v_destroy () {
/* Tell my children not to notify me when they die. */
for (int i = 1; i <= d_children -> size; i ++) {
DataSubEditor child = (DataSubEditor) d_children -> item [i];
child -> d_root = NULL;
}
forget (d_children);
DataEditor_Parent :: v_destroy ();
}
void structDataEditor :: v_dataChanged () {
/*
* Someone else changed our data.
* We know that the top-level data is still accessible.
*/
update (this);
/*
* But all structure may have changed,
* so that we do not know if any of the subeditors contain valid data.
*/
for (int i = d_children -> size; i >= 1; i --) {
DataSubEditor subeditor = (DataSubEditor) d_children -> item [i];
Collection_subtractItem (d_children, i);
forget (subeditor);
}
}
DataEditor DataEditor_create (GuiObject parent, const wchar *title, Any data) {
try {
ClassInfo klas = ((Thing) data) -> classInfo;
if (Class_getDescription (klas) == NULL)
Melder_throw ("Class ", klas -> className, " cannot be inspected.");
autoDataEditor me = Thing_new (DataEditor);
my d_children = Collection_create (classDataSubEditor, 10); therror
my d_windowParent = parent;
ClassEditor_init (me.peek(), me.peek(), title, data, Class_getDescription (klas));
return me.transfer();
} catch (MelderError) {
Melder_throw ("Inspector window not created.");
}
}
/* End of file DataEditor.cpp */
|