Search in sources :

Example 1 with AxisProperty

use of org.csstudio.opibuilder.widgets.model.XYGraphModel.AxisProperty in project yamcs-studio by yamcs.

the class XYGraphEditPart method registerAxisPropertyChangeHandlers.

private void registerAxisPropertyChangeHandlers() {
    XYGraphModel model = (XYGraphModel) getModel();
    // set prop handlers and init all the potential axes
    for (int i = 0; i < XYGraphModel.MAX_AXES_AMOUNT; i++) {
        for (AxisProperty axisProperty : AxisProperty.values()) {
            // there is no primary and y-axis property for primary axes.
            if (i < 2 && (axisProperty == AxisProperty.PRIMARY || axisProperty == AxisProperty.Y_AXIS)) {
                continue;
            }
            String propID = XYGraphModel.makeAxisPropID(axisProperty.propIDPre, i);
            IWidgetPropertyChangeHandler handler = new AxisPropertyChangeHandler(i, axisProperty);
            setPropertyChangeHandler(propID, handler);
        }
    }
    for (int i = XYGraphModel.MAX_AXES_AMOUNT - 1; i >= model.getAxesAmount(); i--) {
        for (AxisProperty axisProperty : AxisProperty.values()) {
            String propID = XYGraphModel.makeAxisPropID(axisProperty.propIDPre, i);
            model.setPropertyVisible(propID, false);
        }
    }
}
Also used : AxisProperty(org.csstudio.opibuilder.widgets.model.XYGraphModel.AxisProperty) XYGraphModel(org.csstudio.opibuilder.widgets.model.XYGraphModel) IWidgetPropertyChangeHandler(org.csstudio.opibuilder.properties.IWidgetPropertyChangeHandler)

Example 2 with AxisProperty

use of org.csstudio.opibuilder.widgets.model.XYGraphModel.AxisProperty in project yamcs-studio by yamcs.

the class XYGraphEditPart method registerAxesAmountChangeHandler.

private void registerAxesAmountChangeHandler() {
    final IWidgetPropertyChangeHandler handler = new IWidgetPropertyChangeHandler() {

        @Override
        public boolean handleChange(Object oldValue, Object newValue, IFigure refreshableFigure) {
            XYGraphModel model = (XYGraphModel) getModel();
            IXYGraph xyGraph = ((ToolbarArmedXYGraph) refreshableFigure).getXYGraph();
            int currentAxisAmount = xyGraph.getAxisList().size();
            // add axis
            if ((Integer) newValue > currentAxisAmount) {
                for (int i = 0; i < (Integer) newValue - currentAxisAmount; i++) {
                    for (AxisProperty axisProperty : AxisProperty.values()) {
                        String propID = XYGraphModel.makeAxisPropID(axisProperty.propIDPre, i + currentAxisAmount);
                        model.setPropertyVisible(propID, true);
                    }
                    xyGraph.addAxis(axisList.get(i + currentAxisAmount));
                }
            } else if ((Integer) newValue < currentAxisAmount) {
                // remove axis
                for (int i = 0; i < currentAxisAmount - (Integer) newValue; i++) {
                    for (AxisProperty axisProperty : AxisProperty.values()) {
                        String propID = XYGraphModel.makeAxisPropID(axisProperty.propIDPre, i + (Integer) newValue);
                        model.setPropertyVisible(propID, false);
                    }
                    xyGraph.removeAxis(axisList.get(i + (Integer) newValue));
                }
            }
            return true;
        }
    };
    getWidgetModel().getProperty(XYGraphModel.PROP_AXIS_COUNT).addPropertyChangeListener(new PropertyChangeListener() {

        @Override
        public void propertyChange(PropertyChangeEvent evt) {
            handler.handleChange(evt.getOldValue(), evt.getNewValue(), getFigure());
        }
    });
// setPropertyChangeHandler(XYGraphModel.PROP_AXES_AMOUNT, handler);
}
Also used : AxisProperty(org.csstudio.opibuilder.widgets.model.XYGraphModel.AxisProperty) PropertyChangeEvent(java.beans.PropertyChangeEvent) XYGraphModel(org.csstudio.opibuilder.widgets.model.XYGraphModel) ToolbarArmedXYGraph(org.eclipse.nebula.visualization.xygraph.figures.ToolbarArmedXYGraph) PropertyChangeListener(java.beans.PropertyChangeListener) IXYGraph(org.eclipse.nebula.visualization.xygraph.figures.IXYGraph) IWidgetPropertyChangeHandler(org.csstudio.opibuilder.properties.IWidgetPropertyChangeHandler) IFigure(org.eclipse.draw2d.IFigure)

Example 3 with AxisProperty

use of org.csstudio.opibuilder.widgets.model.XYGraphModel.AxisProperty in project yamcs-studio by yamcs.

the class XYGraphEditPart method doCreateFigure.

@Override
protected IFigure doCreateFigure() {
    final XYGraphModel model = getWidgetModel();
    ToolbarArmedXYGraph xyGraphFigure = new ToolbarArmedXYGraph();
    IXYGraph xyGraph = xyGraphFigure.getXYGraph();
    xyGraph.setTitle(model.getTitle());
    xyGraph.setTitleFont(CustomMediaFactory.getInstance().getFont(model.getTitleFont().getFontData()));
    xyGraph.getPlotArea().setShowBorder(model.isShowPlotAreaBorder());
    xyGraph.getPlotArea().setBackgroundColor(CustomMediaFactory.getInstance().getColor(model.getPlotAreaBackColor()));
    xyGraph.setShowLegend(model.isShowLegend());
    xyGraphFigure.setShowToolbar(model.isShowToolbar());
    xyGraphFigure.setTransparent(model.isTransprent());
    axisList = new ArrayList<>();
    axisList.add(xyGraph.getPrimaryXAxis());
    axisList.add(xyGraph.getPrimaryYAxis());
    traceList = new ArrayList<>();
    // init all axes
    for (int i = 0; i < XYGraphModel.MAX_AXES_AMOUNT; i++) {
        if (i >= 2) {
            axisList.add(new Axis("", true));
            if (i < model.getAxesAmount())
                xyGraphFigure.getXYGraph().addAxis(axisList.get(i));
        }
        for (AxisProperty axisProperty : AxisProperty.values()) {
            // there is no primary and y-axis property for primary axes.
            if (i < 2 && (axisProperty == AxisProperty.PRIMARY || axisProperty == AxisProperty.Y_AXIS)) {
                continue;
            }
            String propID = XYGraphModel.makeAxisPropID(axisProperty.propIDPre, i);
            setAxisProperty(axisList.get(i), axisProperty, model.getProperty(propID).getPropertyValue());
        }
    }
    // init all traces
    for (int i = 0; i < XYGraphModel.MAX_TRACES_AMOUNT; i++) {
        traceList.add(new Trace("", xyGraph.getPrimaryXAxis(), xyGraph.getPrimaryYAxis(), new CircularBufferDataProvider(false)));
        if (i < model.getTracesAmount()) {
            xyGraph.addTrace(traceList.get(i));
        }
        String xPVPropID = XYGraphModel.makeTracePropID(TraceProperty.XPV.propIDPre, i);
        String yPVPropID = XYGraphModel.makeTracePropID(TraceProperty.YPV.propIDPre, i);
        for (TraceProperty traceProperty : TraceProperty.values()) {
            String propID = XYGraphModel.makeTracePropID(traceProperty.propIDPre, i);
            setTraceProperty(traceList.get(i), traceProperty, model.getProperty(propID).getPropertyValue(), xPVPropID, yPVPropID);
        }
    }
    // all values should be buffered
    getPVWidgetEditpartDelegate().setAllValuesBuffered(true);
    return xyGraphFigure;
}
Also used : Trace(org.eclipse.nebula.visualization.xygraph.figures.Trace) AxisProperty(org.csstudio.opibuilder.widgets.model.XYGraphModel.AxisProperty) XYGraphModel(org.csstudio.opibuilder.widgets.model.XYGraphModel) IXYGraph(org.eclipse.nebula.visualization.xygraph.figures.IXYGraph) ToolbarArmedXYGraph(org.eclipse.nebula.visualization.xygraph.figures.ToolbarArmedXYGraph) TraceProperty(org.csstudio.opibuilder.widgets.model.XYGraphModel.TraceProperty) CircularBufferDataProvider(org.eclipse.nebula.visualization.xygraph.dataprovider.CircularBufferDataProvider) Axis(org.eclipse.nebula.visualization.xygraph.figures.Axis)

Aggregations

XYGraphModel (org.csstudio.opibuilder.widgets.model.XYGraphModel)3 AxisProperty (org.csstudio.opibuilder.widgets.model.XYGraphModel.AxisProperty)3 IWidgetPropertyChangeHandler (org.csstudio.opibuilder.properties.IWidgetPropertyChangeHandler)2 IXYGraph (org.eclipse.nebula.visualization.xygraph.figures.IXYGraph)2 ToolbarArmedXYGraph (org.eclipse.nebula.visualization.xygraph.figures.ToolbarArmedXYGraph)2 PropertyChangeEvent (java.beans.PropertyChangeEvent)1 PropertyChangeListener (java.beans.PropertyChangeListener)1 TraceProperty (org.csstudio.opibuilder.widgets.model.XYGraphModel.TraceProperty)1 IFigure (org.eclipse.draw2d.IFigure)1 CircularBufferDataProvider (org.eclipse.nebula.visualization.xygraph.dataprovider.CircularBufferDataProvider)1 Axis (org.eclipse.nebula.visualization.xygraph.figures.Axis)1 Trace (org.eclipse.nebula.visualization.xygraph.figures.Trace)1