Examples of IFrame


Examples of fr.soleil.comete.widget.IFrame

  /**
   * Main class, so you can have an example. You can put your own attribute names in parameter
   */
  public static void main(String[] args) {

    IFrame frame = CometeWidgetFactory.createFrame();
    String tmpDeviceName = null;
    String tmpAttributeName = null;
    if (args != null && args.length > 1) {
      tmpDeviceName = args[0];
      tmpAttributeName = args[1];
    }
    else {
      tmpDeviceName = "tango/tangotest/titan";
      tmpAttributeName = "string_image";
    }

    StringImageTable f = new StringImageTable();
    IStringTableListener listener = new IStringTableListener() {

      @Override
      public void selectedColumnChanged(int col) {
        System.out.println("selectedColumnChanged="+col);
      }

      @Override
      public void selectedRowChanged(int col) {
        System.out.println("selectedRowChanged="+col);

      }

      @Override
      public void selectedValueChanged(String value) {
        System.out.println("selectedValueChanged="+value);

      }

      @Override
      public void selectedPointChanged(Point point) {
        System.out.println("selectedPointChanged=" + point);

      }

      @Override
      public void valueChanged(IMatrix matrix) {
        System.out.println("valueChanged=" + matrix);
      }
    };

    f.addStringTableListener(listener);
    f.setSize(300, 300);
    f.setPreferredSize(f.getSize());
    f.setDeviceName(tmpDeviceName);
    f.setToolTipText(tmpDeviceName + "/" + tmpAttributeName);
    f.setEntityName(tmpAttributeName);
    f.initDAO();

    frame.setContentPane(f);
    frame.setSize(640, 480);
    frame.setTitle(f.getClass().getName());
    frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
  }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

  /**
   * Main class, so you can have an example. You can put your own attribute names in parameter
   */
  public static void main(String[] args) {

    IFrame frame = CometeWidgetFactory.createFrame();
    String tmpDeviceName = null;
    String tmpAttributeName = null;
    if (args != null && args.length > 1) {
      tmpDeviceName = args[0];
      tmpAttributeName = args[1];
    }
    else {
      tmpDeviceName = "tango/tangotest/titan";
      tmpAttributeName = "string_scalar";
    }

    StringScalarPeriodicTable f = new StringScalarPeriodicTable();
    f.setSize(1300, 1000);
    f.setPreferredSize(f.getSize());
    f.setDeviceName(tmpDeviceName);
    f.setEntityName(tmpAttributeName);
    f.setEnabled(true);
    f.initDAO();

    frame.setContentPane(f);
    frame.setTitle(f.getClass().getName());
    frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
  }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

  /**
   * Main class, so you can have an example. You can put your own attribute names in parameter
   */
  public static void main(String[] args) {

    IFrame frame = CometeWidgetFactory.createFrame();
    String tmpDeviceName = null;
    String tmpAttributeName = null;
    if (args != null && args.length > 1) {
      tmpDeviceName = args[0];
      tmpAttributeName = args[1];
    }
    else {
      tmpDeviceName = "tango/tangotest/titan";
      tmpAttributeName = "ampli";
    }

    NumberScalarCombo f = new NumberScalarCombo();
    f.setNumberValueList(new Number[] { 1, 2, 3, 4, 5 });
    f.setSize(300, 300);
    f.setPreferredSize(f.getSize());
    f.setDeviceName(tmpDeviceName);
    f.setEntityName(tmpAttributeName);
    f.setEnabled(true);
    f.setConfirmation(true);
    f.initDAO();

    frame.setContentPane(f);
    frame.setSize(640, 480);
    frame.setTitle(f.getClass().getName());
    frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
  }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

  /**
   * Main class, so you can have an example. You can put your own attribute names in parameter
   */
  public static void main(String[] args) {

    IFrame frame = CometeWidgetFactory.createFrame();
    String tmpDeviceName = null;
    String tmpAttributeName = null;
    if (args != null && args.length > 1) {
      tmpDeviceName = args[0];
      tmpAttributeName = args[1];
    }
    else {
      tmpDeviceName = "tango/tangotest/titan";
      tmpAttributeName = "ampli";
    }

    NumberScalarWheelSwitch f = new NumberScalarWheelSwitch();
    f.setSize(300, 300);
    f.setPreferredSize(f.getSize());
    f.setDeviceName(tmpDeviceName);
    f.setEntityName(tmpAttributeName);
    f.setEnabled(true);
    f.setEditable(true);
    f.setConfirmation(true);
    f.initDAO();

    frame.setContentPane(f);
    frame.setSize(640, 480);
    frame.setTitle(f.getClass().getName());
    frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
  }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

  /**
   * Main class, so you can have an example. You can put your own attribute names in parameter
   */
  public static void main(String[] args) {

    IFrame frame = CometeWidgetFactory.createFrame();

    String tmpDeviceName = null;
    String tmpAttributeName = null;
    if (args != null && args.length > 1) {
      tmpDeviceName = args[0];
      tmpAttributeName = args[1];
    }
    else {
      tmpDeviceName = "tango/tangotest/titan";
      tmpAttributeName = "boolean_scalar";
    }

    BooleanLed widget = new BooleanLed();
    widget.setSize(300, 300);
    widget.setDeviceName(tmpDeviceName);
    widget.setEntityName(tmpAttributeName);
    widget.setEnabled(true);
    widget.setStateEnabled(false);
    widget.setConfirmation(true);
    widget.initDAO();

    frame.setContentPane(widget);
    frame.setSize(640, 480);
    frame.setTitle(widget.getClass().getName());
    frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
  }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

        return ((ISlider) getComponent()).getMinorTickSpacing();
    }

    public static void main(final String[] args) {

        final IFrame frame = CometeWidgetFactory.createFrame();
        String tmpDeviceName = null;
        String tmpAttributeName = null;
        if (args != null && args.length > 1) {
            tmpDeviceName = args[0];
            tmpAttributeName = args[1];
        }
        else {
            tmpDeviceName = "tango/tangotest/spjz_01.01";
            tmpAttributeName = "ampli";
        }

        final NumberScalarSlider f = new NumberScalarSlider();
        f.setSize(300, 300);
        f.setPreferredSize(f.getSize());
        f.setDeviceName(tmpDeviceName);
        f.setEntityName(tmpAttributeName);
        f.setEnabled(true);
        f.setConfirmation(false);
        f.setMinimum(-3);
        f.setMaximum(3);
        f.setMinorTickSpacing(1);
        f.setMajorTickSpacing(10);
        f.setStep(0.1);
        f.setPaintLabels(true);
        f.setPaintTicks(true);
        f.initDAO();

        frame.setContentPane(f);
        frame.setSize(640, 480);
        frame.setTitle(f.getClass().getName());
        frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

   * Main class, so you can have an example. You can put your own attribute
   * names in parameter
   */
  public static void main(final String[] args) {

    final IFrame frame = CometeWidgetFactory.createFrame();
    String tmpDeviceName = null;
    String tmpAttributeName = null;
    if (args != null && args.length > 1) {
      tmpDeviceName = args[0];
      tmpAttributeName = args[1];
    } else {
      tmpDeviceName = "tango/tangotest/spjz_01.01";
      tmpAttributeName = "double_image_ro";
    }

    final NumberImageViewer f = new NumberImageViewer();

    final IImageViewerListener listener = new IImageViewerListener() {

      @Override
      public void selectedPointChanged(final Point point) {
        System.out.println("selectedPointChanged=" + point);
      }

      @Override
      public void selectedValueChanged(final Number y) {
        System.out.println("selectedValueChanged=" + y);
      }

      @Override
      public void selectedXChanged(final Number x) {
        System.out.println("selectedXChanged=" + x);
      }

      @Override
      public void selectedYChanged(final Number y) {
        System.out.println("selectedYChanged=" + y);
      }

      @Override
      public void valueChanged(final NumberMatrix value) {
        System.out.println("valueChanged=" + value);
      }
    };

    f.addImageViewerListener(listener);
    f.setDeviceName(tmpDeviceName);
    f.setEntityName(tmpAttributeName);
    f.initDAO();

    /*
     * f.addRoi(new CometeRoi("MyRoi1", IRoi.RECTANGLE, 10, 90, 90, 80, 50,
     * CometeColor.BLUE)); f.addRoi(new CometeRoi("MyRoi2", IRoi.RECTANGLE,
     * 10, 100, 100, 90, 60, CometeColor.GREEN));
     */

//    f.addRoi("MyRoi1,RecTANGLE, 10, 90, 90, 80, 50,BLACK");
//    f.addRoi("MyRoi2,RECTANGLE, 10, 100, 100, 90, 60,GREEN");
//    f.addRoi("MyRoi3,OVAL, 10, 130, 180, 30, 80,GREEN");
//    f.addRoi("MyRoi4,point, 10, 20, 80, 10, 10,yellow");
//    // Bad Color
//    f.addRoi("MyRoi11,RecTANGLE, 10, 90, 90, 80, 50,BLsssUE");
//    // Bad Shape
//    f.addRoi("MyRoi111,bla, 10, 90, 90, 80, 50,blue");
//    // Bad number of value
//    f.addRoi("MyRoi1111,RecTANGLE, 10, 90, 90, 80, 50");
//
//    // Roi modification
//    f.addRoi("MyRoi2,RECTANGLE, 10, 200, 200, 90, 60,GREEN");
//
//    // Roi deletion
//    f.addRoi("MyRoi4,NONE, 10, 130, 180, 30, 80,GREEN");

    f.setShowRoiInformationTable(true);

    frame.setContentPane(f);
    frame.setSize(640, 480);
    frame.setTitle(f.getClass().getName());
    frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    f.clearDAO();
    f.initDAO();
    //f.setShowRoiInformationTable(false);
   
  }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

    /**
     * Main class, so you can have an example. You can put your own attribute names in parameter
     */
    public static void main(String[] args) {

        IFrame frame = CometeWidgetFactory.createFrame();
        String[] attributeNameList = null;
        if (args != null && args.length > 0) {
            attributeNameList = new String[] { args[0] };
        }
        else {
            attributeNameList = new String[] { "tango/tangotest/titan/float_spectrum_ro",
                    "tango/tangotest/titan/float_spectrum", "tango/tangotest/titan/double_spectrum" };
        }

        MultiNumberSpectrumViewer f = new MultiNumberSpectrumViewer();
        f.setAttributeNameList(attributeNameList);
        f.setColorArrayList(new Color[] { Color.BLUE, Color.RED, Color.CYAN });
        f.setMarkerStyleList(new int[] { IChartViewer.MARKER_BOX });
        f.setMarkerSizeList(new int[] { 5 });
        f.setDataArrayLineWidth(new int[] { 1, 2, 3 });
        f.setY1GridStyle(IChartViewer.STYLE_LONG_DASH);
        f.setAxisList(new int[] { IChartViewer.Y2 });
        f.setY1GridVisible(true);
        f.setSize(600, 600);
        f.setPreferredSize(f.getSize());
        f.initDAO();

        frame.setContentPane(f);
        frame.setSize(640, 600);
        frame.setTitle(f.getClass().getName());
        frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

    /**
     * Main class, so you can have an example. You can put your own attribute names in parameter
     */
    public static void main(String[] args) {

        IFrame frame = CometeWidgetFactory.createFrame();
        String[] attributeNameList = null;
        if (args != null && args.length > 1) {
            attributeNameList = args;
        }
        else {
            attributeNameList = new String[] {
                    "tango/tangotest/titan/boolean_scalar",
                    "tango/tangotest/titan/double_scalar", "tango/tangotest/titan/long_scalar" };
        }

        NumberScalarTrendViewer f = new NumberScalarTrendViewer();
        f.setAttributeNameList(attributeNameList);
        f.setSize(600, 600);
        f.setPreferredSize(f.getSize());
        f.initDAO();

        frame.setContentPane(f);
        frame.setSize(640, 600);
        frame.setTitle(f.getClass().getName());
        frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }
View Full Code Here

Examples of fr.soleil.comete.widget.IFrame

  /**
   * Main class, so you can have an example. You can put your own attribute names in parameter
   */
  public static void main(String[] args) {

    IFrame frame = CometeWidgetFactory.createFrame();
    String tmpDeviceName = null;
    String tmpAttributeName = null;
    if (args != null && args.length > 1) {
      tmpDeviceName = args[0];
      tmpAttributeName = args[1];
    }
    else {
      tmpDeviceName = "tango/tangotest/titan";
      tmpAttributeName = "string_image";
    }

    StringImageTable f = new StringImageTable();
    IStringTableListener listener = new IStringTableListener() {

      @Override
      public void selectedColumnChanged(int col) {
        System.out.println("selectedColumnChanged="+col);
      }

      @Override
      public void selectedRowChanged(int col) {
        System.out.println("selectedRowChanged="+col);

      }

      @Override
      public void selectedValueChanged(String value) {
        System.out.println("selectedValueChanged="+value);

      }

      @Override
      public void selectedPointChanged(Point point) {
        System.out.println("selectedPointChanged=" + point);

      }

      @Override
      public void valueChanged(AbstractMatrix<String> matrix) {
        System.out.println("valueChanged=" + matrix);
      }
    };

    f.addStringTableListener(listener);
    f.setSize(300, 300);
    f.setPreferredSize(f.getSize());
    f.setDeviceName(tmpDeviceName);
    f.setToolTipText(tmpDeviceName + "/" + tmpAttributeName);
    f.setEntityName(tmpAttributeName);
    f.initDAO();

    frame.setContentPane(f);
    frame.setSize(640, 480);
    frame.setTitle(f.getClass().getName());
    frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
  }
View Full Code Here
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.