| 125 | } |
| 126 | |
| 127 | HexViewWindow *WindowManager::hexViewWindow() |
| 128 | { |
| 129 | if (!hexViewWindow_) { |
| 130 | hexViewWindow_ = new HexViewWindow(owner); |
| 131 | if (context->status != Context::INACTIVE) { |
| 132 | hexViewWindow_->start(); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | return hexViewWindow_; |
| 137 | } |
| 138 | |
| 139 | RamWatchWindow *WindowManager::ramWatchWindow() |
| 140 | { |