Source Code Cross Referenced for CVSFileNodeTree.java in  » Source-Control » gruntspud » gruntspud » ui » view » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Source Control » gruntspud » gruntspud.ui.view 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Gruntspud Copyright (C) 2002 Brett Smith. Written by: Brett Smith
003:         * <t_magicthize@users.sourceforge.net> This program is free software; you can
004:         * redistribute it and/or modify it under the terms of the GNU Library General
005:         * Public License as published by the Free Software Foundation; either version
006:         * 2 of the License, or (at your option) any later version. This program is
007:         * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
008:         * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
009:         * PARTICULAR PURPOSE. See the GNU Library General Public License for more
010:         * details. You should have received a copy of the GNU Library General Public
011:         * License along with this program; if not, write to the Free Software
012:         * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
013:         */
014:
015:        package gruntspud.ui.view;
016:
017:        import gruntspud.CVSFileNode;
018:        import gruntspud.Constants;
019:        import gruntspud.GruntspudContext;
020:        import gruntspud.ui.FileNameTextField;
021:
022:        import java.awt.AWTEvent;
023:        import java.awt.Rectangle;
024:        import java.util.Collections;
025:        import java.util.Vector;
026:
027:        import javax.swing.Icon;
028:        import javax.swing.JTree;
029:        import javax.swing.ToolTipManager;
030:        import javax.swing.plaf.TreeUI;
031:        import javax.swing.plaf.basic.BasicTreeUI;
032:        import javax.swing.tree.DefaultTreeModel;
033:        import javax.swing.tree.TreeCellRenderer;
034:        import javax.swing.tree.TreePath;
035:        import javax.swing.tree.TreeSelectionModel;
036:
037:        import com.sun.java.swing.plaf.windows.WindowsTreeUI;
038:        import com.sun.java.swing.plaf.windows.WindowsTreeUI.WindowsTreeCellRenderer;
039:
040:        /**
041:         * Description of the Class
042:         * 
043:         * @author magicthize @created 26 May 2002
044:         */
045:        public class CVSFileNodeTree extends JTree {
046:
047:            private GruntspudContext context;
048:
049:            /**
050:             * Constructor for the CVSFileNodeTree object
051:             */
052:            public CVSFileNodeTree(CVSFileNode root, String textMask,
053:                    GruntspudContext context) {
054:                super (new FilteredTreeModel(root));
055:                this .context = context;
056:
057:                //
058:                setShowsRootHandles(true);
059:                setTreeStyle();
060:                setCellRenderer(new CVSFileNodeTreeCellRenderer(context));
061:                FileNameTextField.setFocusable(this , true);
062:                setAutoscrolls(false);
063:                setExpandsSelectedPaths(true);
064:                setRowHeight(16);
065:                ToolTipManager.sharedInstance().registerComponent(this );
066:                getSelectionModel().setSelectionMode(
067:                        TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION);
068:
069:                enableEvents(AWTEvent.KEY_EVENT_MASK);
070:
071:                setHideFileNodes(context.getHost().getBooleanProperty(
072:                        Constants.OPTIONS_DISPLAY_HIDE_FILES_IN_TREE, false));
073:                ((CVSFileNodeTreeCellRenderer) getCellRenderer())
074:                        .setShowSubstTypes(context
075:                                .getHost()
076:                                .getBooleanProperty(
077:                                        Constants.OPTIONS_DISPLAY_SUBST_TYPES_IN_TREE,
078:                                        true));
079:                ;
080:                ((CVSFileNodeTreeCellRenderer) getCellRenderer())
081:                        .setHighlight(context
082:                                .getHost()
083:                                .getBooleanProperty(
084:                                        Constants.OPTIONS_DISPLAY_HIGHLIGHT_READ_ONLY_AND_MISSING_FILES,
085:                                        true));
086:                ((CVSFileNodeTreeCellRenderer) getCellRenderer())
087:                        .setTextMask(textMask);
088:                String lineStyle = context.getHost().getProperty(
089:                        Constants.OPTIONS_DISPLAY_EXPLORER_LINE_STYLE, "None");
090:                Constants.UI_LOG.debug("Line style is " + lineStyle);
091:                putClientProperty("JTree.lineStyle", lineStyle);
092:            }
093:
094:            private void setTreeStyle() {
095:                Icon expanded = context.getHost().getIcon(
096:                        Constants.ICON_TOOL_SMALL_DEFAULT_TREE_EXPANDED);
097:                Icon collapsed = context.getHost().getIcon(
098:                        Constants.ICON_TOOL_SMALL_DEFAULT_TREE_COLLAPSED);
099:                if (expanded != null && collapsed != null) {
100:                    javax.swing.plaf.ComponentUI treeUI = getUI();
101:                    if (treeUI instanceof  javax.swing.plaf.basic.BasicTreeUI) {
102:                        ((javax.swing.plaf.basic.BasicTreeUI) treeUI)
103:                                .setExpandedIcon(expanded);
104:                        ((javax.swing.plaf.basic.BasicTreeUI) treeUI)
105:                                .setCollapsedIcon(collapsed);
106:                        ((javax.swing.plaf.basic.BasicTreeUI) treeUI)
107:                                .setLeftChildIndent(6);
108:                        ((javax.swing.plaf.basic.BasicTreeUI) treeUI)
109:                                .setRightChildIndent(8);
110:                    }
111:                }
112:            }
113:
114:            public void updateUI() {
115:                super .updateUI();
116:                if (context != null) {
117:                    setTreeStyle();
118:                }
119:            }
120:
121:            /**
122:             * DOCUMENT ME!
123:             * 
124:             * @return DOCUMENT ME!
125:             */
126:            public boolean isHideFileNodes() {
127:                return ((FilteredTreeModel) getModel()).isHideFileNodes();
128:            }
129:
130:            /**
131:             * DOCUMENT ME!
132:             * 
133:             * @param hideFileNodes
134:             *            DOCUMENT ME!
135:             */
136:            public void setHideFileNodes(boolean hideFileNodes) {
137:                ((FilteredTreeModel) getModel())
138:                        .setHideFileNodes(hideFileNodes);
139:            }
140:
141:            /**
142:             * Gets the selectedFileNode attribute of the CVSFileNodeTree object
143:             * 
144:             * @return The selectedFileNode value
145:             */
146:            public CVSFileNode getSelectedFileNode() {
147:                return (CVSFileNode) getLastSelectedPathComponent();
148:            }
149:
150:            /**
151:             * Gets the selectedFileNodes attribute of the CVSFileNodeTree object
152:             * 
153:             * @return The selectedFileNodes value
154:             */
155:            public CVSFileNode[] getSelectedFileNodes() {
156:                TreePath[] p = getSelectionPaths();
157:
158:                if (p == null) {
159:                    return null;
160:                }
161:
162:                Vector v = new Vector();
163:                CVSFileNode[] n = new CVSFileNode[p.length];
164:
165:                for (int i = 0; i < p.length; i++) {
166:                    v.addElement(p[i].getLastPathComponent());
167:
168:                }
169:                Collections.sort(v);
170:                v.copyInto(n);
171:
172:                return n;
173:            }
174:
175:            /**
176:             * Sets the selectedFileNode attribute of the CVSFileNodeTree object
177:             * 
178:             * @param node
179:             *            The new selectedFileNode value
180:             */
181:            public void setSelectedFileNode(CVSFileNode node) {
182:                setSelectedFileNodes((node == null) ? null
183:                        : new CVSFileNode[] { node });
184:            }
185:
186:            /**
187:             * Sets the selectedFileNodes attribute of the CVSFileNodeTree object
188:             * 
189:             * @param node
190:             *            The new selectedFileNodes value
191:             */
192:            public void setSelectedFileNodes(CVSFileNode[] node) {
193:                clearSelection();
194:                if (node != null) {
195:                    Vector v = new Vector();
196:                    for (int i = 0; i < node.length; i++) {
197:                        if (node[i] != null) {
198:                            TreePath t = new TreePath(
199:                                    ((DefaultTreeModel) getModel())
200:                                            .getPathToRoot(node[i]));
201:                            v.addElement(t);
202:                        }
203:                    }
204:                    TreePath[] pa = new TreePath[v.size()];
205:                    v.copyInto(pa);
206:                    if (pa.length > 0) {
207:                        setSelectionPaths(pa);
208:                        scrollPathToVisible(pa[0]);
209:                    }
210:                }
211:            }
212:
213:            public void setUI(TreeUI ui) {
214:                if (ui.getClass().getName().equals(
215:                        "com.sun.java.swing.plaf.windows.WindowsTreeUI")
216:                        && System.getProperty("java.version").equals("1.4.2")) {
217:
218:                    ui = new FixedWindowsTreeUI();
219:                }
220:                super .setUI(ui);
221:            }
222:
223:            private static class FixedWindowsTreeUI extends BasicTreeUI {
224:
225:                protected void ensureRowsAreVisible(int beginRow, int endRow) {
226:                    if (tree != null && beginRow >= 0
227:                            && endRow < getRowCount(tree)) {
228:                        Rectangle visRect = tree.getVisibleRect();
229:                        if (beginRow == endRow) {
230:                            Rectangle scrollBounds = getPathBounds(tree,
231:                                    getPathForRow(tree, beginRow));
232:
233:                            if (scrollBounds != null) {
234:                                scrollBounds.x = visRect.x;
235:                                scrollBounds.width = visRect.width;
236:                                tree.scrollRectToVisible(scrollBounds);
237:                            }
238:                        } else {
239:                            Rectangle beginRect = getPathBounds(tree,
240:                                    getPathForRow(tree, beginRow));
241:                            Rectangle testRect = beginRect;
242:                            int beginY = beginRect.y;
243:                            int maxY = beginY + visRect.height;
244:
245:                            for (int counter = beginRow + 1; counter <= endRow; counter++) {
246:                                testRect = getPathBounds(tree, getPathForRow(
247:                                        tree, counter));
248:                                if ((testRect.y + testRect.height) > maxY)
249:                                    counter = endRow;
250:                            }
251:                            tree.scrollRectToVisible(new Rectangle(visRect.x,
252:                                    beginY, 1, testRect.y + testRect.height
253:                                            - beginY));
254:                        }
255:                    }
256:                }
257:
258:                protected TreeCellRenderer createDefaultCellRenderer() {
259:                    return new WindowsTreeUI().new WindowsTreeCellRenderer();
260:                }
261:
262:            }
263:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.