Package tangowidget.beanproperty

Examples of tangowidget.beanproperty.SoleilIconProperty


    protected int symbolHeight = 0;
    protected SoleilIconProperty soleilIcon = null;

    public CommandBinaryButtonCometeV2() {
        super();
        soleilIcon = new SoleilIconProperty();
    }
View Full Code Here


   *
   */
    public AbstractDeviceStateLabel() {
        super();
        setOpaque(true);
        soleilIcon = new SoleilIconProperty();
        setViewLabel(false);
    }
View Full Code Here

    /**
     *
     */
    public AbstractDeviceStateButton() {
        super();
        soleilIcon = new SoleilIconProperty();
        actionView = new SoleilDeviceViewProperty();
        actionView.deviceView = actionType;
        setActionView(actionView);
        setViewLabel(false);
        addActionListener(this);
View Full Code Here

        addWidgetListener(this);
    }

    public DeviceStateButtonCometeV2(final Builder builder) {
        super();
        soleilIcon = new SoleilIconProperty();
        actionView = new SoleilDeviceViewProperty();
        actionView.deviceView = actionType;

        setDeviceName(builder.deviceName);
        setEntityName(builder.entityName);
View Full Code Here

    private void soleilIconTest() throws DevFailed {
        jf1 = new JFrame();
        initFirstDevice();

        final String imageName = "ARMO.png";
        final SoleilIconProperty soleilIcon = new SoleilIconProperty();
        soleilIcon.setSoleilIcon(imageName, 50, 30);
       
        final DeviceStateButtonCometeV2 widget = new DeviceStateButtonCometeV2.Builder(m_deviceName).buttonSymbolFileName(imageName).jframe(jf1)
                .build();
        Sleeper.SECONDS.sleep(2);
               
View Full Code Here

     *
     */
    public ApplicationTangoButton() {
        super();
        actionView = new SoleilApplicationViewProperty();
        soleilIcon = new SoleilIconProperty();
        setText(textButton);
        addActionListener(this);
    }
View Full Code Here

  protected int symbolHeight = 0;
  protected SoleilIconProperty soleilIcon = null;

  public CommandBinaryButtonCometeV2() {
    super();
    soleilIcon = new SoleilIconProperty();
  }
View Full Code Here

TOP

Related Classes of tangowidget.beanproperty.SoleilIconProperty

Copyright © 2018 www.massapicom. 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.