Package net.sf.jiga.xtended.ui

Examples of net.sf.jiga.xtended.ui.InstructionsPane.addStep()


        StatusPane toggleStep = new StatusPane(pane);
        content.add(pane, BorderLayout.CENTER);
        content.add(toggleStep, BorderLayout.SOUTH);

// add one new step in the panel store
        int step = pane.addStep();

// add one Text Area
        pane.addStepComponent(step, new JTextArea("Go to next step and select the images files you want to convert."));

// add another step in the panel store
View Full Code Here


// add one Text Area
        pane.addStepComponent(step, new JTextArea("Go to next step and select the images files you want to convert."));

// add another step in the panel store
        step = pane.addStep();
        Container owner = this.getContentPane();

// here is the file chooser panel as an InstructionSet
        final FileChooserPane jfc = new FileChooserPane(owner, "");
        jfc.setModeOpen(true);
View Full Code Here

                sw_convert.setText("Convert to " + getSelectedConversion());
            }
        });

// add one more step with 2 columns of components for the layout
        step = pane.addStep(2);

// each added component is given with row column span as arguments
        pane.addStepComponent(step, new JLabel("This value will zoom the image to choosen scale (%):"), 1, 2);
        pane.addStepComponent(step, sw_zoom = new JSpinner(new SpinnerNumberModel(100, 1, 500, 1)), 1, 2);
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.