From: Florian L. <fle...@us...> - 2005-09-29 14:48:36
|
Update of /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/views In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20554/src/net/sf/magicmap/client/views Modified Files: MapView.java OutlineView.java Log Message: komplette umstruckturierung der Anzeige optionen Index: OutlineView.java =================================================================== RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/views/OutlineView.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** OutlineView.java 21 Jun 2005 23:38:18 -0000 1.3 --- OutlineView.java 29 Sep 2005 14:48:19 -0000 1.4 *************** *** 224,228 **** OutlineNode on = findOutlineNode(node); if (on != null){ ! treemodel.nodeChanged(on); } else{ System.out.println("Node not found in tree view: " + node); --- 224,228 ---- OutlineNode on = findOutlineNode(node); if (on != null){ ! treemodel.reload(on); } else{ System.out.println("Node not found in tree view: " + node); Index: MapView.java =================================================================== RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/views/MapView.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** MapView.java 31 Aug 2005 11:59:16 -0000 1.11 --- MapView.java 29 Sep 2005 14:48:19 -0000 1.12 *************** *** 93,97 **** private NodeModelMetric metric; - private boolean showEdgesBetweenLocations = true; double CALIBRATION_FACTOR_AP = 1.0; // Kanten zu APs kalibrieren --- 93,96 ---- *************** *** 100,109 **** int lcc = 0; ! boolean showEdges = true; ! private boolean showAccessPoints = true; - private boolean showLocations = true; - private boolean showClients = true; --- 99,106 ---- int lcc = 0; ! private boolean showEdgesBetweenLocations = false; ! private boolean showEdges = false; private boolean showAccessPoints = true; private boolean showLocations = true; private boolean showClients = true; *************** *** 1067,1070 **** --- 1064,1070 ---- } + public boolean isShowEdges(){ + return showEdges; + } /** * @param showEdges *************** *** 1106,1109 **** --- 1106,1114 ---- } + + public boolean isShowAccessPoints(){ + return showAccessPoints; + } + /** * @param b *************** *** 1113,1117 **** } ! /** * @param b --- 1118,1126 ---- } ! ! public boolean isShowLocations(){ ! return showLocations; ! } ! /** * @param b *************** *** 1122,1125 **** --- 1131,1137 ---- } + public boolean isShowClients(){ + return showClients; + } /** * @param b |