Search in sources :

Example 96 with NodeModel

use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.

the class FilePropertiesAction method getNodeCount.

/**
 * Builts an array containing nodes form the given node on downwards.
 *
 * @param NodeModel node: The node from which on to search
 * @param boolean CountLeaves: If true only leave nodes are included in the return list,
 * otherwise all nodes from the selected on are included
 *
 * @return Returns a list of nodes
 */
private int getNodeCount(final NodeModel node, final ICondition condition) {
    int result = 0;
    final Enumeration<NodeModel> children = node.children();
    if (condition.checkNode(node)) {
        result++;
    }
    while (children.hasMoreElements()) {
        final NodeModel child = children.nextElement();
        result += getNodeCount(child, condition);
    }
    return result;
}
Also used : NodeModel(org.freeplane.features.map.NodeModel)

Example 97 with NodeModel

use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.

the class FilePropertiesAction method actionPerformed.

/**
 * Gets called when File -> Properties is selected
 */
public void actionPerformed(final ActionEvent e) {
    // variables for informations to be displayed
    final String fileNamePath, fileSavedDateTime, fileSize;
    final int fileChangesSinceSave;
    // get informations
    // if file has been saved once
    final MapModel map = Controller.getCurrentController().getMap();
    if (map.getFile() != null) {
        // fileNamePath
        fileNamePath = map.getFile().toString();
        // fleSavedDateTime as formatted string
        final Calendar c = Calendar.getInstance();
        c.setTimeInMillis(map.getFile().lastModified());
        final DateFormat df = DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL);
        fileSavedDateTime = df.format(c.getTime());
        // fileSize as formatted string
        final DecimalFormat def = new DecimalFormat();
        def.setGroupingUsed(true);
        fileSize = def.format(map.getFile().length()) + " " + TextUtils.getText("FileRevisionsDialog.file_size");
        // fileChangesSinceSave
        fileChangesSinceSave = map.getNumberOfChangesSinceLastSave();
    } else {
        fileNamePath = TextUtils.getText("FileProperties_NeverSaved");
        fileSavedDateTime = TextUtils.getText("FileProperties_NeverSaved");
        fileSize = TextUtils.getText("FileProperties_NeverSaved");
        fileChangesSinceSave = 0;
    }
    // node statistics
    final NodeModel rootNode = map.getRootNode();
    final int nodeMainBranches = rootNode.getChildCount();
    final ICondition trueCondition = new ICondition() {

        public boolean checkNode(NodeModel node) {
            return true;
        }
    };
    final ICondition isLeafCondition = new ICondition() {

        public boolean checkNode(NodeModel node) {
            return node.isLeaf();
        }
    };
    final int nodeTotalNodeCount = getNodeCount(rootNode, trueCondition);
    final int nodeTotalLeafCount = getNodeCount(rootNode, isLeafCondition);
    final Filter filter = map.getFilter();
    final int nodeTotalFiltered;
    if (filter != null && filter.getCondition() != null) {
        final ICondition matchesFilterCondition = new ICondition() {

            public boolean checkNode(NodeModel node) {
                return filter.matches(node);
            }
        };
        nodeTotalFiltered = getNodeCount(rootNode, matchesFilterCondition);
    } else {
        nodeTotalFiltered = -1;
    }
    // Multiple nodes may be selected
    final Collection<NodeModel> nodes = Controller.getCurrentController().getSelection().getSelection();
    boolean isDescendant = false;
    int nodeRelativeChildCount = 0;
    int nodeRelativeNodeCount = 0;
    int nodeRelativeLeafCount = 0;
    for (final NodeModel n : nodes) {
        nodeRelativeChildCount += n.getChildCount();
        isDescendant = false;
        // Nodes and leaf nodes are only counted once per branch
        for (NodeModel node : nodes) {
            if (n.isDescendantOf(node)) {
                isDescendant = true;
                break;
            }
        }
        if (!isDescendant) {
            nodeRelativeNodeCount += getNodeCount(n, trueCondition);
            nodeRelativeLeafCount += getNodeCount(n, isLeafCondition);
        }
    }
    final int nodeSelectedNodeCount = Controller.getCurrentController().getSelection().getSelection().size();
    // build component
    final JPanel panel = new JPanel();
    final GridBagLayout gridbag = new GridBagLayout();
    panel.setLayout(gridbag);
    panel.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createEtchedBorder(), BorderFactory.createEmptyBorder(5, 0, 5, 0)));
    final GridBagConstraints c = new GridBagConstraints();
    c.gridx = 0;
    c.gridy = 0;
    c.gridwidth = 1;
    c.ipady = 5;
    c.ipadx = 0;
    c.insets = new Insets(0, 10, 0, 10);
    c.anchor = GridBagConstraints.FIRST_LINE_START;
    // fileNamePath
    final URL imageURL = ResourceController.getResourceController().getResource("/images/filenew.png");
    final JLabel fileIcon = new JLabel(ImageIconFactory.getInstance().getImageIcon(imageURL));
    gridbag.setConstraints(fileIcon, c);
    panel.add(fileIcon);
    c.gridx = 1;
    final JLabel fileNamePathText = new JLabel(TextUtils.getText("FileProperties_FileName"));
    gridbag.setConstraints(fileNamePathText, c);
    panel.add(fileNamePathText);
    c.gridx = 2;
    final JLabel fileNamePathLabel = new JLabel(fileNamePath);
    gridbag.setConstraints(fileNamePathLabel, c);
    panel.add(fileNamePathLabel);
    // fileSize
    c.gridy++;
    c.gridx = 1;
    final JLabel fileSizeText = new JLabel(TextUtils.getText("FileProperties_FileSize"));
    gridbag.setConstraints(fileSizeText, c);
    panel.add(fileSizeText);
    c.gridx = 2;
    final JLabel fileSizeLabel = new JLabel(fileSize);
    gridbag.setConstraints(fileSizeLabel, c);
    panel.add(fileSizeLabel);
    // fileSavedDateTime
    c.gridy++;
    c.gridx = 1;
    final JLabel fileSavedDateTimeText = new JLabel(TextUtils.getText("FileProperties_FileSaved"));
    gridbag.setConstraints(fileSavedDateTimeText, c);
    panel.add(fileSavedDateTimeText);
    c.gridx = 2;
    final JLabel fileSavedDateTimeLabel = new JLabel(fileSavedDateTime);
    gridbag.setConstraints(fileSavedDateTimeLabel, c);
    panel.add(fileSavedDateTimeLabel);
    // fileChangesSinceSave
    c.gridy++;
    c.gridx = 1;
    final JLabel fileChangesSinceSaveText = new JLabel(TextUtils.getText("FileProperties_ChangesSinceLastSave"));
    gridbag.setConstraints(fileChangesSinceSaveText, c);
    panel.add(fileChangesSinceSaveText);
    c.gridx = 2;
    final JLabel fileChangesSinceSaveLabel = new JLabel(String.valueOf(fileChangesSinceSave));
    gridbag.setConstraints(fileChangesSinceSaveLabel, c);
    panel.add(fileChangesSinceSaveLabel);
    // Separator
    c.gridy++;
    c.gridx = 0;
    c.insets = new Insets(5, 10, 5, 10);
    c.ipady = 2;
    c.gridwidth = 3;
    final JSeparator js = new JSeparator(SwingConstants.HORIZONTAL);
    js.setLayout(gridbag);
    js.setBorder(BorderFactory.createEtchedBorder());
    js.setPreferredSize(new Dimension(0, 0));
    c.fill = GridBagConstraints.HORIZONTAL;
    gridbag.setConstraints(js, c);
    panel.add(js);
    // nodeTotalNodeCount
    c.gridy++;
    c.insets = new Insets(0, 10, 0, 10);
    c.ipady = 5;
    c.gridwidth = 1;
    c.gridx = 0;
    final URL imageURL2 = ResourceController.getResourceController().getResource("/images/MapStats.png");
    final JLabel MapStatsIcon = new JLabel(ImageIconFactory.getInstance().getImageIcon(imageURL2));
    gridbag.setConstraints(MapStatsIcon, c);
    panel.add(MapStatsIcon);
    c.gridx = 1;
    final JLabel nodeTotalNodeCountText = new JLabel(TextUtils.getText("FileProperties_TotalNodeCount"));
    gridbag.setConstraints(nodeTotalNodeCountText, c);
    panel.add(nodeTotalNodeCountText);
    c.gridx = 2;
    final JLabel nodeTotalNodeCountLabel = new JLabel(String.valueOf(nodeTotalNodeCount));
    gridbag.setConstraints(nodeTotalNodeCountLabel, c);
    panel.add(nodeTotalNodeCountLabel);
    // nodeTotalFiltered
    if (nodeTotalFiltered != -1) {
        c.gridy++;
        c.gridx = 1;
        final JLabel nodeTotalFilteredLabelText = new JLabel(TextUtils.getText("FileProperties_TotalFilteredCount"));
        gridbag.setConstraints(nodeTotalFilteredLabelText, c);
        panel.add(nodeTotalFilteredLabelText);
        c.gridx = 2;
        final JLabel nodeTotalFilteredLabel = new JLabel(String.valueOf(nodeTotalFiltered));
        gridbag.setConstraints(nodeTotalFilteredLabel, c);
        panel.add(nodeTotalFilteredLabel);
    }
    // nodeTotalLeafCount
    c.gridy++;
    c.gridx = 1;
    final JLabel nodeTotalLeafCountText = new JLabel(TextUtils.getText("FileProperties_TotalLeafCount"));
    gridbag.setConstraints(nodeTotalLeafCountText, c);
    panel.add(nodeTotalLeafCountText);
    c.gridx = 2;
    final JLabel nodeTotalLeafCountLabel = new JLabel(String.valueOf(nodeTotalLeafCount));
    gridbag.setConstraints(nodeTotalLeafCountLabel, c);
    panel.add(nodeTotalLeafCountLabel);
    // nodeMainBranches
    c.gridy++;
    c.gridx = 1;
    final JLabel nodeMainBranchesText = new JLabel(TextUtils.getText("FileProperties_MainBranchCount"));
    gridbag.setConstraints(nodeMainBranchesText, c);
    panel.add(nodeMainBranchesText);
    c.gridx = 2;
    final JLabel nodeMainBranchesLabel = new JLabel(String.valueOf(nodeMainBranches));
    gridbag.setConstraints(nodeMainBranchesLabel, c);
    panel.add(nodeMainBranchesLabel);
    // Separator
    c.gridy++;
    c.gridx = 0;
    c.insets = new Insets(5, 10, 5, 10);
    c.ipady = 2;
    c.gridwidth = 3;
    final JSeparator js2 = new JSeparator(SwingConstants.HORIZONTAL);
    js2.setLayout(gridbag);
    js2.setBorder(BorderFactory.createEtchedBorder());
    js2.setPreferredSize(new Dimension(0, 0));
    c.fill = GridBagConstraints.HORIZONTAL;
    gridbag.setConstraints(js2, c);
    panel.add(js2);
    // nodeRelativeNodeCount
    c.gridy++;
    c.insets = new Insets(0, 10, 0, 10);
    c.ipady = 5;
    c.gridwidth = 1;
    c.gridx = 0;
    final URL imageURL3 = ResourceController.getResourceController().getResource("/images/BranchStats.png");
    final JLabel BranchStatsIcon = new JLabel(ImageIconFactory.getInstance().getImageIcon(imageURL3));
    gridbag.setConstraints(BranchStatsIcon, c);
    panel.add(BranchStatsIcon);
    c.gridx = 1;
    final JLabel nodeRelativeNodeCountText = new JLabel(TextUtils.getText("FileProperties_BranchNodeCount"));
    gridbag.setConstraints(nodeRelativeNodeCountText, c);
    panel.add(nodeRelativeNodeCountText);
    c.gridx = 2;
    final JLabel nodeRelativeNodeCountLabel = new JLabel(String.valueOf(nodeRelativeNodeCount));
    gridbag.setConstraints(nodeRelativeNodeCountLabel, c);
    panel.add(nodeRelativeNodeCountLabel);
    // nodeRelativeLeafCount
    c.gridy++;
    c.gridx = 1;
    final JLabel nodeRelativeLeafCountText = new JLabel(TextUtils.getText("FileProperties_BranchLeafCount"));
    gridbag.setConstraints(nodeRelativeLeafCountText, c);
    panel.add(nodeRelativeLeafCountText);
    c.gridx = 2;
    final JLabel nodeRelativeLeafCountLabel = new JLabel(String.valueOf(nodeRelativeLeafCount));
    gridbag.setConstraints(nodeRelativeLeafCountLabel, c);
    panel.add(nodeRelativeLeafCountLabel);
    // nodeRelativeChildCount
    c.gridy++;
    c.gridx = 1;
    final JLabel nodeRelativeChildCountText = new JLabel(TextUtils.getText("FileProperties_NodeChildCount"));
    gridbag.setConstraints(nodeRelativeChildCountText, c);
    panel.add(nodeRelativeChildCountText);
    c.gridx = 2;
    final JLabel nodeRelativeChildCountLabel = new JLabel(String.valueOf(nodeRelativeChildCount));
    gridbag.setConstraints(nodeRelativeChildCountLabel, c);
    panel.add(nodeRelativeChildCountLabel);
    // nodeSelectedNodeCount
    c.gridy++;
    c.gridx = 1;
    final JLabel nodeSelectedNodeCountText = new JLabel(TextUtils.getText("FileProperties_NodeSelectionCount"));
    gridbag.setConstraints(nodeSelectedNodeCountText, c);
    panel.add(nodeSelectedNodeCountText);
    c.gridx = 2;
    final JLabel nodeSelectedNodeCountLabel = new JLabel(String.valueOf(nodeSelectedNodeCount));
    gridbag.setConstraints(nodeSelectedNodeCountLabel, c);
    panel.add(nodeSelectedNodeCountLabel);
    // Show dialog
    JOptionPane.showMessageDialog(UITools.getFrame(), panel, TextUtils.getText("FilePropertiesAction.text"), JOptionPane.PLAIN_MESSAGE);
}
Also used : JPanel(javax.swing.JPanel) GridBagConstraints(java.awt.GridBagConstraints) Insets(java.awt.Insets) GridBagLayout(java.awt.GridBagLayout) Calendar(java.util.Calendar) DecimalFormat(java.text.DecimalFormat) JLabel(javax.swing.JLabel) MapModel(org.freeplane.features.map.MapModel) Dimension(java.awt.Dimension) URL(java.net.URL) JSeparator(javax.swing.JSeparator) NodeModel(org.freeplane.features.map.NodeModel) Filter(org.freeplane.features.filter.Filter) DateFormat(java.text.DateFormat) ICondition(org.freeplane.features.filter.condition.ICondition)

Example 98 with NodeModel

use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.

the class LinkController method formatNodeAsHyperlink.

public boolean formatNodeAsHyperlink(final ModeController modeController, final NodeModel node) {
    final Boolean ownFlag = ownFormatNodeAsHyperlink(node);
    if (ownFlag != null)
        return ownFlag;
    Collection<IStyle> collection = LogicalStyleController.getController(modeController).getStyles(node);
    final MapStyleModel mapStyles = MapStyleModel.getExtension(node.getMap());
    for (IStyle styleKey : collection) {
        final NodeModel styleNode = mapStyles.getStyleNode(styleKey);
        if (styleNode == null) {
            continue;
        }
        final Boolean styleFlag = ownFormatNodeAsHyperlink(styleNode);
        if (styleFlag != null)
            return styleFlag;
    }
    return false;
}
Also used : IStyle(org.freeplane.features.styles.IStyle) NodeModel(org.freeplane.features.map.NodeModel) MapStyleModel(org.freeplane.features.styles.MapStyleModel)

Example 99 with NodeModel

use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.

the class NodeLinks method removeArrowlink.

public void removeArrowlink(final NodeLinkModel link) {
    final NodeModel node = link.getSource();
    for (final NodeLinkModel i : NodeLinks.getLinkExtension(node).links) {
        if (i.cloneForSource(link.getSource()).equals(link)) {
            links.remove(i);
            final MapModel map = link.getSource().getMap();
            removeLinkFromMap(map, i);
            return;
        }
    }
}
Also used : NodeModel(org.freeplane.features.map.NodeModel) MapModel(org.freeplane.features.map.MapModel)

Example 100 with NodeModel

use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.

the class IconSelectionPlugin method actionPerformed.

public void actionPerformed(final ActionEvent e) {
    final ModeController modeController = Controller.getCurrentModeController();
    ArrayList<IIconInformation> actions = new ArrayList<IIconInformation>();
    final Controller controller = Controller.getCurrentController();
    final MapModel map = controller.getMap();
    final IconRegistry iconRegistry = map.getIconRegistry();
    final ListModel usedIcons = iconRegistry.getIconsAsListModel();
    for (int i = 0; i < usedIcons.getSize(); i++) {
        final Object icon = usedIcons.getElementAt(i);
        if (icon instanceof MindIcon) {
            actions.add(new IconAction((MindIcon) icon));
        }
    }
    final MIconController mIconController = (MIconController) IconController.getController();
    for (AFreeplaneAction aFreeplaneAction : mIconController.getIconActions()) actions.add((IIconInformation) aFreeplaneAction);
    actions.add((IIconInformation) modeController.getAction("RemoveIcon_0_Action"));
    actions.add((IIconInformation) modeController.getAction("RemoveIconAction"));
    actions.add((IIconInformation) modeController.getAction("RemoveAllIconsAction"));
    final ViewController viewController = controller.getViewController();
    final IconSelectionPopupDialog selectionDialog = new IconSelectionPopupDialog(viewController.getJFrame(), actions);
    final NodeModel selected = controller.getSelection().getSelected();
    controller.getMapViewManager().scrollNodeToVisible(selected);
    selectionDialog.pack();
    UITools.setDialogLocationRelativeTo(selectionDialog, selected);
    selectionDialog.setModal(true);
    selectionDialog.show();
    final int result = selectionDialog.getResult();
    if (result >= 0) {
        final Action action = (Action) actions.get(result);
        action.actionPerformed(new ActionEvent(action, 0, NodeModel.NODE_ICON, selectionDialog.getModifiers()));
    }
}
Also used : Action(javax.swing.Action) AFreeplaneAction(org.freeplane.core.ui.AFreeplaneAction) ActionEvent(java.awt.event.ActionEvent) ArrayList(java.util.ArrayList) MindIcon(org.freeplane.features.icon.MindIcon) ModeController(org.freeplane.features.mode.ModeController) MapModel(org.freeplane.features.map.MapModel) IconSelectionPopupDialog(org.freeplane.core.ui.components.IconSelectionPopupDialog) IconController(org.freeplane.features.icon.IconController) Controller(org.freeplane.features.mode.Controller) ModeController(org.freeplane.features.mode.ModeController) ViewController(org.freeplane.features.ui.ViewController) AFreeplaneAction(org.freeplane.core.ui.AFreeplaneAction) NodeModel(org.freeplane.features.map.NodeModel) ViewController(org.freeplane.features.ui.ViewController) ListModel(javax.swing.ListModel) IIconInformation(org.freeplane.features.icon.IIconInformation) IconRegistry(org.freeplane.features.icon.IconRegistry)

Aggregations

NodeModel (org.freeplane.features.map.NodeModel)450 ModeController (org.freeplane.features.mode.ModeController)100 MapModel (org.freeplane.features.map.MapModel)53 Controller (org.freeplane.features.mode.Controller)46 MapStyleModel (org.freeplane.features.styles.MapStyleModel)46 MMapController (org.freeplane.features.map.mindmapmode.MMapController)39 MapController (org.freeplane.features.map.MapController)38 Point (java.awt.Point)37 IStyle (org.freeplane.features.styles.IStyle)36 IActor (org.freeplane.core.undo.IActor)34 IMapSelection (org.freeplane.features.map.IMapSelection)33 ArrayList (java.util.ArrayList)22 NodeView (org.freeplane.view.swing.map.NodeView)20 URI (java.net.URI)19 Color (java.awt.Color)18 Component (java.awt.Component)17 ResourceController (org.freeplane.core.resources.ResourceController)17 MModeController (org.freeplane.features.mode.mindmapmode.MModeController)16 NodeStyleController (org.freeplane.features.nodestyle.NodeStyleController)15 MTextController (org.freeplane.features.text.mindmapmode.MTextController)15