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
|
// =============================================================== //
// //
// File : SEC_main.cxx //
// Purpose : main part of SECEDIT //
// //
// Institute of Microbiology (Technical University Munich) //
// http://www.arb-home.de/ //
// //
// =============================================================== //
#include "SEC_root.hxx"
#include "SEC_graphic.hxx"
#include "SEC_helix.hxx"
#include "SEC_drawn_pos.hxx"
#include "SEC_toggle.hxx"
#include <BufferedFileReader.h>
#include <aw_awars.hxx>
#include <aw_preset.hxx>
#include <aw_file.hxx>
#include <aw_msg.hxx>
#include <aw_root.hxx>
#include <aw_question.hxx>
#include <mode_text.h>
#include <arb_file.h>
#ifndef sec_assert // happens in NDEBUG mode
#define sec_assert(cond) arb_assert(cond)
#endif
void SEC_root::invalidate_base_positions() {
if (root_loop) {
SEC_base_part *start_part = root_loop->get_fixpoint_strand();
SEC_base_part *part = start_part;
do {
part->get_region()->invalidate_base_count();
part = part->next();
}
while (part != start_part);
}
}
// ------------------------------------------------------
// auto-scrolling (triggered by structure self)
void SEC_root::nail_position(size_t absPos) {
if (drawnPositions) {
nailedAbsPos = absPos;
drawnAbsPos = *drawnPositions->drawn_at(absPos);
}
}
void SEC_root::nail_cursor() { // re-position on cursor
if (cursorAbsPos >= 0) {
if (drawnPositions && !drawnPositions->empty()) {
size_t abs;
drawnAbsPos = drawnPositions->drawn_after(cursorAbsPos-1, &abs);
nailedAbsPos = abs;
}
}
}
void SEC_root::add_autoscroll(const Vector& scroll) {
if (autoscroll) *autoscroll += scroll;
else autoscroll = new Vector(scroll);
}
bool SEC_root::perform_autoscroll() {
bool scrolled = false;
AWT_canvas *canvas = db->canvas();
if (canvas && (nailedAbsPos != -1 || autoscroll)) {
AW_device *device = canvas->aww->get_device(AW_MIDDLE_AREA);
if (nailedAbsPos != -1) {
{
int absPos = nailedAbsPos;
Vector *scroll = autoscroll;
// avoid endless recursion:
nailedAbsPos = -1;
autoscroll = 0;
#if defined(WARN_TODO)
#warning make the refresh invisible
#endif
canvas->refresh();
nailedAbsPos = absPos;
autoscroll = scroll;
}
const Position *newPos = drawnPositions->drawn_at(nailedAbsPos);
if (newPos) {
Vector old2new(drawnAbsPos, *newPos);
#if defined(DEBUG) && 0
printf("drawnAbsPos=%.2f/%.2f newPos=%.2f/%.2f old2new=%.2f/%.2f\n",
drawnAbsPos.xpos(), drawnAbsPos.ypos(),
newPos->xpos(), newPos->ypos(),
old2new.x(), old2new.y());
#endif // DEBUG
add_autoscroll(old2new);
}
nailedAbsPos = -1;
}
if (autoscroll) {
canvas->init_device(device); // loads correct zoom
Vector screen_scroll = device->transform(*autoscroll);
#if defined(DEBUG) && 0
printf("autoscroll=%.2f/%.2f screen_scroll=%.2f/%.2f\n",
autoscroll->x(), autoscroll->y(),
screen_scroll.x(), screen_scroll.y());
#endif // DEBUG
delete autoscroll;
autoscroll = 0;
device->clear(-1);
canvas->scroll(screen_scroll);
scrolled = true;
}
}
return scrolled;
}
// --------------------------------------------------------------------------------
void SEC_root::position_cursor(bool toCenter, bool evenIfVisible) {
// centers the cursor in display (or scrolls it into view)
// if 'evenIfVisible' is true, always do it, otherwise only if not (fully) visible
const LineVector& cursorLine = get_last_drawed_cursor_position();
sec_assert(cursorLine.valid());
AWT_canvas *scr = db->canvas();
AW_device *device = scr->aww->get_device(AW_MIDDLE_AREA);
Rectangle cursor(device->transform(cursorLine));
Rectangle screen(device->get_area_size(), INCLUSIVE_OUTLINE);
if (evenIfVisible || !screen.contains(cursor)) {
if (!toCenter) {
if (perform_autoscroll()) {
cursor = Rectangle(device->transform(cursorLine));
if (!screen.contains(cursor)) {
toCenter = true;
}
}
else { // if autoscroll didn't work
toCenter = true; // center cursor
}
}
if (toCenter) {
Vector scroll(cursor.centroid(), screen.centroid());
#if defined(DEBUG) && 1
printf("Auto-scroll: scroll = (%f, %f) [Center cursor]\n", scroll.x(), scroll.y());
#endif
scr->scroll(-scroll);
scr->refresh();
}
}
}
static void SEC_toggle_cb(AW_window *, AW_CL cl_secroot, AW_CL) {
SEC_root *root = (SEC_root*)cl_secroot;
const SEC_db_interface *db = root->get_db();
GB_ERROR error = db->structure()->next();
if (error) aw_message(error);
db->canvas()->refresh();
}
static void SEC_center_cb(AW_window *, AW_CL cl_secroot, AW_CL) {
SEC_root *root = (SEC_root*)cl_secroot;
root->position_cursor(true, true);
}
static void SEC_fit_window_cb(AW_window * /* aw */, AW_CL cl_secroot, AW_CL) {
SEC_root *root = (SEC_root*)cl_secroot;
const SEC_db_interface *db = root->get_db();
db->graphic()->request_update(SEC_UPDATE_ZOOM_RESET);
db->canvas()->refresh();
}
static void sec_mode_event(AW_window *aws, SEC_root *sec_root, AWT_COMMAND_MODE mode) {
const char *text = 0;
switch (mode) {
case AWT_MODE_ZOOM: text = MODE_TEXT_STANDARD_ZOOMMODE(); break;
case AWT_MODE_EDIT: text = MODE_TEXT_1BUTTON("CONSTRAINT", "modify constraint"); break;
case AWT_MODE_CURSOR: text = MODE_TEXT_1BUTTON("SET CURSOR", "set cursor in ARB_EDIT4"); break;
case AWT_MODE_FOLD: text = MODE_TEXT_2BUTTONS("FOLD", "fold helix", "unfold helix"); break;
case AWT_MODE_SETROOT: text = MODE_TEXT_2BUTTONS("SET ROOT", "set logical center of structure", "reset angles on sub-structure"); break;
case AWT_MODE_ROTATE: text = MODE_TEXT_2BUTTONS("ROTATE", "rotate helix/loop", "same w/o substructure"); break;
case AWT_MODE_STRETCH: text = MODE_TEXT_2BUTTONS("STRETCH", "click and drag to stretch helices/loops", "reset"); break;
case AWT_MODE_PINFO: text = MODE_TEXT_2BUTTONS("PROBE INFO", "display PROBE information", "undisplay"); break;
default: text = no_mode_text_defined(); break;
}
sec_root->set_show_constraints((mode == AWT_MODE_STRETCH || mode == AWT_MODE_EDIT)
? SEC_ANY_TYPE
: SEC_NO_TYPE);
sec_assert(strlen(text) < AWAR_FOOTER_MAX_LEN); // text too long!
aws->get_root()->awar(AWAR_FOOTER)->write_string(text);
AWT_canvas *scr = sec_root->get_db()->canvas();
scr->set_mode(mode);
scr->refresh();
}
static void SEC_undo_cb(AW_window *, AW_CL cl_db, AW_CL cl_undo_type) {
SEC_db_interface *db = (SEC_db_interface*)cl_db;
GB_UNDO_TYPE undo_type = (GB_UNDO_TYPE)cl_undo_type;
GBDATA *gb_main = db->gbmain();
GB_ERROR error = GB_undo(gb_main, undo_type);
if (error) {
aw_message(error);
}
else {
GB_begin_transaction(gb_main);
GB_commit_transaction(gb_main);
db->canvas()->refresh();
}
}
// --------------------------------------------------------------------------------
#define ASS "ARB secondary structure v1" // don't change version here!
#define ASS_START "[" ASS "]"
#define ASS_EOS "[end of structure]"
#define ASS_EOF "[end of " ASS "]"
static void export_structure_to_file(AW_window *, AW_CL cl_db)
{
SEC_db_interface *db = (SEC_db_interface*)cl_db;
AW_root *aw_root = db->awroot();
char *filename = aw_root->awar(AWAR_SECEDIT_SAVEDIR"/file_name")->read_string();
FILE *out = fopen(filename, "wt");
GB_ERROR error = 0;
if (out) {
SEC_root *sec_root = db->secroot();
fputs(ASS_START, out); fputc('\n', out);
char *strct = sec_root->buildStructureString();
fputs(strct, out);
delete [] strct;
fputs(ASS_EOS, out); fputc('\n', out);
const XString& xstr = sec_root->get_xString();
const char *x_string = xstr.get_x_string();
sec_assert(xstr.get_x_string_length() == strlen(x_string));
char *foldInfo = SEC_xstring_to_foldedHelixList(x_string, xstr.get_x_string_length(), sec_root->get_helixDef(), error);
if (foldInfo) {
fprintf(out, "foldedHelices=%s\n", foldInfo);
free(foldInfo);
}
fputs(ASS_EOF, out); fputc('\n', out);
fclose(out);
if (error) GB_unlink_or_warn(filename, &error);
}
else {
error = GB_export_errorf("Can't write secondary structure to '%s'", filename);
}
free(filename);
if (error) aw_message(error);
}
inline GB_ERROR expectedError(const char *expected) {
return GBS_global_string("expected '%s'", expected);
}
inline GB_ERROR expectContent(LineReader& file, const char *expected) {
GB_ERROR error = 0;
string line;
if (!file.getLine(line) || line != expected) {
error = expectedError(expected);
}
return error;
}
static string scanToken(LineReader& file, string& rest, GB_ERROR& error) {
string line;
string token;
sec_assert(error == 0);
if (file.getLine(line)) {
size_t equal = line.find('=');
if (equal == string::npos) {
error = "Expected '='";
}
else {
token = line.substr(0, equal);
rest = line.substr(equal+1);
}
}
else {
error = "Unexpected EOF";
}
return token;
}
static GB_ERROR expectToken(LineReader& file, const char *token, string& content) {
GB_ERROR error = 0;
string foundToken = scanToken(file, content, error);
if (foundToken != token) error = expectedError(token);
return error;
}
static void import_structure_from_file(AW_window *, AW_CL cl_db) {
GB_ERROR error = 0;
SEC_db_interface *db = (SEC_db_interface*)cl_db;
SEC_root *root = db->secroot();
if (!root->has_xString()) {
error = "Please select a species in EDIT4";
}
else {
char *filename = db->awroot()->awar(AWAR_SECEDIT_SAVEDIR"/file_name")->read_string();
FILE *in = fopen(filename, "rt"); // closed by FileBuffer
if (!in) {
error = GB_export_errorf("Can't open file '%s'", filename);
}
else {
BufferedFileReader file(filename, in);
error = expectContent(file, ASS_START);
string structure;
while (!error) {
string line;
if (!file.getLine(line)) error = expectedError(ASS_EOS);
else {
if (line == ASS_EOS) break;
structure += line + "\n";
}
}
char *x_string = 0;
if (!error) {
string content;
string token = scanToken(file, content, error);
if (!error) {
// we already have an existing xstring, use it's length for new xstring
size_t xlength = root->get_xString().getLength();
if (token == "foldedHelices") { // new version
x_string = SEC_foldedHelixList_to_xstring(content.c_str(), xlength, root->get_helixDef(), error); // sets error
}
else if (token == "no of helices") { // old version
int saved_helices = atoi(content.c_str());
error = expectToken(file, "length of xstring", content); // ignore, using curr value
if (!error) error = expectToken(file, "xstring_rel_helix", content);
if (!error) {
int helices_in_db;
x_string = old_decode_xstring_rel_helix(content.c_str(), xlength, root->get_helixDef(), &helices_in_db);
if (helices_in_db != saved_helices) {
error = GBS_global_string("Number of helices does not match (file=%i, db=%i).\n"
"Saving the structure again from another DB with correct number of helices will work around this restriction.",
saved_helices, helices_in_db);
}
}
}
else {
error = "Expected 'foldedHelices' or 'no of helices'";
}
}
if (!error) error = expectContent(file, ASS_EOF);
}
if (error) {
error = GBS_static_string(file.lineError(error).c_str());
}
else {
db->graphic()->write_data_to_db(structure.c_str(), x_string);
db->canvas()->refresh();
}
free(x_string);
}
free(filename);
}
if (error) aw_message(error);
}
#undef ASS
#undef ASS_START
#undef ASS_EOS
#undef ASS_EOF
static AW_window *SEC_importExport(AW_root *root, int export_to_file, SEC_db_interface *db)
{
AW_window_simple *aws = new AW_window_simple;
if (export_to_file) aws->init(root, "export_secondary_structure", "Export secondary structure to ...");
else aws->init(root, "import_secondary_structure", "Import secondary structure from ...");
aws->load_xfig("sec_imexport.fig");
aws->at("close");
aws->callback((AW_CB0)AW_POPDOWN);
aws->create_button("CLOSE", "CLOSE", "C");
aws->at("help");
aws->callback(makeHelpCallback("sec_imexport.hlp"));
aws->create_button("HELP", "HELP", "H");
AW_create_standard_fileselection(aws, AWAR_SECEDIT_SAVEDIR);
aws->at("save");
if (export_to_file) {
aws->callback(export_structure_to_file, (AW_CL)db);
aws->create_button("EXPORT", "EXPORT", "E");
}
else {
aws->callback(import_structure_from_file, (AW_CL)db);
aws->create_button("IMPORT", "IMPORT", "I");
}
return aws;
}
static AW_window *SEC_import(AW_root *root, AW_CL cl_db) { return SEC_importExport(root, 0, (SEC_db_interface*)cl_db); }
static AW_window *SEC_export(AW_root *root, AW_CL cl_db) { return SEC_importExport(root, 1, (SEC_db_interface*)cl_db); }
static void SEC_rename_structure(AW_window *, AW_CL cl_db, AW_CL) {
SEC_db_interface *db = (SEC_db_interface*)cl_db;
SEC_structure_toggler *structure = db->structure();
char *new_name = aw_input("Rename structure", "New name", structure->name());
if (new_name) {
structure->setName(new_name);
free(new_name);
db->canvas()->refresh();
}
}
static void SEC_new_structure(AW_window *, AW_CL cl_db, AW_CL) {
SEC_db_interface *db = (SEC_db_interface*)cl_db;
SEC_structure_toggler *structure = db->structure();
if (!structure) {
db->init_toggler();
structure = db->structure();
sec_assert(structure);
}
GB_ERROR error = 0;
bool done = false;
switch (aw_question(NULL, "Create new structure?", "Default bone,Copy current,Abort")) {
case 0: // default bone
error = structure->copyTo("Default");
if (!error) {
db->secroot()->create_default_bone();
db->graphic()->save(0, 0, 0, 0);
done = true;
}
break;
case 1: // copy current
error = structure->copyTo(GBS_global_string("%s(copy)", structure->name()));
done = !error;
break;
case 2: // abort
break;
}
if (done) {
db->graphic()->request_update(SEC_UPDATE_ZOOM_RESET);
db->canvas()->refresh();
SEC_rename_structure(0, cl_db, 0);
}
}
static void SEC_delete_structure(AW_window *, AW_CL cl_db, AW_CL) {
SEC_db_interface *db = (SEC_db_interface*)cl_db;
SEC_structure_toggler *structure = db->structure();
if (structure->getCount()>1) {
if (aw_ask_sure("delete_sec_structure", GBS_global_string("Are you sure to delete structure '%s'?", structure->name()))) {
GB_ERROR error = structure->remove();
if (error) aw_message(error);
db->canvas()->refresh();
}
}
else {
aw_message("You cannot delete the last structure");
}
}
static void SEC_sync_colors(AW_window *aww, AW_CL cl_mode, AW_CL) {
// overwrites color settings with those from EDIT4
int mode = (int)cl_mode;
if (mode & 1) { // search string colors
AW_copy_GCs(aww->get_root(), "ARB_EDIT4", "ARB_SECEDIT", false,
"User1", "User2", "Probe",
"Primerl", "Primerr", "Primerg",
"Sigl", "Sigr", "Sigg",
"MISMATCHES",
NULL);
}
if (mode & 2) { // range colors
AW_copy_GCs(aww->get_root(), "ARB_EDIT4", "ARB_SECEDIT", false,
"RANGE_0", "RANGE_1", "RANGE_2",
"RANGE_3", "RANGE_4", "RANGE_5",
"RANGE_6", "RANGE_7", "RANGE_8",
"RANGE_9",
NULL);
}
if (mode & 4) { // other colors
AW_copy_GCs(aww->get_root(), "ARB_EDIT4", "ARB_SECEDIT", false,
"CURSOR",
NULL);
}
}
static AW_window *SEC_create_bonddef_window(AW_root *awr) {
AW_window_simple *aws = new AW_window_simple;
aws->init(awr, "SEC_BONDDEF", "Bond definitions");
aws->load_xfig("sec_bonddef.fig");
aws->callback((AW_CB0)AW_POPDOWN);
aws->at("close");
aws->create_button("CLOSE", "CLOSE", "C");
aws->callback(makeHelpCallback("sec_bonddef.hlp"));
aws->at("help");
aws->create_button("HELP", "HELP", "H");
aws->at("label"); int x_label = aws->get_at_xposition();
aws->at("pairs"); int x_pairs = aws->get_at_xposition();
aws->at("chars"); int x_chars = aws->get_at_xposition();
aws->auto_space(0, 0);
#define INSERT_PAIR_FIELDS(label, pairname) \
aws->at_x(x_label); \
aws->create_button("", label); \
aws->at_x(x_pairs); \
aws->create_input_field(AWAR_SECEDIT_##pairname##_PAIRS, 30); \
aws->at_x(x_chars); \
aws->create_input_field(AWAR_SECEDIT_##pairname##_PAIR_CHAR, 1); \
aws->at_newline();
INSERT_PAIR_FIELDS("Strong pairs", STRONG);
INSERT_PAIR_FIELDS("Normal pairs", NORMAL);
INSERT_PAIR_FIELDS("Weak pairs", WEAK);
INSERT_PAIR_FIELDS("No pairs", NO);
INSERT_PAIR_FIELDS("User pairs", USER);
#undef INSERT_PAIR_FIELDS
return aws;
}
static AW_window *SEC_create_display_window(AW_root *awr) {
AW_window_simple *aws = new AW_window_simple;
aws->init(awr, "SEC_DISPLAY_OPTS", "Display options");
aws->load_xfig("sec_display.fig");
aws->callback((AW_CB0)AW_POPDOWN);
aws->at("close");
aws->create_button("CLOSE", "CLOSE", "C");
aws->callback(makeHelpCallback("sec_display.hlp"));
aws->at("help");
aws->create_button("HELP", "HELP", "H");
// ----------------------------------------
aws->at("bases");
aws->label("Display bases :");
aws->create_inverse_toggle(AWAR_SECEDIT_HIDE_BASES);
aws->at("strand_dist");
aws->label("Distance between strands :");
aws->create_input_field(AWAR_SECEDIT_DIST_BETW_STRANDS);
aws->at("bonds");
aws->label("Display bonds");
aws->create_option_menu(AWAR_SECEDIT_SHOW_BONDS, true);
aws->insert_option("None", "n", SHOW_NO_BONDS);
aws->insert_option("Helix", "h", SHOW_HELIX_BONDS);
aws->insert_option("+Non-helix", "o", SHOW_NHELIX_BONDS);
aws->update_option_menu();
aws->at("bonddef");
aws->callback(AW_POPUP, (AW_CL)SEC_create_bonddef_window, 0);
aws->create_button("sec_bonddef", "Define", 0);
aws->at("bondThickness");
aws->label("Bond thickness :");
aws->create_input_field(AWAR_SECEDIT_BOND_THICKNESS);
// ----------------------------------------
aws->at("cursor");
aws->label("Annotate cursor :");
aws->create_option_menu(AWAR_SECEDIT_SHOW_CURPOS, true);
aws->insert_option("None", "n", SHOW_NO_CURPOS);
aws->insert_option("Absolute", "a", SHOW_ABS_CURPOS);
aws->insert_option("Ecoli", "e", SHOW_ECOLI_CURPOS);
aws->insert_option("Base", "b", SHOW_BASE_CURPOS);
aws->update_option_menu();
aws->at("helixNrs");
aws->label("Annotate helices :");
aws->create_toggle(AWAR_SECEDIT_SHOW_HELIX_NRS);
aws->at("ecoli");
aws->label("Annotate ecoli positions :");
aws->create_toggle(AWAR_SECEDIT_SHOW_ECOLI_POS);
aws->at("search");
aws->label("Visualize search results :");
aws->create_toggle(AWAR_SECEDIT_DISPLAY_SEARCH);
aws->at("sai");
aws->label("Visualize SAI :");
aws->create_toggle(AWAR_SECEDIT_DISPLAY_SAI);
// ----------------------------------------
aws->at("binding");
aws->label("Binding helix positions :");
aws->create_toggle(AWAR_SECEDIT_DISPPOS_BINDING);
aws->at("ecoli2");
aws->label("Ecoli base positions :");
aws->create_toggle(AWAR_SECEDIT_DISPPOS_ECOLI);
// ----------------------------------------
aws->at("strSkeleton");
aws->label("Display structure skeleton :");
aws->create_toggle(AWAR_SECEDIT_SHOW_STR_SKELETON);
aws->at("skelThickness");
aws->label("Skeleton thickness :");
aws->create_input_field(AWAR_SECEDIT_SKELETON_THICKNESS);
#ifdef DEBUG
aws->at("show_debug");
aws->label("Show debug info:");
aws->create_toggle(AWAR_SECEDIT_SHOW_DEBUG);
#endif
return aws;
}
#if defined(WARN_TODO)
#warning use popdown callback for SEC_exit and valgrind open/close/open secedit
#endif
static void SEC_exit(GBDATA *, void *cl_sec_root) {
SEC_root *sec_root = static_cast<SEC_root*>(cl_sec_root);
delete sec_root;
}
AW_window *start_SECEDIT_plugin(ED4_plugin_host& host) {
AW_root *awr = host.get_application_root();
GBDATA *gb_main = host.get_database();
SEC_graphic *gfx = new SEC_graphic(awr, gb_main); // never freed
SEC_root *root = gfx->sec_root;
AW_window_menu_modes *awm = new AW_window_menu_modes;
awm->init(awr, "ARB_SECEDIT", "ARB_SECEDIT: Secondary structure editor", 200, 200);
AWT_canvas *scr = new AWT_canvas(gb_main, awm, awm->get_window_id(), gfx, AWAR_SPECIES_NAME);
root->init(gfx, scr, host);
scr->recalc_size();
scr->set_mode(AWT_MODE_ZOOM); // Default-Mode
const SEC_db_interface *db = root->get_db();
GB_atclose(gb_main, SEC_exit, root);
awm->create_menu("File", "F", AWM_ALL);
awm->insert_menu_topic("secedit_new", "New structure", "N", 0, AWM_ALL, SEC_new_structure, (AW_CL)db, 0);
awm->insert_menu_topic("secedit_rename", "Rename structure", "R", 0, AWM_ALL, SEC_rename_structure, (AW_CL)db, 0);
awm->insert_menu_topic("secedit_delete", "Delete structure", "D", 0, AWM_ALL, SEC_delete_structure, (AW_CL)db, 0);
awm->sep______________();
awm->insert_menu_topic("secedit_import", "Load structure", "L", "secedit_imexport.hlp", AWM_ALL, AW_POPUP, (AW_CL)SEC_import, (AW_CL)db);
awm->insert_menu_topic("secedit_export", "Save structure", "S", "secedit_imexport.hlp", AWM_ALL, AW_POPUP, (AW_CL)SEC_export, (AW_CL)db);
awm->sep______________();
awm->insert_menu_topic("secStruct2xfig", "Export Structure to XFIG", "X", "sec_layout.hlp", AWM_ALL, makeWindowCallback(AWT_popup_sec_export_window, scr));
awm->insert_menu_topic("print_secedit", "Print Structure", "P", "secedit2prt.hlp", AWM_ALL, makeWindowCallback(AWT_popup_print_window, scr));
awm->sep______________();
awm->insert_menu_topic("close", "Close", "C", "quit.hlp", AWM_ALL, (AW_CB)AW_POPDOWN, 0, 0);
awm->create_menu("Properties", "P", AWM_ALL);
awm->insert_menu_topic("sec_display", "Display options", "D", "sec_display.hlp", AWM_ALL, AW_POPUP, (AW_CL)SEC_create_display_window, 0);
awm->sep______________();
awm->insert_menu_topic("props_secedit", "Change Colors and Fonts", "C", "secedit_props_data.hlp", AWM_ALL, makeCreateWindowCallback(AW_create_gc_window, scr->gc_manager));
awm->sep______________();
awm->insert_menu_topic("sync_search_colors", "Sync search colors with EDIT4", "s", "sync_colors.hlp", AWM_ALL, SEC_sync_colors, (AW_CL)1, 0);
awm->insert_menu_topic("sync_range_colors", "Sync range colors with EDIT4", "r", "sync_colors.hlp", AWM_ALL, SEC_sync_colors, (AW_CL)2, 0);
awm->insert_menu_topic("sync_other_colors", "Sync other colors with EDIT4", "o", "sync_colors.hlp", AWM_ALL, SEC_sync_colors, (AW_CL)4, 0);
awm->insert_menu_topic("sync_all_colors", "Sync all colors with EDIT4", "a", "sync_colors.hlp", AWM_ALL, SEC_sync_colors, (AW_CL)(1|2|4), 0);
awm->sep______________();
awm->insert_menu_topic("sec_save_props", "How to save properties", "p", "savedef.hlp", AWM_ALL, makeHelpCallback("sec_props.hlp"));
awm->create_mode("mode_zoom.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_ZOOM));
awm->create_mode("mode_fold.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_FOLD));
awm->create_mode("mode_setroot.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_SETROOT));
awm->create_mode("mode_rotate.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_ROTATE));
awm->create_mode("mode_stretch.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_STRETCH));
awm->create_mode("mode_edit.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_EDIT));
awm->create_mode("mode_cursor.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_CURSOR));
awm->create_mode("mode_pinfo.xpm", "sec_mode.hlp", AWM_ALL, makeWindowCallback(sec_mode_event, root, AWT_MODE_PINFO));
awm->set_info_area_height(250);
awm->at(5, 2);
awm->auto_space(0, -2);
awm->button_length(0);
awm->help_text("quit.hlp");
awm->callback((AW_CB0)AW_POPDOWN);
awm->create_button("Close", "#quit.xpm"); // use quit button, cause users regard secedit as separate program
awm->callback(AW_help_entry_pressed);
awm->help_text("arb_secedit.hlp");
awm->create_button("HELP", "#help.xpm");
awm->callback(SEC_undo_cb, (AW_CL)db, (AW_CL)GB_UNDO_UNDO);
awm->help_text("undo.hlp");
awm->create_button("Undo", "#undo.xpm");
awm->callback(SEC_undo_cb, (AW_CL)db, (AW_CL)GB_UNDO_REDO);
awm->help_text("undo.hlp");
awm->create_button("Redo", "#redo.xpm");
awm->callback(SEC_toggle_cb, (AW_CL)root, 0);
awm->help_text("sec_main.hlp");
awm->create_button("Toggle", "Toggle");
awm->callback(SEC_center_cb, (AW_CL)root, 0);
awm->help_text("sec_main.hlp");
awm->create_button("Center", "Center");
awm->callback((AW_CB)SEC_fit_window_cb, (AW_CL)root, 0);
awm->help_text("sec_main.hlp");
awm->create_button("fitWindow", "Fit");
awm->at_newline();
{
AW_at_maxsize maxSize; // store size (so AWAR_FOOTER does not affect min. window size)
maxSize.store(awm->_at);
awm->button_length(AWAR_FOOTER_MAX_LEN);
awm->create_button(0, AWAR_FOOTER);
awm->at_newline();
maxSize.restore(awm->_at);
}
awm->set_info_area_height(awm->get_at_yposition());
return awm;
}
|