Package sos.scheduler.editor.conf.forms

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

/********************************************************* 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*/
package sos.scheduler.editor.conf.forms;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.MouseAdapter;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;

import sos.scheduler.editor.app.ContextMenu;
import sos.scheduler.editor.app.Editor;
import sos.scheduler.editor.app.IUpdateLanguage;
import sos.scheduler.editor.app.MainWindow;
import sos.scheduler.editor.app.Messages;
import sos.scheduler.editor.app.Utils;
import sos.scheduler.editor.conf.ISchedulerUpdate;
import sos.scheduler.editor.conf.SchedulerDom;
import sos.scheduler.editor.conf.listeners.SchedulesListener;

public class SchedulesForm extends Composite implements IUpdateLanguage {
  
 
  private SchedulesListener  listener                = null;
 
  private Group              schedulesGroup          = null;
 
  private static Table       table                   = null;
 
  private Button              bNewSchedule           = null;
 
  private Button              butRemove              = null;
  
  private Label               label                  = null;
 
  private SchedulerDom        dom                    = null;
 
 
  public SchedulesForm(Composite parent, int style, SchedulerDom dom_, ISchedulerUpdate update) {
   
    super(parent, style);
    try {
      listener = new SchedulesListener(dom_, update);
      dom = dom_;
      initialize();
      setToolTipText();
      listener.fillTable(table);
     
    } catch (Exception e) {
      try {
        new sos.scheduler.editor.app.ErrorLog("error in " + sos.util.SOSClassUtil.getMethodName() , e);
      } catch(Exception ee) {
        //tu nichts
      }
      System.err.println("..error in SchedulesForm.init() " + e.getMessage());
    }
   
  }
 
 
  private void initialize() {
    try {
      this.setLayout(new FillLayout());
      createGroup();
      setSize(new org.eclipse.swt.graphics.Point(656, 400));
    } catch (Exception e) {
      try {
        new sos.scheduler.editor.app.ErrorLog("error in " + sos.util.SOSClassUtil.getMethodName() , e);
      } catch(Exception ee) {
        //tu nichts
      }
      System.err.println("..error in SchedulesForm.initialize() " + e.getMessage());
    }
  }
 
 
  /**
   * This method initializes group
   */
  private void createGroup() {
    try {
      GridData gridData = new org.eclipse.swt.layout.GridData(GridData.FILL, GridData.BEGINNING, false, false);
      GridLayout gridLayout = new GridLayout();
      gridLayout.numColumns = 2;
      schedulesGroup = new Group(this, SWT.NONE);
      schedulesGroup.setText("Schedules");
      schedulesGroup.setLayout(gridLayout);
      createTable();
      bNewSchedule = new Button(schedulesGroup, SWT.NONE);
      bNewSchedule.setText("&New Schedule");
      bNewSchedule.setLayoutData(gridData);
      getShell().setDefaultButton(bNewSchedule);
      bNewSchedule.addSelectionListener(new org.eclipse.swt.events.SelectionAdapter() {
        public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
          listener.newScheduler(table);
          butRemove.setEnabled(true);
        }
      });
      butRemove = new Button(schedulesGroup, SWT.NONE);

      butRemove.setText("Remove");
      butRemove.setEnabled(false);
      butRemove.addSelectionListener(new org.eclipse.swt.events.SelectionAdapter() {
        public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
          int c = MainWindow.message(getShell(), "Do you want remove the schedule?", SWT.ICON_QUESTION | SWT.YES | SWT.NO );
          if(c != SWT.YES)
            return;
          if(Utils.checkElement(table.getSelection()[0].getText(0), dom, sos.scheduler.editor.app.Editor.SCHEDULES, null))//wird der Job woandes verwendet?
            butRemove.setEnabled(listener.deleteSchedule(table));
        }
      });
      butRemove.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, false, false));
     
      label = new Label(schedulesGroup, SWT.SEPARATOR | SWT.HORIZONTAL);
      label.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, false, false));
      label.setText("Label");
    } catch (Exception e) {
      try {
        new sos.scheduler.editor.app.ErrorLog("error in " + sos.util.SOSClassUtil.getMethodName() , e);
      } catch(Exception ee) {
        //tu nichts
      }
      System.err.println("..error in SchedulesForm.createGroup() " + e.getMessage());
    }
  }
 
 
  /**
   * This method initializes table
   */
  private void createTable() {
    try {
      GridData gridData2 = new org.eclipse.swt.layout.GridData(GridData.FILL, GridData.FILL, true, true, 1, 3);
      table = new Table(schedulesGroup, SWT.FULL_SELECTION | SWT.BORDER);
      table.addMouseListener(new MouseAdapter() {
        public void mouseDoubleClick(final MouseEvent e) {
          if(table.getSelectionCount() > 0)
            ContextMenu.goTo(table.getSelection()[0].getText(0), dom, Editor.SCHEDULE);
        }
      });
      table.setHeaderVisible(true);
      table.setLayoutData(gridData2);
      table.setLinesVisible(true);
      table.addSelectionListener(new org.eclipse.swt.events.SelectionAdapter() {
        public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
          if(table.getSelectionCount() > 0)
            butRemove.setEnabled(true);
          else
            butRemove.setEnabled(false);
          
        }
      });
      TableColumn tableColumn = new TableColumn(table, SWT.NONE);
      tableColumn.setWidth(385);
      tableColumn.setText("Name");
    } catch (Exception e) {
      try {
        new sos.scheduler.editor.app.ErrorLog("error in " + sos.util.SOSClassUtil.getMethodName() , e);
      } catch(Exception ee) {
        //tu nichts
      }
      System.err.println("..error in SchedulesForm.createTable() " + e.getMessage());
    }
  }
 
 
  public void setToolTipText() {
    bNewSchedule.setToolTipText(Messages.getTooltip("schedules.btn_add_new"));
    butRemove.setToolTipText(Messages.getTooltip("schedules.btn_remove"));
    table.setToolTipText(Messages.getTooltip("schedules.table"));
   
  }
 
 
  public static Table getTable() {       
    return table;
  }
 
} // @jve:decl-index=0:visual-constraint="10,10"
TOP

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

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.