use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.
the class MIconController method install.
@Override
public void install(final ModeController modeController) {
super.install(modeController);
modeController.getMapController().addNodeChangeListener(new INodeChangeListener() {
@Override
public void nodeChanged(NodeChangeEvent event) {
final NodeModel node = event.getNode();
if (event.getProperty().equals(NodeModel.NODE_ICON) && LogicalStyleController.getController().conditionalStylesOf(node).dependOnCondition(DEPENDS_ON_ICON)) {
modeController.getMapController().delayedNodeRefresh(node, NodeModel.UNKNOWN_PROPERTY, null, null);
}
}
});
}
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 node.getFilterInfo().isMatched();
}
};
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().getIconResource("/images/filenew.png");
final JLabel fileIcon = new JLabel(IconFactory.getInstance().getIcon(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().getIconResource("/images/MapStats.png");
final JLabel MapStatsIcon = new JLabel(IconFactory.getInstance().getIcon(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().getIconResource("/images/BranchStats.png");
final JLabel BranchStatsIcon = new JLabel(IconFactory.getInstance().getIcon(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.getCurrentRootComponent(), panel, TextUtils.getText("FilePropertiesAction.text"), JOptionPane.PLAIN_MESSAGE);
}
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;
}
use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.
the class LinkController method init.
protected void init() {
createActions();
final MapController mapController = modeController.getMapController();
final ReadManager readManager = mapController.getReadManager();
LinkBuilder linkBuilder = new LinkBuilder(this);
linkBuilder.registerBy(readManager);
// this IContentTransformer is unconditional because the outcome
// (#ID_1698830792 -> Nodename) is usually wanted
final LinkTransformer textTransformer = new LinkTransformer(modeController, 10);
TextController.getController(modeController).addTextTransformer(textTransformer);
textTransformer.registerListeners(modeController);
final INodeSelectionListener listener = new INodeSelectionListener() {
public void onDeselect(final NodeModel node) {
}
public void onSelect(final NodeModel node) {
final URI link = NodeLinks.getValidLink(node);
final String linkString = (link != null ? link.toString() : null);
if (linkString != null) {
Controller.getCurrentController().getViewController().out(linkString);
}
}
};
Controller.getCurrentModeController().getMapController().addNodeSelectionListener(listener);
}
use of org.freeplane.features.map.NodeModel in project freeplane by freeplane.
the class LinkTransformer method transformContent.
public Object transformContent(Object content, MapModel map) {
if (!(content instanceof URI))
return content;
final String string = content.toString();
if (!string.startsWith("#"))
return content;
final String nodeID = string.substring(1);
final NodeModel target = map.getNodeForID(nodeID);
if (target != null) {
final String shortText = TextController.getController(modeController).getShortPlainText(target);
return new ObjectAndIcon(shortText, localLinkIcon);
} else
return content;
}
Aggregations