|
@@ -1,5 +1,7 @@
|
|
|
package com.persagy.filemove.app;
|
|
|
|
|
|
+import com.persagy.filemove.dialog.FileMoveHelpDialog;
|
|
|
+import com.persagy.filemove.dialog.MessageDialog;
|
|
|
import com.persagy.filemove.dto.SagaFileMoveDTO;
|
|
|
import com.persagy.filemove.dto.WorkerFactory;
|
|
|
import com.persagy.filemove.service.SagaFileMoveService;
|
|
@@ -26,6 +28,8 @@ import java.util.LinkedHashMap;
|
|
|
public class SagaFileMoveApp extends Application {
|
|
|
private static final Logger log = LoggerFactory.getLogger(SagaFileMoveApp.class);
|
|
|
|
|
|
+ private static final String aboutInfo = "Version:1.0\nJDK:1.8\nAuthor:cuixubin@persagy.com";
|
|
|
+
|
|
|
private static int appWidth = 640;
|
|
|
private static int appHeight = 560;
|
|
|
public static SagaFileMoveDTO dto = new SagaFileMoveDTO();
|
|
@@ -79,7 +83,7 @@ public class SagaFileMoveApp extends Application {
|
|
|
private ChoiceBox cbImgFromApiType = new ChoiceBox(FXCollections.observableArrayList(apiTypes));
|
|
|
|
|
|
/** 文件服务To地址 */
|
|
|
- private TextField tfImgToURL = new TextField("http://27.115.36.114:9909/image-service");
|
|
|
+ private TextField tfImgToURL = new TextField("http://127.0.0.1:6666/image-service");
|
|
|
/** 文件服务To的systemId */
|
|
|
private TextField tfImgToSysId = new TextField(sysId_dpf);
|
|
|
/** 文件服务To的secret */
|
|
@@ -433,10 +437,19 @@ public class SagaFileMoveApp extends Application {
|
|
|
private Menu getHelpMenu() {
|
|
|
// 菜单项
|
|
|
MenuItem mi_help = new MenuItem("Help");
|
|
|
+ mi_help.setOnAction((e)->{
|
|
|
+ new FileMoveHelpDialog().showAndWait();
|
|
|
+ });
|
|
|
+
|
|
|
MenuItem mi_about = new MenuItem("About");
|
|
|
+ mi_about.setOnAction((e)->{
|
|
|
+ new MessageDialog("About", aboutInfo, 300, 120).showAndWait();
|
|
|
+ });
|
|
|
SeparatorMenuItem seline = new SeparatorMenuItem();
|
|
|
|
|
|
+
|
|
|
Menu helpMenu = new Menu("Help");
|
|
|
+
|
|
|
helpMenu.getItems().addAll(mi_help, seline, mi_about);
|
|
|
return helpMenu;
|
|
|
}
|