imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/viewers/PlatsimTab.java
changeset 11 217e69fc5beb
parent 1 7ff23301fe22
equal deleted inserted replaced
10:2715b6594cd9 11:217e69fc5beb
    31 import org.eclipse.swt.widgets.Composite;
    31 import org.eclipse.swt.widgets.Composite;
    32 import org.eclipse.swt.widgets.Control;
    32 import org.eclipse.swt.widgets.Control;
    33 import org.eclipse.swt.widgets.Group;
    33 import org.eclipse.swt.widgets.Group;
    34 import org.eclipse.swt.widgets.Label;
    34 import org.eclipse.swt.widgets.Label;
    35 import org.eclipse.swt.widgets.Text;
    35 import org.eclipse.swt.widgets.Text;
       
    36 import org.eclipse.ui.PlatformUI;
    36 
    37 
    37 import com.nokia.s60tools.imaker.IEnvironment;
    38 import com.nokia.s60tools.imaker.IEnvironment;
    38 import com.nokia.s60tools.imaker.IEnvironmentManager;
    39 import com.nokia.s60tools.imaker.IEnvironmentManager;
    39 import com.nokia.s60tools.imaker.IMakerKeyConstants;
    40 import com.nokia.s60tools.imaker.IMakerKeyConstants;
       
    41 import com.nokia.s60tools.imaker.ImageFlasherHelpContextIDs;
    40 import com.nokia.s60tools.imaker.Messages;
    42 import com.nokia.s60tools.imaker.Messages;
    41 import com.nokia.s60tools.imaker.internal.managers.EnvironmentManager;
    43 import com.nokia.s60tools.imaker.internal.managers.EnvironmentManager;
    42 import com.nokia.s60tools.imaker.internal.model.ImakerProperties;
    44 import com.nokia.s60tools.imaker.internal.model.ImakerProperties;
    43 import com.nokia.s60tools.imaker.internal.wrapper.PlatsimManager;
    45 import com.nokia.s60tools.imaker.internal.wrapper.PlatsimManager;
    44 
    46 
    64 		setControl(createControl(parent));
    66 		setControl(createControl(parent));
    65 	}
    67 	}
    66 	
    68 	
    67 	private Control createControl(CTabFolder parent) {
    69 	private Control createControl(CTabFolder parent) {
    68 		Composite top = new Composite(parent,SWT.FLAT);
    70 		Composite top = new Composite(parent,SWT.FLAT);
       
    71 		PlatformUI.getWorkbench().getHelpSystem().setHelp(top, ImageFlasherHelpContextIDs.IMAKERDIALOG_PLATSIMTAB);
    69 		GridData layoutData = new GridData(SWT.FILL, SWT.FILL, true, false);
    72 		GridData layoutData = new GridData(SWT.FILL, SWT.FILL, true, false);
    70 		top.setLayoutData(layoutData);
    73 		top.setLayoutData(layoutData);
    71 		top.setLayout(new GridLayout(1,false));
    74 		top.setLayout(new GridLayout(1,false));
    72 
    75 
    73 		platsimGroup = new Group(top, SWT.NONE);
    76 		platsimGroup = new Group(top, SWT.NONE);