2013-12-18 17 views
1

我在擴展javafx.stage.Popup以顯示彈出消息。整個應用程序可以在Windows和Ubuntu上正常運行,但Mac Popups會在應用程序全屏時進入當前階段。我已經嘗試使用z-index,.toFront(),設置所有者窗口和所有內容。但彈出窗口只是從不顯示! javafx.stage.FileChooser也是一樣的問題。由於應用程序必須始終處於全屏狀態,因此解決方案是什麼?Popup僅在Mac上落後舞臺,但不能在全屏Windows/Linux上播放

編輯:在另一個頁面中,文本框的全屏光標閃爍,但沒有收到輸入的按鍵!而這發生在全屏幕只有!如果我失去全屏,文本字段會收到鍵入的鍵。很煩人:(請建議我是否應該提交錯誤或東西

我已經想通了解決方法彈出但DirectoryChooser /文件選擇問題仍然存在

這是一個擴展彈出類:

public class PopupDisplay extends Popup 
{ 
String Title=new String("Information"); 
String Prompt=new String("Prompt Text"); 
@FXML 
private AnchorPane anchorMain; 
@FXML 
private Label lblTitle=new Label(); 
@FXML 
private Font x1; 
@FXML 
private Label lblPrompt=new Label(); 
@FXML 
private Button btnOk; 
@FXML 
private GridPane gridMain; 
@FXML 
private HBox hboxTitle; 
static PopupDisplay instance; 
private ColorDxDesktop application; 
public void show(Stage stage, String titleKey,String promptKey, Locale enLocale) 
{ 
    AnchorPane root; 
    FXMLLoader loader=new FXMLLoader(); 
    ResourceBundle rb; 

    Prompt=promptKey; 
    Title=titleKey; 
    try 
    { 
     loader.setLocation(getClass().getResource("/com/sc/colordx/resources/")); 
     rb=ResourceBundle.getBundle("com.sc.colordx.resources.lang.Popup",application.getLocale()); 

     loader.setResources(rb); 
     PopupController.prompt=Prompt; 
     PopupController.title=Title; 

     root = (AnchorPane)loader.load(getClass().getResource("/com/sc/colordx/presentation/Popup.fxml").openStream()); 
     getScene().setRoot(root); 
     PopupController popupController=loader.getController(); 



     Rectangle2D screenBounds = Screen.getPrimary().getVisualBounds(); 
     root.setPrefWidth(application.getStage().getWidth()); 
     root.setPrefHeight(application.getStage().getHeight()); 
     Node n=root.getChildren().get(0); 
     n.setLayoutX(screenBounds.getWidth()/2.5); 
     n.setLayoutY((screenBounds.getHeight()/2.5)); 
     //root.toFront(); 

     show(stage); 


    } 
    catch (IOException ex) 
    { 
     ex.printStackTrace(); 
    } 
} 


public static PopupDisplay getInstance() 
{ 
    return instance; 
} 
@FXML 
private void hide(MouseEvent event) 
{ 
    this.hide(); 
} 
public void showInProgress() 
{ 
    PopupController.showInProgress(); 


} 

這是彈出的FXML:

<?xml version="1.0" encoding="UTF-8"?> 

<?import java.lang.*?> 
<?import java.net.*?> 
<?import java.util.*?> 
<?import javafx.geometry.*?> 
<?import javafx.scene.*?> 
<?import javafx.scene.control.*?> 
<?import javafx.scene.layout.*?> 
<?import javafx.scene.text.*?> 

<AnchorPane id="AnchorPane" fx:id="anchorMain" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" prefHeight="768.0" prefWidth="1024.0" styleClass="mainFxmlClass" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2" fx:controller="com.sc.colordx.controller.PopupController"> 
    <children> 
    <GridPane id="GridPane" fx:id="gridMain" alignment="CENTER" layoutX="309.0" layoutY="330.0" minWidth="400.0" style="-fx-background-color:black;" styleClass="visibleWindow, gridpane, gridpane-boder" vgap="20.0"> 
     <children> 
     <Label fx:id="lblPrompt" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefWidth="271.0" text="%keyPrompt" textFill="WHITE" textOverrun="CLIP" wrapText="true" GridPane.columnIndex="0" GridPane.halignment="CENTER" GridPane.rowIndex="1" GridPane.valignment="CENTER"> 
      <font> 
      <Font name="System Bold" size="14.0" fx:id="x1" /> 
      </font> 
      <GridPane.margin> 
      <Insets bottom="6.0" left="6.0" right="6.0" top="6.0" /> 
      </GridPane.margin> 
     </Label> 
     <HBox id="HBox" fx:id="hboxButtons" alignment="CENTER" spacing="7.0" style="" styleClass="hbox" GridPane.columnIndex="0" GridPane.hgrow="ALWAYS" GridPane.rowIndex="2" GridPane.vgrow="ALWAYS"> 
      <children> 
      <Button fx:id="btnOk" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onMouseClicked="#exitOkay" text="%keyYes" HBox.hgrow="ALWAYS" /> 
      <Button id="btnOk" fx:id="btnCancel" maxWidth="1.7976931348623157E308" mnemonicParsing="false" onMouseClicked="#hide" text="%keyNo" HBox.hgrow="ALWAYS" /> 
      </children> 
      <padding> 
      <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" /> 
      </padding> 
      <stylesheets> 
      <URL value="@../resources/css/Popup.css" /> 
      </stylesheets> 
     </HBox> 
     <ProgressIndicator fx:id="progress" cache="true" cacheHint="QUALITY" progress="0.0" visible="false" GridPane.columnIndex="0" GridPane.rowIndex="1"> 
      <GridPane.margin> 
      <Insets left="300.0" /> 
      </GridPane.margin> 
     </ProgressIndicator> 
     </children> 
     <columnConstraints> 
     <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" /> 
     </columnConstraints> 
     <padding> 
     <Insets /> 
     </padding> 
     <rowConstraints> 
     <RowConstraints minHeight="10.0" vgrow="SOMETIMES" /> 
     <RowConstraints minHeight="10.0" vgrow="SOMETIMES" /> 
     <RowConstraints minHeight="10.0" vgrow="SOMETIMES" /> 
     </rowConstraints> 
     </GridPane> 
     </children> 
     <stylesheets> 
     <URL value="@../resources/css/Popup.css" /> 
     </stylesheets> 
</AnchorPane> 

回答

1

我用彈出越來越而在Mac上運行JavaFX應用程序所以我所做的事情一樣被創建了新的舞臺(虛擬/不可見的高度和寬度= 0)與initStyle(StageStyle.UTILITY);和綁定彈出。每次我需要顯示彈出窗口時,我使用dummyStage.show();popup.toFront();,所以它會導致一個技巧來處理我在mac中的問題。

+0

是的我知道解決方法。例如。我正在使用stackpane並將當前階段的根目錄和彈出窗口的根目錄添加到它以顯示彈出窗口。但我需要一個使用Popup本身的適當解決方案,因爲我無法對FileChooser應用解決方法。 –

相關問題