use of org.freeplane.features.filter.Filter 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.filter.Filter in project freeplane by freeplane.
the class MapProxy method setFilter.
// Map: R/W
public void setFilter(final Closure<Boolean> closure) {
final FilterController filterController = FilterController.getCurrentFilterController();
if (closure == null) {
filterController.applyNoFiltering();
} else {
final Filter filter = new Filter(ProxyUtils.createCondition(closure, getScriptContext()), false, false, true);
filterController.applyFilter(filter, getDelegate(), true);
}
}
use of org.freeplane.features.filter.Filter in project freeplane by freeplane.
the class MapProxy method setFilter.
// Map: R/W
public void setFilter(final boolean showAncestors, final boolean showDescendants, final Closure<Boolean> closure) {
final FilterController filterController = FilterController.getCurrentFilterController();
if (closure == null) {
filterController.applyNoFiltering();
} else {
final Filter filter = new Filter(ProxyUtils.createCondition(closure, getScriptContext()), showAncestors, showDescendants, true);
filterController.applyFilter(filter, getDelegate(), true);
}
}
use of org.freeplane.features.filter.Filter in project freeplane by freeplane.
the class Slide method applyFilter.
private void applyFilter() {
MapModel map = getMap();
final ICondition condition = getEffectiveFilterCondition();
new Filter(condition, showsAncestors, showsDescendants, false).applyFilter(this, map, false);
}
use of org.freeplane.features.filter.Filter in project freeplane by freeplane.
the class ScriptApiTest method test_NodeRO_isVisible.
public void test_NodeRO_isVisible() {
map = c.newMap();
map.getRoot().createChild("first node");
map.getRoot().createChild("second node");
assertTrue("initially all nodes should be visible", firstChild().isVisible());
new Filter(new NodeContainsCondition(TextController.FILTER_NODE, "first", false), true, true, true).applyFilter(this, Controller.getCurrentController().getMap(), true);
assertTrue("first node should be matched by the filter", firstChild().isVisible());
assertFalse("second node should not be matched by the filter", map.getRoot().getChildren().get(1).isVisible());
c.setStatusInfo("filter", (String) null);
}
Aggregations