1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

[306018] Memory Browser several GUI problems

This commit is contained in:
John Cortell 2010-03-16 21:01:46 +00:00
parent d3386e3dd2
commit c66fc1442a
7 changed files with 19 additions and 19 deletions

View file

@ -92,7 +92,7 @@ public class PlainTextExporter implements IMemoryExporter {
FormData data = new FormData();
startLabel.setLayoutData(data);
fStartText = new Text(composite, SWT.NONE);
fStartText = new Text(composite, SWT.BORDER);
data = new FormData();
data.left = new FormAttachment(startLabel);
data.width = 100;
@ -107,7 +107,7 @@ public class PlainTextExporter implements IMemoryExporter {
data.left = new FormAttachment(fStartText);
endLabel.setLayoutData(data);
fEndText = new Text(composite, SWT.NONE);
fEndText = new Text(composite, SWT.BORDER);
data = new FormData();
data.top = new FormAttachment(fStartText, 0, SWT.CENTER);
data.left = new FormAttachment(endLabel);
@ -123,7 +123,7 @@ public class PlainTextExporter implements IMemoryExporter {
data.left = new FormAttachment(fEndText);
lengthLabel.setLayoutData(data);
fLengthText = new Text(composite, SWT.NONE);
fLengthText = new Text(composite, SWT.BORDER);
data = new FormData();
data.top = new FormAttachment(fStartText, 0, SWT.CENTER);
data.left = new FormAttachment(lengthLabel);
@ -133,7 +133,7 @@ public class PlainTextExporter implements IMemoryExporter {
// file
Label fileLabel = new Label(composite, SWT.NONE);
fFileText = new Text(composite, SWT.NONE);
fFileText = new Text(composite, SWT.BORDER);
Button fileButton = new Button(composite, SWT.PUSH);
fileLabel.setText(Messages.getString("Exporter.FileName")); //$NON-NLS-1$

View file

@ -108,7 +108,7 @@ public class PlainTextImporter implements IMemoryImporter {
Label labelStartText = new Label(composite, SWT.NONE);
labelStartText.setText(Messages.getString("PlainTextImporter.RestoreAddress")); //$NON-NLS-1$
fStartText = new Text(composite, SWT.NONE);
fStartText = new Text(composite, SWT.BORDER);
data = new FormData();
// data.top = new FormAttachment(fComboRestoreToFileAddress);
data.left = new FormAttachment(labelStartText);
@ -118,7 +118,7 @@ public class PlainTextImporter implements IMemoryImporter {
// file
Label fileLabel = new Label(composite, SWT.NONE);
fFileText = new Text(composite, SWT.NONE);
fFileText = new Text(composite, SWT.BORDER);
Button fileButton = new Button(composite, SWT.PUSH);
fileLabel.setText(Messages.getString("Importer.File")); //$NON-NLS-1$

View file

@ -91,7 +91,7 @@ public class RAWBinaryExporter implements IMemoryExporter
FormData data = new FormData();
startLabel.setLayoutData(data);
fStartText = new Text(composite, SWT.NONE);
fStartText = new Text(composite, SWT.BORDER);
data = new FormData();
data.left = new FormAttachment(startLabel);
data.width = 100;
@ -106,7 +106,7 @@ public class RAWBinaryExporter implements IMemoryExporter
data.left = new FormAttachment(fStartText);
endLabel.setLayoutData(data);
fEndText = new Text(composite, SWT.NONE);
fEndText = new Text(composite, SWT.BORDER);
data = new FormData();
data.top = new FormAttachment(fStartText, 0, SWT.CENTER);
data.left = new FormAttachment(endLabel);
@ -122,7 +122,7 @@ public class RAWBinaryExporter implements IMemoryExporter
data.left = new FormAttachment(fEndText);
lengthLabel.setLayoutData(data);
fLengthText = new Text(composite, SWT.NONE);
fLengthText = new Text(composite, SWT.BORDER);
data = new FormData();
data.top = new FormAttachment(fStartText, 0, SWT.CENTER);
data.left = new FormAttachment(lengthLabel);
@ -132,7 +132,7 @@ public class RAWBinaryExporter implements IMemoryExporter
// file
Label fileLabel = new Label(composite, SWT.NONE);
fFileText = new Text(composite, SWT.NONE);
fFileText = new Text(composite, SWT.BORDER);
Button fileButton = new Button(composite, SWT.PUSH);
fileLabel.setText(Messages.getString("Exporter.FileName")); //$NON-NLS-1$

View file

@ -91,7 +91,7 @@ public class RAWBinaryImporter implements IMemoryImporter {
Label labelStartText = new Label(composite, SWT.NONE);
labelStartText.setText(Messages.getString("RAWBinaryImporter.RestoreAddress")); //$NON-NLS-1$
fStartText = new Text(composite, SWT.NONE);
fStartText = new Text(composite, SWT.BORDER);
FormData data = new FormData();
data.left = new FormAttachment(labelStartText);
data.width = 100;
@ -100,7 +100,7 @@ public class RAWBinaryImporter implements IMemoryImporter {
// file
Label fileLabel = new Label(composite, SWT.NONE);
fFileText = new Text(composite, SWT.NONE);
fFileText = new Text(composite, SWT.BORDER);
Button fileButton = new Button(composite, SWT.PUSH);
fileLabel.setText(Messages.getString("Importer.File")); //$NON-NLS-1$

View file

@ -91,7 +91,7 @@ public class SRecordExporter implements IMemoryExporter
FormData data = new FormData();
startLabel.setLayoutData(data);
fStartText = new Text(composite, SWT.NONE);
fStartText = new Text(composite, SWT.BORDER);
data = new FormData();
data.left = new FormAttachment(startLabel);
data.width = 100;
@ -106,7 +106,7 @@ public class SRecordExporter implements IMemoryExporter
data.left = new FormAttachment(fStartText);
endLabel.setLayoutData(data);
fEndText = new Text(composite, SWT.NONE);
fEndText = new Text(composite, SWT.BORDER);
data = new FormData();
data.top = new FormAttachment(fStartText, 0, SWT.CENTER);
data.left = new FormAttachment(endLabel);
@ -122,7 +122,7 @@ public class SRecordExporter implements IMemoryExporter
data.left = new FormAttachment(fEndText);
lengthLabel.setLayoutData(data);
fLengthText = new Text(composite, SWT.NONE);
fLengthText = new Text(composite, SWT.BORDER);
data = new FormData();
data.top = new FormAttachment(fStartText, 0, SWT.CENTER);
data.left = new FormAttachment(lengthLabel);
@ -132,7 +132,7 @@ public class SRecordExporter implements IMemoryExporter
// file
Label fileLabel = new Label(composite, SWT.NONE);
fFileText = new Text(composite, SWT.NONE);
fFileText = new Text(composite, SWT.BORDER);
Button fileButton = new Button(composite, SWT.PUSH);
fileLabel.setText(Messages.getString("Exporter.FileName")); //$NON-NLS-1$

View file

@ -109,7 +109,7 @@ public class SRecordImporter implements IMemoryImporter {
data.top = new FormAttachment(fComboRestoreToFileAddress);
fComboRestoreToThisAddress.setLayoutData(data);
fStartText = new Text(composite, SWT.NONE);
fStartText = new Text(composite, SWT.BORDER);
data = new FormData();
data.top = new FormAttachment(fComboRestoreToFileAddress);
data.left = new FormAttachment(fComboRestoreToThisAddress);
@ -137,7 +137,7 @@ public class SRecordImporter implements IMemoryImporter {
// file
Label fileLabel = new Label(composite, SWT.NONE);
fFileText = new Text(composite, SWT.NONE);
fFileText = new Text(composite, SWT.BORDER);
Button fileButton = new Button(composite, SWT.PUSH);
fileLabel.setText(Messages.getString("Importer.File")); //$NON-NLS-1$

View file

@ -15,7 +15,7 @@ ExportMemoryDialog.Title=Export Memory
ImportMemoryDialog.ErrRepositioningRendering=Could not reposition rendering to address 0x{0}.
ImportMemoryDialog.Format=Format:
ImportMemoryDialog.Title=Download to Memory
ImportMemoryDialog.Title=Import Memory
Exporter.AllFiles=All Files
Exporter.Browse=Browse...