creatorextension/com.nokia.s60tools.creator/src/com/nokia/s60tools/creator/dialogs/NoteDialog.java
changeset 0 61163b28edca
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/creatorextension/com.nokia.s60tools.creator/src/com/nokia/s60tools/creator/dialogs/NoteDialog.java	Tue Jan 12 13:17:53 2010 -0600
@@ -0,0 +1,105 @@
+/*
+* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+ 
+ 
+package com.nokia.s60tools.creator.dialogs;
+
+
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.Shell;
+
+import com.nokia.s60tools.creator.components.AbstractComponent;
+import com.nokia.s60tools.creator.components.AbstractValue;
+import com.nokia.s60tools.creator.components.AbstractValue.ModeTypes;
+import com.nokia.s60tools.creator.components.note.Note;
+import com.nokia.s60tools.creator.components.note.NoteValue;
+import com.nokia.s60tools.creator.components.note.NoteVariables;
+import com.nokia.s60tools.creator.editors.IComponentProvider;
+
+
+/**
+ *
+ */
+public class NoteDialog extends AbstractDialog {
+	
+
+	
+	public NoteDialog(Shell sh, IComponentProvider provider) {
+		super(sh, provider);
+		init();
+	}
+
+	/**
+	 * Initialize, creates Contact object
+	 */
+	private void init(){
+		if(getComponent() == null){
+			AbstractComponent comp = new Note(AbstractComponent.NULL_ID);
+			setComponent(comp);
+		}		
+	}
+  
+    
+	
+	protected Note createNewComponent(){
+		return new Note(AbstractComponent.NULL_ID);
+	}
+	
+	
+	protected NoteValue createNewValue(String type, String value, String random, String amount) {
+
+		int amout_ = 0;
+		ModeTypes random_ = ModeTypes.RandomTypeNotRandom;
+		String value_ = value;
+		
+		//If amount is set
+		if(amount != null && amount.trim().length() > 0){
+			amout_ = Integer.parseInt(amount);
+		}
+		
+		//if random is selected
+		if(random != null && random.trim().length() > 0 && !random.equals(AbstractValue.EMPTY_STRING)){
+			random_ = AbstractValue.getModeTypeByText(random);
+			if(random_ != ModeTypes.RandomTypeNotRandom){
+				value_ = AbstractValue.RANDOM_TEXT;
+			}
+		}
+		return new NoteValue(value_, random_, amout_);
+	}
+
+	
+	/* (non-Javadoc)
+	 * @see com.nokia.s60tools.creator.dialogs.AbstractDialog#getItemValueAsString()
+	 */
+	protected String[] getItemTypesAsString() {
+		return NoteVariables.getInstance().getItemValuesAsString();
+	}
+
+	
+	/* 
+	 * (non-Javadoc)
+	 * @see org.eclipse.jface.dialogs.Dialog#createDialogArea(org.eclipse.swt.widgets.Composite)
+	 */
+	protected Control createDialogArea(Composite parent) {
+		
+		setAmountFieldsEnabled(false);
+		
+		return super.createDialogArea(parent);
+	}
+	
+}