| 1494 | } |
| 1495 | |
| 1496 | void ztalkbox::show() |
| 1497 | { |
| 1498 | flag.visible = true; |
| 1499 | |
| 1500 | if (shared.active != this) |
| 1501 | { |
| 1502 | return; |
| 1503 | } |
| 1504 | |
| 1505 | if (prompt_box) |
| 1506 | { |
| 1507 | prompt_box->activate(); |
| 1508 | } |
| 1509 | |
| 1510 | if (shared.allow_quit && prompt.quit && quit_box) |
| 1511 | { |
| 1512 | quit_box->activate(); |
| 1513 | } |
| 1514 | } |
| 1515 | |
| 1516 | void ztalkbox::hide() |
| 1517 | { |