use of easik.ui.menu.popup.ImportSketchAction in project fql by CategoricalData.
the class ApplicationFrame method buildMenu.
/**
* Builds the menu
*/
private void buildMenu() {
final JMenuBar mainMenu;
final JMenu menuFile;
final JMenu menuEdit;
@SuppressWarnings("unused") JMenu menuAction;
final JMenu menuHelp;
mainMenu = new JMenuBar();
// Make the File Menu
menuFile = new JMenu("File");
addMenuItem(menuFile, new FileNewOverviewAction(this), KeyEvent.VK_N);
addMenuItem(menuFile, new FileOpenAction(this), KeyEvent.VK_O);
menuFile.addSeparator();
addMenuItem(menuFile, new FileSaveAction(this), KeyEvent.VK_S);
addMenuItem(menuFile, new FileSaveAsAction(this), KeyEvent.VK_S, InputEvent.SHIFT_DOWN_MASK);
menuFile.addSeparator();
_recentFilesMenu = new JMenu("Open recent...");
menuFile.add(_recentFilesMenu);
updateRecentFilesMenu();
menuFile.addSeparator();
addMenuItem(menuFile, new OverviewDocumentInfoAction(this), KeyEvent.VK_I);
menuFile.addSeparator();
addMenuItem(menuFile, new FileQuitAction(this), KeyEvent.VK_Q);
mainMenu.add(menuFile);
menuFile.setMnemonic(KeyEvent.VK_F);
menuEdit = new JMenu("Edit");
menuEdit.add(new JMenuItem(new NewSketchAction(null, _overview)));
menuEdit.add(new JMenuItem(new ImportSketchAction(null, _overview)));
menuEdit.addSeparator();
menuEdit.add(_NewViewMenuItem = new JMenuItem(new NewViewAction(_overview)));
mainMenu.add(menuEdit);
menuEdit.addMenuListener(new MenuListener() {
@Override
public void menuSelected(final MenuEvent e1) {
final Object[] selection = _overview.getSelectionCells();
_NewViewMenuItem.setEnabled((selection.length == 1) && (selection[0] instanceof SketchNode));
}
@Override
public void menuDeselected(final MenuEvent e1) {
}
@Override
public void menuCanceled(final MenuEvent e1) {
}
});
menuEdit.addSeparator();
// If
addMenuItem(menuEdit, _ProgramSettingsItem = new JMenuItem("Preferences"), KeyEvent.VK_E);
// you
// change
// this
// title,
// update
// OSX.java
_ProgramSettingsItem.setToolTipText("Set Global Easik Properties");
_ProgramSettingsItem.addActionListener(new ActionListener() {
@Override
public void actionPerformed(final ActionEvent e1) {
final ProgramSettingsUI myUI = new ProgramSettingsUI(ApplicationFrame.this);
myUI.showDialog();
}
});
menuEdit.setMnemonic(KeyEvent.VK_E);
// Create help menu
menuHelp = new JMenu("Help");
mainMenu.add(menuHelp);
menuHelp.setMnemonic(KeyEvent.VK_H);
menuHelp.add(new HelpAction());
menuHelp.add(new AboutAction());
setJMenuBar(mainMenu);
}
use of easik.ui.menu.popup.ImportSketchAction in project fql by CategoricalData.
the class GUI method doOpen.
// TODO aql file chooser does not bold the selectable files on mac see
// http://stackoverflow.com/questions/15016176/jfilechooser-showsavedialog-all-files-greyed-out
/*
protected static void saveAsAction(CodeEditor<?, ?, ?> e) {
delay();
if (e == null) {
return;
}
JFileChooser jfc = new JFileChooser(GlobalOptions.debug.general.file_path) {
@Override
public void approveSelection() {
File selectedFile = getSelectedFile();
if (selectedFile == null) {
return;
}
if (selectedFile.exists() && new Filter(e.lang()).accept(getSelectedFile())) {
int response = JOptionPane.showOptionDialog(this, "The file " + selectedFile.getName() + " already exists. Replace?", "Ovewrite file", JOptionPane.YES_NO_OPTION, JOptionPane.PLAIN_MESSAGE, null, new Object[] { "Yes", "No" }, "No");
if (response == JOptionPane.NO_OPTION) {
return;
}
}
super.approveSelection();
}
};
jfc.setAcceptAllFileFilterUsed(false);
jfc.addChoosableFileFilter(new Filter(e.lang()));
int j = jfc.showSaveDialog(null);
if (j == JFileChooser.CANCEL_OPTION) {
return;
}
File f = jfc.getSelectedFile();
if (f == null) {
return;
}
if (!jfc.getSelectedFile().getAbsolutePath().endsWith("." + e.lang().fileExtension())) {
f = new File(jfc.getSelectedFile() + "." + e.lang().fileExtension());
}
files.put(e.id, f);
titles.put(e.id, f.getName());
doSave(f, e.getText(), e.id);
}
*/
private static void doOpen(File f, Language lang) {
String s = GuiUtil.readFile(f.getAbsolutePath());
if (s == null) {
return;
}
// TODO AQL may not be enough the \r make get added by output stream
s = s.replace("\r", "");
if (lang.equals(Language.EASIK)) {
Easik.getInstance().getFrame().getOverview().openOverview(f);
return;
} else if (lang.equals(Language.SKETCH)) {
new ImportSketchAction(new Point(0, 0), Easik.getInstance().getFrame().getOverview()).actionPerformed0(f);
return;
}
Integer i = newAction(f.getName(), s, lang);
files.put(i, f);
}
use of easik.ui.menu.popup.ImportSketchAction in project fql by CategoricalData.
the class ApplicationFrame method buildPopupMenu.
/**
* Creates the popup menu
*/
private void buildPopupMenu() {
_canvasPopupMenu.add(_AddSketchPopItem = new JMenuItem(new NewSketchAction(_popupPosition, _overview)));
_canvasPopupMenu.add(_ImportSketchPopItem = new JMenuItem(new ImportSketchAction(_popupPosition, _overview)));
_sketchPopupMenu.add(_OpenSketchPopDefItem = new JMenuItem(new OpenSketchAction(_overview, true)));
_sketchPopupMenu.add(_OpenSketchManipulatePopDefItem = new JMenuItem(new OpenSketchDataAction(_overview, true)));
_sketchPopupMenu.add(_OpenSketchPopItem = new JMenuItem(new OpenSketchAction(_overview)));
_sketchPopupMenu.add(_OpenSketchManipulatePopItem = new JMenuItem(new OpenSketchDataAction(_overview)));
_sketchPopupMenu.addSeparator();
_sketchPopupMenu.add(_NewViewPopItem = new JMenuItem(new NewViewAction(_overview)));
_sketchPopupMenu.addSeparator();
_sketchPopupMenu.add(_RenamePopItem = new JMenuItem(new RenameInOverviewAction(_overview)));
_sketchPopupMenu.add(_DeleteSketchPopItem = new JMenuItem(new DeleteFromOverviewAction(_overview)));
_sketchPopupMenu.addSeparator();
_sketchPopupMenu.add(_ExportSketchPopItem = new JMenuItem(new SketchExportAction(this)));
_sketchPopupMenu.add(_ExportSketchDatabasePopItem = new JMenuItem(new ExportDatabaseAction(this, null)));
// _sketchPopupMenu.add(_ExportSketchImage = new JMenuItem(new
// ExportImageAction<SketchFrame, SketchGraphModel, Sketch, EntityNode,
// SketchEdge>(null)));
_viewPopupMenu.add(_OpenViewPopItem = new JMenuItem(new OpenViewAction(_overview)));
_viewPopupMenu.add(_RenameViewPopItem = new JMenuItem(new RenameInOverviewAction(_overview)));
_viewPopupMenu.add(_DeleteViewPopItem = new JMenuItem(new DeleteFromOverviewAction(_overview)));
_viewPopupMenu.addSeparator();
// _viewPopupMenu.add(_ExportViewImage = new JMenuItem(new
// ExportImageAction<ViewFrame, ViewGraphModel, View, QueryNode,
// View_Edge>(null)));
_mixedPopupMenu.add(_DeleteMixedPopItem = new JMenuItem(new DeleteFromOverviewAction(_overview)));
_overview.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(final MouseEvent evt) {
mouseReleased(evt);
}
@Override
public void mouseReleased(final MouseEvent evt) {
if (evt.isPopupTrigger()) {
final Object rightClickedOn = _overview.getFirstCellForLocation(evt.getX(), evt.getY());
// the current selection
if (rightClickedOn != null) {
final Object[] selection = _overview.getSelectionCells();
if (!Arrays.asList(selection).contains(rightClickedOn)) {
_overview.setSelectionCell(_overview.getFirstCellForLocation(evt.getX(), evt.getY()));
}
} else {
_overview.setSelectionCells(new Object[0]);
}
_popupPosition.setLocation(evt.getX(), evt.getY());
final JPopupMenu menu = setPopMenu();
if (menu != null) {
menu.show(evt.getComponent(), evt.getX(), evt.getY());
}
}
}
});
}
Aggregations