use of javafx.scene.control.MenuItem in project Gargoyle by callakrsos.
the class SvnChagnedCodeComposite method createContextMenu.
/**
* 차트 위치를 복구하는 기능을 처리.
*
* @작성자 : KYJ
* @작성일 : 2016. 7. 20.
* @param e
*/
// public void sceneOnKeyPressed(KeyEvent e) {
// if (e.getCode() == KeyCode.ESCAPE) {
//
// setRight(null);
// e.consume();
// }
// }
/**
* @작성자 : KYJ
* @작성일 : 2016. 7. 20.
*/
private void createContextMenu() {
MenuItem miViewHistory = new MenuItem("View History");
miViewHistory.setOnAction(ev -> {
Node ownerNode = contextMenu.getOwnerNode();
System.out.println(ownerNode);
Node center = getCenter();
if ((ownerNode != null && ownerNode instanceof Region) && (center != null && center == piChartChagendCode)) {
Data userData = (Data) contextMenu.getUserData();
if (userData != null) {
String relativePath = userData.getName();
ListView<GargoyleSVNLogEntryPath> createHistoryListView = supplier.createHistoryListView(relativePath);
FxUtil.showPopOver(ownerNode, createHistoryListView);
}
}
});
contextMenu = new ContextMenu(miViewHistory);
}
use of javafx.scene.control.MenuItem in project Gargoyle by callakrsos.
the class DAOLoaderController method initialize.
@FXML
public void initialize() {
txtSrchTable.setText("*");
colSrchClassName.setCellValueFactory(param -> new SimpleObjectProperty<Object>(param.getValue().get("CLASS_NAME").toString()));
colSrchPackageName.setCellValueFactory(param -> new SimpleObjectProperty<Object>(param.getValue().get("PACKAGE_NAME").toString()));
MenuItem history = new MenuItem("history");
history.setOnAction(this::menuHistoryOnAction);
MenuItem menuRemove = new MenuItem("remove");
menuRemove.setOnAction(this::menuRemoveOnAction);
tbSrchDao.setContextMenu(new ContextMenu(history, menuRemove));
}
use of javafx.scene.control.MenuItem in project Gargoyle by callakrsos.
the class SystemLayoutViewController method menuRunPmdOnAction.
/**
* PMD 실행처리
* @작성자 : KYJ
* @작성일 : 2016. 10. 4.
* @param e
*/
public void menuRunPmdOnAction(ActionEvent e) {
MenuItem source = (MenuItem) e.getSource();
File file = (File) source.getUserData();
if (file != null && file.exists()) {
String name = file.getName();
PMDCheckedListComposite parent = new PMDCheckedListComposite(file);
loadNewSystemTab(String.format("PMD - %s", name), (CloseableParent<BorderPane>) parent);
parent.runAsynch();
}
}
use of javafx.scene.control.MenuItem in project Gargoyle by callakrsos.
the class SystemLayoutViewController method initialize.
@FXML
public void initialize() {
// 쿼리 리스너를 등록
DbUtil.registQuertyListener(this);
try {
FXMLLoader loader = FxUtil.createNewFxmlLoader();
loader.setLocation(SystemLayoutViewController.class.getResource("DAOLoaderView.fxml"));
TitledPane titledPane = loader.load();
VBox.setVgrow(titledPane, Priority.ALWAYS);
accordionItems.getChildren().add(titledPane);
DAOLoaderController controller = loader.getController();
controller.setSystemLayoutViewController(this);
} catch (IOException e1) {
e1.printStackTrace();
}
SharedMemory.setSystemLayoutView(this);
SharedMemory.setWorkspaceTab(tabPanWorkspace);
// tab key에 대한 이벤트 처리 등록....
SharedMemory.getPrimaryStage().addEventHandler(KeyEvent.ANY, event -> {
boolean isCloseALLtabKeyCode = event.isControlDown() && event.isShiftDown() && KeyCode.W == event.getCode();
boolean isTabMoveCode = event.isControlDown() && isNumberCode(event.getCode());
ObservableList<DockTab> tabs = tabPanWorkspace.getTabs();
if (isCloseALLtabKeyCode) {
LOGGER.debug("CLOSE ALL TABS...");
for (int i = tabs.size() - 1; i > 0; i--) {
tabs.remove(i);
}
} else if (isTabMoveCode) {
int tabIndex = Integer.parseInt(event.getCode().getName());
if (tabIndex > 0 && tabs.size() < tabIndex)
return;
LOGGER.debug("MOVE TAB" + event.getCode().getName());
tabPanWorkspace.getSelectionModel().select(tabIndex - 1);
}
});
String baseDir = ResourceLoader.getInstance().get(ResourceLoader.BASE_DIR);
selectDirFile = new File(baseDir);
createNewTreeViewMenuItems();
webvWelcome.getEngine().setJavaScriptEnabled(true);
webvWelcome.getEngine().load(HOME_URL);
txtUrl.addEventHandler(KeyEvent.KEY_PRESSED, event -> {
if (KeyCode.ENTER == event.getCode()) {
webvWelcome.getEngine().load(txtUrl.getText());
}
});
btnUrlSearch.addEventHandler(MouseEvent.MOUSE_CLICKED, event -> {
if (event.getClickCount() >= 1) {
webvWelcome.getEngine().load(txtUrl.getText());
}
});
webvWelcome.setOnKeyPressed(key -> {
if (key.getCode() == KeyCode.F12) {
FxUtil.createStageAndShow("Simple Web Console", new WebViewConsole(webvWelcome));
}
});
treeProjectFile.setRoot(createNewTree(selectDirFile));
treeProjectFile.setShowRoot(false);
// 트리 컨테스트 요청 이벤트
treeProjectFile.setOnContextMenuRequested(this::treeProjectFileOnContextMenuRequested);
// 트리 마우스 이벤트
treeProjectFile.setOnMouseClicked(this::treeProjectFileOnMouseClick);
// 트리 키 이벤트
treeProjectFile.addEventHandler(KeyEvent.KEY_PRESSED, this::treeProjectFileOnKeyPressed);
/** 플러그인들을 로드함. **/
Platform.runLater(new Runnable() {
@Override
public void run() {
List<JarWrapper> load = PluginLoader.getInstance().load();
load.stream().forEach(jarWrapper -> {
try {
String displayMenuName = jarWrapper.getDisplayMenuName();
MenuItem pluginMenu = new MenuItem(displayMenuName);
pluginMenu.setUserData(jarWrapper);
pluginMenu.setOnAction(event -> {
JarWrapper jar = (JarWrapper) pluginMenu.getUserData();
try {
Class<?> nodeClass = jar.getNodeClass();
Object newInstance = jar.loader.loadClass(nodeClass.getName()).newInstance();
if (newInstance instanceof CloseableParent<?>) {
loadNewSystemTab(jar.getDisplayMenuName(), (CloseableParent<?>) newInstance);
} else {
loadNewSystemTab(jar.getDisplayMenuName(), (Parent) newInstance, SkinManager.getInstance().getJavafxDefaultSkin());
}
} catch (Exception e) {
LOGGER.error("regist fail plugin.");
LOGGER.error(ValueUtil.toString(e));
}
});
try {
Class<GagoyleParentBeforeLoad> setBeforeParentLoadListenerClass = jarWrapper.getSetOnParentBeforeLoadedListenerClass();
if (setBeforeParentLoadListenerClass != null)
setOnbeforeParentLoad(setBeforeParentLoadListenerClass.newInstance());
} catch (Exception e) {
LOGGER.error("regist fail 'GagoyleParentBeforeLoad' listener.");
}
try {
Class<GagoyleParentOnLoaded> addOnParentLoadedListenerClass = jarWrapper.getAddOnParentLoadedListenerClass();
if (addOnParentLoadedListenerClass != null)
addOnParentLoadedListener(addOnParentLoadedListenerClass.newInstance());
} catch (Exception e) {
LOGGER.error("regist fail 'GagoyleParentOnLoaded' listener.");
}
menuPlugins.getItems().add(pluginMenu);
} catch (Exception e) {
LOGGER.debug(ValueUtil.toString(e));
}
});
}
});
//tab image 아이콘 처리
try (InputStream is = getClass().getResourceAsStream("/META-INF/images/eclipse/eview16/packages.gif")) {
tabPackageExplorer.setGraphic(new ImageView(new Image(is)));
} catch (IOException e) {
e.printStackTrace();
}
tabPanWorkspace.getTabs().addListener(dockTabCloseListener);
}
use of javafx.scene.control.MenuItem in project Gargoyle by callakrsos.
the class DaoWizardViewController method tbMappingsContextMenu.
private void tbMappingsContextMenu() {
MenuItem menuToVoEditor = new MenuItem("To VO Editor");
menuToVoEditor.setOnAction(this::menuToVoEditorOnAction);
// 사실 이 항목은 필요없을것같음.
// MenuItem addMenuItem = new MenuItem("Add");
// addMenuItem.setOnAction(this::addMenuParamOnAction);
// MenuItem deleteMenuItem = new MenuItem("Delete");
// deleteMenuItem.setOnAction(this::deleteMenuParamOnAction);
tbMappings.setContextMenu(new ContextMenu(menuToVoEditor));
}
Aggregations