Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/MemoryMapDialog.java')
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/MemoryMapDialog.java78
1 files changed, 78 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/MemoryMapDialog.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/MemoryMapDialog.java
new file mode 100644
index 000000000..c8e450a7e
--- /dev/null
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/commands/MemoryMapDialog.java
@@ -0,0 +1,78 @@
+/*******************************************************************************
+ * Copyright (c) 2010 Wind River Systems, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.tm.internal.tcf.debug.ui.commands;
+
+import org.eclipse.debug.core.ILaunchConfiguration;
+import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
+import org.eclipse.jface.dialogs.Dialog;
+import org.eclipse.jface.dialogs.IDialogConstants;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.widgets.Button;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.MessageBox;
+import org.eclipse.swt.widgets.Shell;
+import org.eclipse.tm.internal.tcf.debug.ui.ImageCache;
+import org.eclipse.tm.internal.tcf.debug.ui.model.TCFModel;
+import org.eclipse.tm.internal.tcf.debug.ui.model.TCFNode;
+
+class MemoryMapDialog extends Dialog {
+
+ private final TCFNode node;
+ private final ILaunchConfiguration cfg;
+ private MemoryMapWidget widget;
+ private Button ok_button;
+
+ MemoryMapDialog(Shell parent, TCFNode node) {
+ super(parent);
+ this.node = node;
+ cfg = node.getModel().getLaunch().getLaunchConfiguration();
+ setShellStyle(getShellStyle() | SWT.RESIZE);
+ }
+
+ @Override
+ protected void configureShell(Shell shell) {
+ super.configureShell(shell);
+ shell.setText("Symbol Files");
+ shell.setImage(ImageCache.getImage(ImageCache.IMG_MEMORY_MAP));
+ }
+
+ @Override
+ protected void createButtonsForButtonBar(Composite parent) {
+ ok_button = createButton(parent, IDialogConstants.OK_ID, "&OK", true);
+ ok_button.setEnabled(widget != null && widget.getMemoryMapID() != null);
+ }
+
+ @Override
+ protected Control createDialogArea(Composite parent) {
+ Composite composite = (Composite)super.createDialogArea(parent);
+ widget = new MemoryMapWidget(composite, node);
+ widget.loadData(cfg);
+ if (ok_button != null) ok_button.setEnabled(widget.getMemoryMapID() != null);
+ composite.setSize(composite.computeSize(SWT.DEFAULT, SWT.DEFAULT));
+ return composite;
+ }
+
+ @Override
+ protected void okPressed() {
+ try {
+ ILaunchConfigurationWorkingCopy copy = cfg.getWorkingCopy();
+ if (widget.saveData(copy)) copy.doSave();
+ super.okPressed();
+ }
+ catch (Throwable x) {
+ MessageBox mb = new MessageBox(getShell(), SWT.ICON_ERROR | SWT.OK);
+ mb.setText("Cannot update memory map");
+ mb.setMessage(TCFModel.getErrorMessage(x, true));
+ mb.open();
+ }
+ }
+}

Back to the top