Package sos.scheduler.editor.conf.forms

Source Code of sos.scheduler.editor.conf.forms.JobAssistentInfoForms

/********************************************************* begin of preamble
**
** Copyright (C) 2003-2010 Software- und Organisations-Service GmbH.
** All rights reserved.
**
** This file may be used under the terms of either the
**
**   GNU General Public License version 2.0 (GPL)
**
**   as published by the Free Software Foundation
**   http://www.gnu.org/licenses/gpl-2.0.txt and appearing in the file
**   LICENSE.GPL included in the packaging of this file.
**
** or the
** 
**   Agreement for Purchase and Licensing
**
**   as offered by Software- und Organisations-Service GmbH
**   in the respective terms of supply that ship with this file.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
** IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
** THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
** BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
** POSSIBILITY OF SUCH DAMAGE.
********************************************************** end of preamble*/
/*
* Created on 06.03.2007
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package sos.scheduler.editor.conf.forms;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.FocusAdapter;
import org.eclipse.swt.events.FocusEvent;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import sos.scheduler.editor.app.Messages;
import sos.scheduler.editor.app.Options;
import sos.scheduler.editor.app.ResourceManager;
import sos.scheduler.editor.app.Utils;
import sos.scheduler.editor.conf.ISchedulerUpdate;
import sos.scheduler.editor.conf.SchedulerDom;

import com.swtdesigner.SWTResourceManager;

/**
* StartDialog vom Wizzard
*
* @author mueruevet.oeksuez@sos-berlin.com
*
*/

public class JobAssistentInfoForms {
 
  private SchedulerDom      dom          = null;
 
  private ISchedulerUpdate  update       = null;     
     
  private Button            butNext      = null;
 
  private Button            cancelButton = null;
       
  public JobAssistentInfoForms(SchedulerDom dom_, ISchedulerUpdate update_) {
   
    dom = dom_;
    update = update_;         
  }

  public void showInfoForm() {
        
    final Shell shell = new Shell(sos.scheduler.editor.app.MainWindow.getSShell(), SWT.CLOSE | SWT.TITLE | SWT.APPLICATION_MODAL | SWT.BORDER);
    shell.setImage(ResourceManager.getImageFromResource("/sos/scheduler/editor/editor.png"));
    final GridLayout gridLayout = new GridLayout();
    gridLayout.marginTop = 5;
    gridLayout.marginRight = 5;
    gridLayout.marginLeft = 5;
    gridLayout.marginBottom = 5;
    gridLayout.numColumns = 3;
    shell.setLayout(gridLayout);
    shell.setSize(619, 431);   
   
    shell.setText("Job Wizard");

    java.awt.Dimension screen = java.awt.Toolkit.getDefaultToolkit().getScreenSize();   
    shell.setBounds((screen.width - shell.getBounds().width) /2,
                (screen.height - shell.getBounds().height) /2,
                shell.getBounds().width,
                shell.getBounds().height);
   
    shell.open();

    {
      final Group jobGroup = new Group(shell, SWT.NONE);
      jobGroup.setText( "Job ");
      final GridData gridData = new GridData(GridData.BEGINNING, GridData.BEGINNING, false, false, 3, 1);
      gridData.widthHint = 581;
      gridData.heightHint = 329;
      jobGroup.setLayoutData(gridData);
      final GridLayout gridLayout_1 = new GridLayout();
      gridLayout_1.verticalSpacing = 10;
      gridLayout_1.horizontalSpacing = 10;
      gridLayout_1.marginWidth = 10;
      gridLayout_1.marginTop = 10;
      gridLayout_1.marginRight = 10;
      gridLayout_1.marginLeft = 10;
      gridLayout_1.marginHeight = 10;
      gridLayout_1.marginBottom = 10;
      jobGroup.setLayout(gridLayout_1);
   

      final Text txtInfoGlobal = new Text(jobGroup, SWT.READ_ONLY | SWT.WRAP);
      txtInfoGlobal.addFocusListener(new FocusAdapter() {
        public void focusGained(final FocusEvent e) {
          butNext.setFocus();
        }
      });
     
      txtInfoGlobal.setEditable(false);
      final GridData gridData_1 = new GridData(GridData.FILL, GridData.CENTER, true, false);
      gridData_1.widthHint = 491;
      gridData_1.heightHint = 271;
      txtInfoGlobal.setLayoutData(gridData_1);
      txtInfoGlobal.setText(Messages.getString("assistent.start.info"));

      final Button butShow = new Button(jobGroup, SWT.CHECK);
      butShow.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {         
          Options.setShowWizardInfo(!butShow.getSelection());         
        }
      });   
      butShow.setText(Messages.getString("TextDialog.butShowSiteInFuture.text"));
     
    }
    new Label(shell, SWT.NONE);

    cancelButton = new Button(shell, SWT.NONE);
    cancelButton.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(final SelectionEvent e) {
        shell.dispose();
      }
    });
    cancelButton.setText("Cancel");
    {
      butNext = new Button(shell, SWT.NONE);
      butNext.setLayoutData(new GridData(GridData.END, GridData.CENTER, false, false));
      butNext.setFont(SWTResourceManager.getFont("", 8, SWT.BOLD));
      butNext.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {
          Utils.startCursor(shell);
          JobAssistentTypeForms typeForms = new JobAssistentTypeForms(dom, update);
         
          typeForms.showTypeForms()
          shell.dispose();
          Utils.stopCursor(shell);
        }
      });
      butNext.setText("Next");
    }
    setToolTipText();
    shell.layout();   
  }

  public void setToolTipText() {
    butNext.setToolTipText(Messages.getTooltip("assistent.next"));
    cancelButton.setToolTipText(Messages.getTooltip("assistent.cancel"));
  }
 
 
}
TOP

Related Classes of sos.scheduler.editor.conf.forms.JobAssistentInfoForms

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.