Example usage for javafx.scene.control ScrollPane ScrollPane

List of usage examples for javafx.scene.control ScrollPane ScrollPane

Introduction

In this page you can find the example usage for javafx.scene.control ScrollPane ScrollPane.

Prototype

public ScrollPane() 

Source Link

Document

Creates a new ScrollPane.

Usage

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXTZTimeTypeViewEditPane.java

public CFBamJavaFXTZTimeTypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamTZTimeTypeObj argFocus) {//www.  j  ava2  s  .co  m
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getTZTimeTypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getTZTimeTypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXUInt16TypeViewEditPane.java

public CFBamJavaFXUInt16TypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt16TypeObj argFocus) {//from   w  w w . j a v a  2 s .  c  o m
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getUInt16TypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt16TypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXUInt32TypeViewEditPane.java

public CFBamJavaFXUInt32TypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt32TypeObj argFocus) {//from www  . j  a  v a  2 s  . c om
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getUInt32TypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt32TypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXUInt64TypeViewEditPane.java

public CFBamJavaFXUInt64TypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamUInt64TypeObj argFocus) {/*from   ww w .  j  ava2  s  .  co  m*/
    super();
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getUInt64TypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getUInt64TypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXClearTopDepViewEditPane.java

public CFBamJavaFXClearTopDepViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamClearTopDepObj argFocus) {
    super();/*from  w ww.ja  v  a 2  s  .com*/
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getClearTopDepFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getClearTopDepFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXNmTokensColViewEditPane.java

public CFBamJavaFXNmTokensColViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamNmTokensColObj argFocus) {
    super();/*from  ww w.  ja  va2 s . c  om*/
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getNmTokensColFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getNmTokensColFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXNmTokensDefViewEditPane.java

public CFBamJavaFXNmTokensDefViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamNmTokensDefObj argFocus) {
    super();//from w w  w .ja v a  2  s  . c  o m
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getNmTokensDefFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getNmTokensDefFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXNmTokenTypeViewEditPane.java

public CFBamJavaFXNmTokenTypeViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamNmTokenTypeObj argFocus) {
    super();//from www  .  ja  va 2  s  . com
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getNmTokenTypeFactory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getNmTokenTypeFactory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}

From source file:io.uploader.drive.auth.webbrowser.SimpleBrowserImpl.java

public SimpleBrowserImpl(Stage stage, String url) throws IOException {

    super();/*from  ww  w. j  a v a 2s.  c  om*/

    Preconditions.checkNotNull(stage);

    this.stage = stage;
    stage.setTitle("Drive Uploader - Authentication");
    UiUtils.setStageAppSize(stage);
    Scene scene = new Scene(new Group());

    AnchorPane root = new AnchorPane();

    final WebView browser = new WebView();
    webEngine = browser.getEngine();

    /*
    Menu settingsMenu = new Menu ("Settings") ;
    MenuItem proxy = new MenuItem ("Proxy") ;
    settingsMenu.getItems().add(proxy) ;
    MenuBar menuBar = new MenuBar () ;
    menuBar.getMenus().add(settingsMenu) ;
    proxy.setOnAction(new EventHandler<ActionEvent> () {
            
     @Override
     public void handle(ActionEvent event) {
    try {
       ProxySettingDialog dlg = new ProxySettingDialog (stage, Configuration.INSTANCE) ;
       dlg.showDialog();
    } catch (IOException e) {
       logger.error("Error occurred while opening the proxy setting dialog", e);
    }
     }});*/

    FXMLLoader mainMenuLoader = new FXMLLoader(getClass().getResource("/fxml/MainMenu.fxml"));
    VBox mainMenuBar = (VBox) mainMenuLoader.load();
    AnchorPane.setTopAnchor(mainMenuBar, 0.0);
    AnchorPane.setLeftAnchor(mainMenuBar, 0.0);
    AnchorPane.setRightAnchor(mainMenuBar, 0.0);
    MainMenuController mainMenuController = mainMenuLoader.<MainMenuController>getController();
    mainMenuController.setOwner(stage);
    mainMenuController.setConfiguration(Configuration.INSTANCE);
    mainMenuController.hideAccountMenu(true);

    ScrollPane scrollPane = new ScrollPane();
    scrollPane.setContent(browser);
    scrollPane.setFitToWidth(true);
    scrollPane.setFitToHeight(true);

    if (StringUtils.isNotEmpty(url)) {
        goTo(url);
    }

    if (DriveUploader.isMacOsX()) {
        AnchorPane.setTopAnchor(scrollPane, 5.0);
    } else {
        AnchorPane.setTopAnchor(scrollPane, 35.0);
    }
    AnchorPane.setLeftAnchor(scrollPane, 5.0);
    AnchorPane.setRightAnchor(scrollPane, 5.0);
    AnchorPane.setBottomAnchor(scrollPane, 5.0);

    root.getChildren().add(mainMenuBar);
    root.getChildren().addAll(scrollPane);
    scene.setRoot(root);

    stage.setScene(scene);
}

From source file:net.sourceforge.msscodefactory.cfbam.v2_7.CFBamJavaFX.CFBamJavaFXClearSubDep1ViewEditPane.java

public CFBamJavaFXClearSubDep1ViewEditPane(ICFFormManager formManager, ICFBamJavaFXSchema argSchema,
        ICFBamClearSubDep1Obj argFocus) {
    super();//from   ww  w. j  ava  2  s .  co  m
    final String S_ProcName = "construct-schema-focus";
    if (formManager == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 1,
                "formManager");
    }
    cfFormManager = formManager;
    if (argSchema == null) {
        throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), S_ProcName, 2,
                "argSchema");
    }
    // argFocus is optional; focus may be set later during execution as
    // conditions of the runtime change.
    javafxSchema = argSchema;
    setJavaFXFocus(argFocus);
    attrPane = argSchema.getClearSubDep1Factory().newAttrPane(cfFormManager, argFocus);
    attrScrollPane = new ScrollPane();
    attrScrollPane.setFitToWidth(true);
    attrScrollPane.setHbarPolicy(ScrollBarPolicy.NEVER);
    attrScrollPane.setVbarPolicy(ScrollBarPolicy.AS_NEEDED);
    attrScrollPane.setContent(attrPane);
    eltTabPane = argSchema.getClearSubDep1Factory().newEltTabPane(cfFormManager, argFocus);
    setOrientation(Orientation.VERTICAL);
    getItems().add(attrScrollPane);
    getItems().add(eltTabPane);
}